azure-native.awsconnector.SecretsManagerSecret
Explore with Pulumi AI
A Microsoft.AwsConnector resource Azure REST API version: 2024-12-01.
Example Usage
SecretsManagerSecrets_CreateOrReplace
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var secretsManagerSecret = new AzureNative.AwsConnector.SecretsManagerSecret("secretsManagerSecret", new()
    {
        Location = "balqdxuifwdmtcinyxjit",
        Name = "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
        Properties = new AzureNative.AwsConnector.Inputs.SecretsManagerSecretPropertiesArgs
        {
            Arn = "qxrdtehsmibehk",
            AwsAccountId = "wtxdsgybisrqopffdhreyacjrysd",
            AwsProperties = new AzureNative.AwsConnector.Inputs.AwsSecretsManagerSecretPropertiesArgs
            {
                Description = "esljjbmcrcqe",
                GenerateSecretString = new AzureNative.AwsConnector.Inputs.GenerateSecretStringArgs
                {
                    ExcludeCharacters = "hsixzpgawn",
                    ExcludeLowercase = true,
                    ExcludeNumbers = true,
                    ExcludePunctuation = true,
                    ExcludeUppercase = true,
                    GenerateStringKey = "dxyswggnusnewllmvmoskwswk",
                    IncludeSpace = true,
                    PasswordLength = 17,
                    RequireEachIncludedType = true,
                    SecretStringTemplate = "qgspiepreoyooekaprlglfjbvittue",
                },
                Id = "vpnzmovjfbrltixnsgeml",
                KmsKeyId = "vunob",
                Name = "jqmtr",
                ReplicaRegions = new[]
                {
                    new AzureNative.AwsConnector.Inputs.ReplicaRegionArgs
                    {
                        KmsKeyId = "bkyubkuxwbasjkguqm",
                        Region = "m",
                    },
                },
                SecretString = "sbroa",
                Tags = new[]
                {
                    new AzureNative.AwsConnector.Inputs.TagArgs
                    {
                        Key = "ybodkythhxmehguhlrmodxhcduf",
                        Value = "wrci",
                    },
                },
            },
            AwsRegion = "mw",
            AwsSourceSchema = "whhfrjfzgejfasbcycqe",
            AwsTags = 
            {
                { "key4141", "jdlhnhoxtob" },
            },
            PublicCloudConnectorsResourceId = "osnofxgmgmrsc",
            PublicCloudResourceName = "wj",
        },
        ResourceGroupName = "rgsecretsManagerSecret",
        Tags = 
        {
            { "key1461", "aqew" },
        },
    });
});
package main
import (
	awsconnector "github.com/pulumi/pulumi-azure-native-sdk/awsconnector/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := awsconnector.NewSecretsManagerSecret(ctx, "secretsManagerSecret", &awsconnector.SecretsManagerSecretArgs{
			Location: pulumi.String("balqdxuifwdmtcinyxjit"),
			Name:     pulumi.String("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])"),
			Properties: &awsconnector.SecretsManagerSecretPropertiesArgs{
				Arn:          pulumi.String("qxrdtehsmibehk"),
				AwsAccountId: pulumi.String("wtxdsgybisrqopffdhreyacjrysd"),
				AwsProperties: &awsconnector.AwsSecretsManagerSecretPropertiesArgs{
					Description: pulumi.String("esljjbmcrcqe"),
					GenerateSecretString: &awsconnector.GenerateSecretStringArgs{
						ExcludeCharacters:       pulumi.String("hsixzpgawn"),
						ExcludeLowercase:        pulumi.Bool(true),
						ExcludeNumbers:          pulumi.Bool(true),
						ExcludePunctuation:      pulumi.Bool(true),
						ExcludeUppercase:        pulumi.Bool(true),
						GenerateStringKey:       pulumi.String("dxyswggnusnewllmvmoskwswk"),
						IncludeSpace:            pulumi.Bool(true),
						PasswordLength:          pulumi.Int(17),
						RequireEachIncludedType: pulumi.Bool(true),
						SecretStringTemplate:    pulumi.String("qgspiepreoyooekaprlglfjbvittue"),
					},
					Id:       pulumi.String("vpnzmovjfbrltixnsgeml"),
					KmsKeyId: pulumi.String("vunob"),
					Name:     pulumi.String("jqmtr"),
					ReplicaRegions: awsconnector.ReplicaRegionArray{
						&awsconnector.ReplicaRegionArgs{
							KmsKeyId: pulumi.String("bkyubkuxwbasjkguqm"),
							Region:   pulumi.String("m"),
						},
					},
					SecretString: pulumi.String("sbroa"),
					Tags: awsconnector.TagArray{
						&awsconnector.TagArgs{
							Key:   pulumi.String("ybodkythhxmehguhlrmodxhcduf"),
							Value: pulumi.String("wrci"),
						},
					},
				},
				AwsRegion:       pulumi.String("mw"),
				AwsSourceSchema: pulumi.String("whhfrjfzgejfasbcycqe"),
				AwsTags: pulumi.StringMap{
					"key4141": pulumi.String("jdlhnhoxtob"),
				},
				PublicCloudConnectorsResourceId: pulumi.String("osnofxgmgmrsc"),
				PublicCloudResourceName:         pulumi.String("wj"),
			},
			ResourceGroupName: pulumi.String("rgsecretsManagerSecret"),
			Tags: pulumi.StringMap{
				"key1461": pulumi.String("aqew"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.awsconnector.SecretsManagerSecret;
import com.pulumi.azurenative.awsconnector.SecretsManagerSecretArgs;
import com.pulumi.azurenative.awsconnector.inputs.SecretsManagerSecretPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.AwsSecretsManagerSecretPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.GenerateSecretStringArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var secretsManagerSecret = new SecretsManagerSecret("secretsManagerSecret", SecretsManagerSecretArgs.builder()
            .location("balqdxuifwdmtcinyxjit")
            .name("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])")
            .properties(SecretsManagerSecretPropertiesArgs.builder()
                .arn("qxrdtehsmibehk")
                .awsAccountId("wtxdsgybisrqopffdhreyacjrysd")
                .awsProperties(AwsSecretsManagerSecretPropertiesArgs.builder()
                    .description("esljjbmcrcqe")
                    .generateSecretString(GenerateSecretStringArgs.builder()
                        .excludeCharacters("hsixzpgawn")
                        .excludeLowercase(true)
                        .excludeNumbers(true)
                        .excludePunctuation(true)
                        .excludeUppercase(true)
                        .generateStringKey("dxyswggnusnewllmvmoskwswk")
                        .includeSpace(true)
                        .passwordLength(17)
                        .requireEachIncludedType(true)
                        .secretStringTemplate("qgspiepreoyooekaprlglfjbvittue")
                        .build())
                    .id("vpnzmovjfbrltixnsgeml")
                    .kmsKeyId("vunob")
                    .name("jqmtr")
                    .replicaRegions(ReplicaRegionArgs.builder()
                        .kmsKeyId("bkyubkuxwbasjkguqm")
                        .region("m")
                        .build())
                    .secretString("sbroa")
                    .tags(TagArgs.builder()
                        .key("ybodkythhxmehguhlrmodxhcduf")
                        .value("wrci")
                        .build())
                    .build())
                .awsRegion("mw")
                .awsSourceSchema("whhfrjfzgejfasbcycqe")
                .awsTags(Map.of("key4141", "jdlhnhoxtob"))
                .publicCloudConnectorsResourceId("osnofxgmgmrsc")
                .publicCloudResourceName("wj")
                .build())
            .resourceGroupName("rgsecretsManagerSecret")
            .tags(Map.of("key1461", "aqew"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const secretsManagerSecret = new azure_native.awsconnector.SecretsManagerSecret("secretsManagerSecret", {
    location: "balqdxuifwdmtcinyxjit",
    name: "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
    properties: {
        arn: "qxrdtehsmibehk",
        awsAccountId: "wtxdsgybisrqopffdhreyacjrysd",
        awsProperties: {
            description: "esljjbmcrcqe",
            generateSecretString: {
                excludeCharacters: "hsixzpgawn",
                excludeLowercase: true,
                excludeNumbers: true,
                excludePunctuation: true,
                excludeUppercase: true,
                generateStringKey: "dxyswggnusnewllmvmoskwswk",
                includeSpace: true,
                passwordLength: 17,
                requireEachIncludedType: true,
                secretStringTemplate: "qgspiepreoyooekaprlglfjbvittue",
            },
            id: "vpnzmovjfbrltixnsgeml",
            kmsKeyId: "vunob",
            name: "jqmtr",
            replicaRegions: [{
                kmsKeyId: "bkyubkuxwbasjkguqm",
                region: "m",
            }],
            secretString: "sbroa",
            tags: [{
                key: "ybodkythhxmehguhlrmodxhcduf",
                value: "wrci",
            }],
        },
        awsRegion: "mw",
        awsSourceSchema: "whhfrjfzgejfasbcycqe",
        awsTags: {
            key4141: "jdlhnhoxtob",
        },
        publicCloudConnectorsResourceId: "osnofxgmgmrsc",
        publicCloudResourceName: "wj",
    },
    resourceGroupName: "rgsecretsManagerSecret",
    tags: {
        key1461: "aqew",
    },
});
import pulumi
import pulumi_azure_native as azure_native
secrets_manager_secret = azure_native.awsconnector.SecretsManagerSecret("secretsManagerSecret",
    location="balqdxuifwdmtcinyxjit",
    name="Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
    properties={
        "arn": "qxrdtehsmibehk",
        "aws_account_id": "wtxdsgybisrqopffdhreyacjrysd",
        "aws_properties": {
            "description": "esljjbmcrcqe",
            "generate_secret_string": {
                "exclude_characters": "hsixzpgawn",
                "exclude_lowercase": True,
                "exclude_numbers": True,
                "exclude_punctuation": True,
                "exclude_uppercase": True,
                "generate_string_key": "dxyswggnusnewllmvmoskwswk",
                "include_space": True,
                "password_length": 17,
                "require_each_included_type": True,
                "secret_string_template": "qgspiepreoyooekaprlglfjbvittue",
            },
            "id": "vpnzmovjfbrltixnsgeml",
            "kms_key_id": "vunob",
            "name": "jqmtr",
            "replica_regions": [{
                "kms_key_id": "bkyubkuxwbasjkguqm",
                "region": "m",
            }],
            "secret_string": "sbroa",
            "tags": [{
                "key": "ybodkythhxmehguhlrmodxhcduf",
                "value": "wrci",
            }],
        },
        "aws_region": "mw",
        "aws_source_schema": "whhfrjfzgejfasbcycqe",
        "aws_tags": {
            "key4141": "jdlhnhoxtob",
        },
        "public_cloud_connectors_resource_id": "osnofxgmgmrsc",
        "public_cloud_resource_name": "wj",
    },
    resource_group_name="rgsecretsManagerSecret",
    tags={
        "key1461": "aqew",
    })
resources:
  secretsManagerSecret:
    type: azure-native:awsconnector:SecretsManagerSecret
    properties:
      location: balqdxuifwdmtcinyxjit
      name: Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])
      properties:
        arn: qxrdtehsmibehk
        awsAccountId: wtxdsgybisrqopffdhreyacjrysd
        awsProperties:
          description: esljjbmcrcqe
          generateSecretString:
            excludeCharacters: hsixzpgawn
            excludeLowercase: true
            excludeNumbers: true
            excludePunctuation: true
            excludeUppercase: true
            generateStringKey: dxyswggnusnewllmvmoskwswk
            includeSpace: true
            passwordLength: 17
            requireEachIncludedType: true
            secretStringTemplate: qgspiepreoyooekaprlglfjbvittue
          id: vpnzmovjfbrltixnsgeml
          kmsKeyId: vunob
          name: jqmtr
          replicaRegions:
            - kmsKeyId: bkyubkuxwbasjkguqm
              region: m
          secretString: sbroa
          tags:
            - key: ybodkythhxmehguhlrmodxhcduf
              value: wrci
        awsRegion: mw
        awsSourceSchema: whhfrjfzgejfasbcycqe
        awsTags:
          key4141: jdlhnhoxtob
        publicCloudConnectorsResourceId: osnofxgmgmrsc
        publicCloudResourceName: wj
      resourceGroupName: rgsecretsManagerSecret
      tags:
        key1461: aqew
Create SecretsManagerSecret Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecretsManagerSecret(name: string, args: SecretsManagerSecretArgs, opts?: CustomResourceOptions);@overload
def SecretsManagerSecret(resource_name: str,
                         args: SecretsManagerSecretArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def SecretsManagerSecret(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         resource_group_name: Optional[str] = None,
                         location: Optional[str] = None,
                         name: Optional[str] = None,
                         properties: Optional[SecretsManagerSecretPropertiesArgs] = None,
                         tags: Optional[Mapping[str, str]] = None)func NewSecretsManagerSecret(ctx *Context, name string, args SecretsManagerSecretArgs, opts ...ResourceOption) (*SecretsManagerSecret, error)public SecretsManagerSecret(string name, SecretsManagerSecretArgs args, CustomResourceOptions? opts = null)
public SecretsManagerSecret(String name, SecretsManagerSecretArgs args)
public SecretsManagerSecret(String name, SecretsManagerSecretArgs args, CustomResourceOptions options)
type: azure-native:awsconnector:SecretsManagerSecret
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SecretsManagerSecretArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SecretsManagerSecretArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SecretsManagerSecretArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecretsManagerSecretArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecretsManagerSecretArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var secretsManagerSecretResource = new AzureNative.AwsConnector.SecretsManagerSecret("secretsManagerSecretResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    Name = "string",
    Properties = new AzureNative.AwsConnector.Inputs.SecretsManagerSecretPropertiesArgs
    {
        Arn = "string",
        AwsAccountId = "string",
        AwsProperties = new AzureNative.AwsConnector.Inputs.AwsSecretsManagerSecretPropertiesArgs
        {
            Description = "string",
            GenerateSecretString = new AzureNative.AwsConnector.Inputs.GenerateSecretStringArgs
            {
                ExcludeCharacters = "string",
                ExcludeLowercase = false,
                ExcludeNumbers = false,
                ExcludePunctuation = false,
                ExcludeUppercase = false,
                GenerateStringKey = "string",
                IncludeSpace = false,
                PasswordLength = 0,
                RequireEachIncludedType = false,
                SecretStringTemplate = "string",
            },
            Id = "string",
            KmsKeyId = "string",
            Name = "string",
            ReplicaRegions = new[]
            {
                new AzureNative.AwsConnector.Inputs.ReplicaRegionArgs
                {
                    KmsKeyId = "string",
                    Region = "string",
                },
            },
            SecretString = "string",
            Tags = new[]
            {
                new AzureNative.AwsConnector.Inputs.TagArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
        },
        AwsRegion = "string",
        AwsSourceSchema = "string",
        AwsTags = 
        {
            { "string", "string" },
        },
        PublicCloudConnectorsResourceId = "string",
        PublicCloudResourceName = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := awsconnector.NewSecretsManagerSecret(ctx, "secretsManagerSecretResource", &awsconnector.SecretsManagerSecretArgs{
	ResourceGroupName: pulumi.String("string"),
	Location:          pulumi.String("string"),
	Name:              pulumi.String("string"),
	Properties: &awsconnector.SecretsManagerSecretPropertiesArgs{
		Arn:          pulumi.String("string"),
		AwsAccountId: pulumi.String("string"),
		AwsProperties: &awsconnector.AwsSecretsManagerSecretPropertiesArgs{
			Description: pulumi.String("string"),
			GenerateSecretString: &awsconnector.GenerateSecretStringArgs{
				ExcludeCharacters:       pulumi.String("string"),
				ExcludeLowercase:        pulumi.Bool(false),
				ExcludeNumbers:          pulumi.Bool(false),
				ExcludePunctuation:      pulumi.Bool(false),
				ExcludeUppercase:        pulumi.Bool(false),
				GenerateStringKey:       pulumi.String("string"),
				IncludeSpace:            pulumi.Bool(false),
				PasswordLength:          pulumi.Int(0),
				RequireEachIncludedType: pulumi.Bool(false),
				SecretStringTemplate:    pulumi.String("string"),
			},
			Id:       pulumi.String("string"),
			KmsKeyId: pulumi.String("string"),
			Name:     pulumi.String("string"),
			ReplicaRegions: awsconnector.ReplicaRegionArray{
				&awsconnector.ReplicaRegionArgs{
					KmsKeyId: pulumi.String("string"),
					Region:   pulumi.String("string"),
				},
			},
			SecretString: pulumi.String("string"),
			Tags: awsconnector.TagArray{
				&awsconnector.TagArgs{
					Key:   pulumi.String("string"),
					Value: pulumi.String("string"),
				},
			},
		},
		AwsRegion:       pulumi.String("string"),
		AwsSourceSchema: pulumi.String("string"),
		AwsTags: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		PublicCloudConnectorsResourceId: pulumi.String("string"),
		PublicCloudResourceName:         pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var secretsManagerSecretResource = new SecretsManagerSecret("secretsManagerSecretResource", SecretsManagerSecretArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .name("string")
    .properties(SecretsManagerSecretPropertiesArgs.builder()
        .arn("string")
        .awsAccountId("string")
        .awsProperties(AwsSecretsManagerSecretPropertiesArgs.builder()
            .description("string")
            .generateSecretString(GenerateSecretStringArgs.builder()
                .excludeCharacters("string")
                .excludeLowercase(false)
                .excludeNumbers(false)
                .excludePunctuation(false)
                .excludeUppercase(false)
                .generateStringKey("string")
                .includeSpace(false)
                .passwordLength(0)
                .requireEachIncludedType(false)
                .secretStringTemplate("string")
                .build())
            .id("string")
            .kmsKeyId("string")
            .name("string")
            .replicaRegions(ReplicaRegionArgs.builder()
                .kmsKeyId("string")
                .region("string")
                .build())
            .secretString("string")
            .tags(TagArgs.builder()
                .key("string")
                .value("string")
                .build())
            .build())
        .awsRegion("string")
        .awsSourceSchema("string")
        .awsTags(Map.of("string", "string"))
        .publicCloudConnectorsResourceId("string")
        .publicCloudResourceName("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
secrets_manager_secret_resource = azure_native.awsconnector.SecretsManagerSecret("secretsManagerSecretResource",
    resource_group_name="string",
    location="string",
    name="string",
    properties={
        "arn": "string",
        "aws_account_id": "string",
        "aws_properties": {
            "description": "string",
            "generate_secret_string": {
                "exclude_characters": "string",
                "exclude_lowercase": False,
                "exclude_numbers": False,
                "exclude_punctuation": False,
                "exclude_uppercase": False,
                "generate_string_key": "string",
                "include_space": False,
                "password_length": 0,
                "require_each_included_type": False,
                "secret_string_template": "string",
            },
            "id": "string",
            "kms_key_id": "string",
            "name": "string",
            "replica_regions": [{
                "kms_key_id": "string",
                "region": "string",
            }],
            "secret_string": "string",
            "tags": [{
                "key": "string",
                "value": "string",
            }],
        },
        "aws_region": "string",
        "aws_source_schema": "string",
        "aws_tags": {
            "string": "string",
        },
        "public_cloud_connectors_resource_id": "string",
        "public_cloud_resource_name": "string",
    },
    tags={
        "string": "string",
    })
const secretsManagerSecretResource = new azure_native.awsconnector.SecretsManagerSecret("secretsManagerSecretResource", {
    resourceGroupName: "string",
    location: "string",
    name: "string",
    properties: {
        arn: "string",
        awsAccountId: "string",
        awsProperties: {
            description: "string",
            generateSecretString: {
                excludeCharacters: "string",
                excludeLowercase: false,
                excludeNumbers: false,
                excludePunctuation: false,
                excludeUppercase: false,
                generateStringKey: "string",
                includeSpace: false,
                passwordLength: 0,
                requireEachIncludedType: false,
                secretStringTemplate: "string",
            },
            id: "string",
            kmsKeyId: "string",
            name: "string",
            replicaRegions: [{
                kmsKeyId: "string",
                region: "string",
            }],
            secretString: "string",
            tags: [{
                key: "string",
                value: "string",
            }],
        },
        awsRegion: "string",
        awsSourceSchema: "string",
        awsTags: {
            string: "string",
        },
        publicCloudConnectorsResourceId: "string",
        publicCloudResourceName: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:awsconnector:SecretsManagerSecret
properties:
    location: string
    name: string
    properties:
        arn: string
        awsAccountId: string
        awsProperties:
            description: string
            generateSecretString:
                excludeCharacters: string
                excludeLowercase: false
                excludeNumbers: false
                excludePunctuation: false
                excludeUppercase: false
                generateStringKey: string
                includeSpace: false
                passwordLength: 0
                requireEachIncludedType: false
                secretStringTemplate: string
            id: string
            kmsKeyId: string
            name: string
            replicaRegions:
                - kmsKeyId: string
                  region: string
            secretString: string
            tags:
                - key: string
                  value: string
        awsRegion: string
        awsSourceSchema: string
        awsTags:
            string: string
        publicCloudConnectorsResourceId: string
        publicCloudResourceName: string
    resourceGroupName: string
    tags:
        string: string
SecretsManagerSecret Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SecretsManagerSecret resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Name string
- Name of SecretsManagerSecret
- Properties
Pulumi.Azure Native. Aws Connector. Inputs. Secrets Manager Secret Properties 
- The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Name string
- Name of SecretsManagerSecret
- Properties
SecretsManager Secret Properties Args 
- The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- name String
- Name of SecretsManagerSecret
- properties
SecretsManager Secret Properties 
- The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- name string
- Name of SecretsManagerSecret
- properties
SecretsManager Secret Properties 
- The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- name str
- Name of SecretsManagerSecret
- properties
SecretsManager Secret Properties Args 
- The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- name String
- Name of SecretsManagerSecret
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SecretsManagerSecret resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- SystemData Pulumi.Azure Native. Aws Connector. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AwsSecretsManagerSecretProperties, AwsSecretsManagerSecretPropertiesArgs          
- Description string
- The description of the secret.
- GenerateSecret Pulumi.String Azure Native. Aws Connector. Inputs. Generate Secret String 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- Id string
- Property id
- KmsKey stringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- Name string
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- ReplicaRegions List<Pulumi.Azure Native. Aws Connector. Inputs. Replica Region> 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- SecretString string
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- 
List<Pulumi.Azure Native. Aws Connector. Inputs. Tag> 
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- Description string
- The description of the secret.
- GenerateSecret GenerateString Secret String 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- Id string
- Property id
- KmsKey stringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- Name string
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- ReplicaRegions []ReplicaRegion 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- SecretString string
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- []Tag
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description String
- The description of the secret.
- generateSecret GenerateString Secret String 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id String
- Property id
- kmsKey StringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name String
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replicaRegions List<ReplicaRegion> 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secretString String
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- List<Tag>
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description string
- The description of the secret.
- generateSecret GenerateString Secret String 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id string
- Property id
- kmsKey stringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name string
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replicaRegions ReplicaRegion[] 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secretString string
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- Tag[]
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description str
- The description of the secret.
- generate_secret_ Generatestring Secret String 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id str
- Property id
- kms_key_ strid 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name str
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replica_regions Sequence[ReplicaRegion] 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secret_string str
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- Sequence[Tag]
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description String
- The description of the secret.
- generateSecret Property MapString 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id String
- Property id
- kmsKey StringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name String
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replicaRegions List<Property Map>
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secretString String
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- List<Property Map>
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
AwsSecretsManagerSecretPropertiesResponse, AwsSecretsManagerSecretPropertiesResponseArgs            
- Description string
- The description of the secret.
- GenerateSecret Pulumi.String Azure Native. Aws Connector. Inputs. Generate Secret String Response 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- Id string
- Property id
- KmsKey stringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- Name string
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- ReplicaRegions List<Pulumi.Azure Native. Aws Connector. Inputs. Replica Region Response> 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- SecretString string
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- 
List<Pulumi.Azure Native. Aws Connector. Inputs. Tag Response> 
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- Description string
- The description of the secret.
- GenerateSecret GenerateString Secret String Response 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- Id string
- Property id
- KmsKey stringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- Name string
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- ReplicaRegions []ReplicaRegion Response 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- SecretString string
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- 
[]TagResponse 
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description String
- The description of the secret.
- generateSecret GenerateString Secret String Response 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id String
- Property id
- kmsKey StringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name String
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replicaRegions List<ReplicaRegion Response> 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secretString String
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- 
List<TagResponse> 
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description string
- The description of the secret.
- generateSecret GenerateString Secret String Response 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id string
- Property id
- kmsKey stringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name string
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replicaRegions ReplicaRegion Response[] 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secretString string
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- 
TagResponse[] 
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description str
- The description of the secret.
- generate_secret_ Generatestring Secret String Response 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id str
- Property id
- kms_key_ strid 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name str
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replica_regions Sequence[ReplicaRegion Response] 
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secret_string str
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- 
Sequence[TagResponse] 
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
- description String
- The description of the secret.
- generateSecret Property MapString 
- A structure that specifies how to generate a password to encrypt and store in the secret. To include a specific string in the secret, use SecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Required permissions:secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
- id String
- Property id
- kmsKey StringId 
- The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for examplealias/aws/secretsmanager. For more information, see About aliases. To use a KMS key in a different account, use the key ARN or the alias ARN. If you don't specify this value, then Secrets Manager uses the keyaws/secretsmanager. If that key doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value. If the secret is in a different AWS account from the credentials calling the API, then you can't useaws/secretsmanagerto encrypt the secret, and you must create and use a customer managed KMS key.
- name String
- The name of the new secret. The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@- Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.
- replicaRegions List<Property Map>
- A custom type that specifies a Regionand theKmsKeyIdfor a replica secret.
- secretString String
- The text to encrypt and store in the secret. We recommend you use a JSON structure of key/value pairs for your secret value. To generate a random password, use GenerateSecretStringinstead. If you omit bothGenerateSecretStringandSecretString, you create an empty secret. When you make a change to this property, a new secret version is created.
- List<Property Map>
- A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example: [{'Key':'CostCenter','Value':'12345'},{'Key':'environment','Value':'production'}]Secrets Manager tag key names are case sensitive. A tag with the key 'ABC' is a different tag from one with key 'abc'. Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret. If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns anAccess Deniederror. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets' tags. For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text. The following restrictions apply to tags: + Maximum number of tags per secret: 50 + Maximum key length: 127 Unicode characters in UTF-8 + Maximum value length: 255 Unicode characters in UTF-8 + Tag keys and values are case sensitive. + Do not use theaws:prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit. + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
GenerateSecretString, GenerateSecretStringArgs      
- ExcludeCharacters string
- A string of the characters that you don't want in the password.
- ExcludeLowercase bool
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- ExcludeNumbers bool
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- ExcludePunctuation bool
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- ExcludeUppercase bool
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- GenerateString stringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- IncludeSpace bool
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- PasswordLength int
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- RequireEach boolIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- SecretString stringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- ExcludeCharacters string
- A string of the characters that you don't want in the password.
- ExcludeLowercase bool
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- ExcludeNumbers bool
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- ExcludePunctuation bool
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- ExcludeUppercase bool
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- GenerateString stringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- IncludeSpace bool
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- PasswordLength int
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- RequireEach boolIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- SecretString stringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- excludeCharacters String
- A string of the characters that you don't want in the password.
- excludeLowercase Boolean
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- excludeNumbers Boolean
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- excludePunctuation Boolean
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- excludeUppercase Boolean
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generateString StringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- includeSpace Boolean
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- passwordLength Integer
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- requireEach BooleanIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secretString StringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- excludeCharacters string
- A string of the characters that you don't want in the password.
- excludeLowercase boolean
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- excludeNumbers boolean
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- excludePunctuation boolean
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- excludeUppercase boolean
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generateString stringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- includeSpace boolean
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- passwordLength number
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- requireEach booleanIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secretString stringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- exclude_characters str
- A string of the characters that you don't want in the password.
- exclude_lowercase bool
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- exclude_numbers bool
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- exclude_punctuation bool
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- exclude_uppercase bool
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generate_string_ strkey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- include_space bool
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- password_length int
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- require_each_ boolincluded_ type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secret_string_ strtemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- excludeCharacters String
- A string of the characters that you don't want in the password.
- excludeLowercase Boolean
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- excludeNumbers Boolean
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- excludePunctuation Boolean
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- excludeUppercase Boolean
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generateString StringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- includeSpace Boolean
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- passwordLength Number
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- requireEach BooleanIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secretString StringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
GenerateSecretStringResponse, GenerateSecretStringResponseArgs        
- ExcludeCharacters string
- A string of the characters that you don't want in the password.
- ExcludeLowercase bool
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- ExcludeNumbers bool
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- ExcludePunctuation bool
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- ExcludeUppercase bool
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- GenerateString stringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- IncludeSpace bool
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- PasswordLength int
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- RequireEach boolIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- SecretString stringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- ExcludeCharacters string
- A string of the characters that you don't want in the password.
- ExcludeLowercase bool
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- ExcludeNumbers bool
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- ExcludePunctuation bool
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- ExcludeUppercase bool
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- GenerateString stringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- IncludeSpace bool
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- PasswordLength int
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- RequireEach boolIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- SecretString stringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- excludeCharacters String
- A string of the characters that you don't want in the password.
- excludeLowercase Boolean
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- excludeNumbers Boolean
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- excludePunctuation Boolean
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- excludeUppercase Boolean
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generateString StringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- includeSpace Boolean
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- passwordLength Integer
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- requireEach BooleanIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secretString StringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- excludeCharacters string
- A string of the characters that you don't want in the password.
- excludeLowercase boolean
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- excludeNumbers boolean
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- excludePunctuation boolean
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- excludeUppercase boolean
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generateString stringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- includeSpace boolean
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- passwordLength number
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- requireEach booleanIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secretString stringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- exclude_characters str
- A string of the characters that you don't want in the password.
- exclude_lowercase bool
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- exclude_numbers bool
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- exclude_punctuation bool
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- exclude_uppercase bool
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generate_string_ strkey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- include_space bool
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- password_length int
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- require_each_ boolincluded_ type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secret_string_ strtemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
- excludeCharacters String
- A string of the characters that you don't want in the password.
- excludeLowercase Boolean
- Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
- excludeNumbers Boolean
- Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
- excludePunctuation Boolean
- Specifies whether to exclude the following punctuation characters from the password: ! ' # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
- excludeUppercase Boolean
- Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
- generateString StringKey 
- The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the SecretStringTemplateparameter. If you specify this parameter, then you must also specifySecretStringTemplate.
- includeSpace Boolean
- Specifies whether to include the space character. If you include this switch, the password can contain space characters.
- passwordLength Number
- The length of the password. If you don't include this parameter, the default length is 32 characters.
- requireEach BooleanIncluded Type 
- Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
- secretString StringTemplate 
- A template that the generated string must match. When you make a change to this property, a new secret version is created.
ReplicaRegion, ReplicaRegionArgs    
- kms_key_ strid 
- The ARN, key ID, or alias of the KMS key to encrypt the secret. If you don't include this field, Secrets Manager uses aws/secretsmanager.
- region str
- A string that represents a Region, for example 'us-east-1'.
ReplicaRegionResponse, ReplicaRegionResponseArgs      
- kms_key_ strid 
- The ARN, key ID, or alias of the KMS key to encrypt the secret. If you don't include this field, Secrets Manager uses aws/secretsmanager.
- region str
- A string that represents a Region, for example 'us-east-1'.
SecretsManagerSecretProperties, SecretsManagerSecretPropertiesArgs        
- Arn string
- Amazon Resource Name (ARN)
- AwsAccount stringId 
- AWS Account ID
- AwsProperties Pulumi.Azure Native. Aws Connector. Inputs. Aws Secrets Manager Secret Properties 
- AWS Properties
- AwsRegion string
- AWS Region
- AwsSource stringSchema 
- AWS Source Schema
- Dictionary<string, string>
- AWS Tags
- PublicCloud stringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- PublicCloud stringResource Name 
- Public Cloud Resource Name
- Arn string
- Amazon Resource Name (ARN)
- AwsAccount stringId 
- AWS Account ID
- AwsProperties AwsSecrets Manager Secret Properties 
- AWS Properties
- AwsRegion string
- AWS Region
- AwsSource stringSchema 
- AWS Source Schema
- map[string]string
- AWS Tags
- PublicCloud stringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- PublicCloud stringResource Name 
- Public Cloud Resource Name
- arn String
- Amazon Resource Name (ARN)
- awsAccount StringId 
- AWS Account ID
- awsProperties AwsSecrets Manager Secret Properties 
- AWS Properties
- awsRegion String
- AWS Region
- awsSource StringSchema 
- AWS Source Schema
- Map<String,String>
- AWS Tags
- publicCloud StringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- publicCloud StringResource Name 
- Public Cloud Resource Name
- arn string
- Amazon Resource Name (ARN)
- awsAccount stringId 
- AWS Account ID
- awsProperties AwsSecrets Manager Secret Properties 
- AWS Properties
- awsRegion string
- AWS Region
- awsSource stringSchema 
- AWS Source Schema
- {[key: string]: string}
- AWS Tags
- publicCloud stringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- publicCloud stringResource Name 
- Public Cloud Resource Name
- arn str
- Amazon Resource Name (ARN)
- aws_account_ strid 
- AWS Account ID
- aws_properties AwsSecrets Manager Secret Properties 
- AWS Properties
- aws_region str
- AWS Region
- aws_source_ strschema 
- AWS Source Schema
- Mapping[str, str]
- AWS Tags
- public_cloud_ strconnectors_ resource_ id 
- Public Cloud Connectors Resource ID
- public_cloud_ strresource_ name 
- Public Cloud Resource Name
- arn String
- Amazon Resource Name (ARN)
- awsAccount StringId 
- AWS Account ID
- awsProperties Property Map
- AWS Properties
- awsRegion String
- AWS Region
- awsSource StringSchema 
- AWS Source Schema
- Map<String>
- AWS Tags
- publicCloud StringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- publicCloud StringResource Name 
- Public Cloud Resource Name
SecretsManagerSecretPropertiesResponse, SecretsManagerSecretPropertiesResponseArgs          
- ProvisioningState string
- The status of the last operation.
- Arn string
- Amazon Resource Name (ARN)
- AwsAccount stringId 
- AWS Account ID
- AwsProperties Pulumi.Azure Native. Aws Connector. Inputs. Aws Secrets Manager Secret Properties Response 
- AWS Properties
- AwsRegion string
- AWS Region
- AwsSource stringSchema 
- AWS Source Schema
- Dictionary<string, string>
- AWS Tags
- PublicCloud stringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- PublicCloud stringResource Name 
- Public Cloud Resource Name
- ProvisioningState string
- The status of the last operation.
- Arn string
- Amazon Resource Name (ARN)
- AwsAccount stringId 
- AWS Account ID
- AwsProperties AwsSecrets Manager Secret Properties Response 
- AWS Properties
- AwsRegion string
- AWS Region
- AwsSource stringSchema 
- AWS Source Schema
- map[string]string
- AWS Tags
- PublicCloud stringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- PublicCloud stringResource Name 
- Public Cloud Resource Name
- provisioningState String
- The status of the last operation.
- arn String
- Amazon Resource Name (ARN)
- awsAccount StringId 
- AWS Account ID
- awsProperties AwsSecrets Manager Secret Properties Response 
- AWS Properties
- awsRegion String
- AWS Region
- awsSource StringSchema 
- AWS Source Schema
- Map<String,String>
- AWS Tags
- publicCloud StringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- publicCloud StringResource Name 
- Public Cloud Resource Name
- provisioningState string
- The status of the last operation.
- arn string
- Amazon Resource Name (ARN)
- awsAccount stringId 
- AWS Account ID
- awsProperties AwsSecrets Manager Secret Properties Response 
- AWS Properties
- awsRegion string
- AWS Region
- awsSource stringSchema 
- AWS Source Schema
- {[key: string]: string}
- AWS Tags
- publicCloud stringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- publicCloud stringResource Name 
- Public Cloud Resource Name
- provisioning_state str
- The status of the last operation.
- arn str
- Amazon Resource Name (ARN)
- aws_account_ strid 
- AWS Account ID
- aws_properties AwsSecrets Manager Secret Properties Response 
- AWS Properties
- aws_region str
- AWS Region
- aws_source_ strschema 
- AWS Source Schema
- Mapping[str, str]
- AWS Tags
- public_cloud_ strconnectors_ resource_ id 
- Public Cloud Connectors Resource ID
- public_cloud_ strresource_ name 
- Public Cloud Resource Name
- provisioningState String
- The status of the last operation.
- arn String
- Amazon Resource Name (ARN)
- awsAccount StringId 
- AWS Account ID
- awsProperties Property Map
- AWS Properties
- awsRegion String
- AWS Region
- awsSource StringSchema 
- AWS Source Schema
- Map<String>
- AWS Tags
- publicCloud StringConnectors Resource Id 
- Public Cloud Connectors Resource ID
- publicCloud StringResource Name 
- Public Cloud Resource Name
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Tag, TagArgs  
- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key str
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value str
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
TagResponse, TagResponseArgs    
- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key str
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value str
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:awsconnector:SecretsManagerSecret fhctmzwyqjl /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AwsConnector/secretsManagerSecrets/{name} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0