aws logo
AWS Classic v5.34.0, Mar 30 23

aws.Provider

The provider type for the aws package. By default, resources use package-wide configuration settings, however an explicit Provider instance may be created and passed during resource construction to achieve fine-grained programmatic control over provider settings. See the documentation for more information.

Create Provider Resource

new Provider(name: string, args?: ProviderArgs, opts?: CustomResourceOptions);
@overload
def Provider(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             access_key: Optional[str] = None,
             allowed_account_ids: Optional[Sequence[str]] = None,
             assume_role: Optional[ProviderAssumeRoleArgs] = None,
             assume_role_with_web_identity: Optional[ProviderAssumeRoleWithWebIdentityArgs] = None,
             custom_ca_bundle: Optional[str] = None,
             default_tags: Optional[ProviderDefaultTagsArgs] = None,
             ec2_metadata_service_endpoint: Optional[str] = None,
             ec2_metadata_service_endpoint_mode: Optional[str] = None,
             endpoints: Optional[Sequence[ProviderEndpointArgs]] = None,
             forbidden_account_ids: Optional[Sequence[str]] = None,
             http_proxy: Optional[str] = None,
             ignore_tags: Optional[ProviderIgnoreTagsArgs] = None,
             insecure: Optional[bool] = None,
             max_retries: Optional[int] = None,
             profile: Optional[str] = None,
             region: Optional[str] = None,
             s3_force_path_style: Optional[bool] = None,
             s3_use_path_style: Optional[bool] = None,
             secret_key: Optional[str] = None,
             shared_config_files: Optional[Sequence[str]] = None,
             shared_credentials_file: Optional[str] = None,
             shared_credentials_files: Optional[Sequence[str]] = None,
             skip_credentials_validation: Optional[bool] = None,
             skip_get_ec2_platforms: Optional[bool] = None,
             skip_metadata_api_check: Optional[bool] = None,
             skip_region_validation: Optional[bool] = None,
             skip_requesting_account_id: Optional[bool] = None,
             sts_region: Optional[str] = None,
             token: Optional[str] = None,
             use_dualstack_endpoint: Optional[bool] = None,
             use_fips_endpoint: Optional[bool] = None)
@overload
def Provider(resource_name: str,
             args: Optional[ProviderArgs] = None,
             opts: Optional[ResourceOptions] = None)
func NewProvider(ctx *Context, name string, args *ProviderArgs, opts ...ResourceOption) (*Provider, error)
public Provider(string name, ProviderArgs? args = null, CustomResourceOptions? opts = null)
public Provider(String name, ProviderArgs args)
public Provider(String name, ProviderArgs args, CustomResourceOptions options)
type: pulumi:providers:aws
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ProviderArgs
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 ProviderArgs
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 ProviderArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ProviderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ProviderArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Provider Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Provider resource accepts the following input properties:

AccessKey string

The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

AllowedAccountIds List<string>
AssumeRole ProviderAssumeRoleArgs
AssumeRoleWithWebIdentity ProviderAssumeRoleWithWebIdentityArgs
CustomCaBundle string

File containing custom root and intermediate certificates. Can also be configured using the AWS_CA_BUNDLE environment variable. (Setting ca_bundle in the shared config file is not supported.)

DefaultTags ProviderDefaultTagsArgs

Configuration block with settings to default resource tags across all resources.

Ec2MetadataServiceEndpoint string

Address of the EC2 metadata service endpoint to use. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT environment variable.

Ec2MetadataServiceEndpointMode string

Protocol to use with EC2 metadata service endpoint.Valid values are IPv4 and IPv6. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE environment variable.

Endpoints List<ProviderEndpointArgs>
ForbiddenAccountIds List<string>
HttpProxy string

The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the HTTP_PROXY or HTTPS_PROXY environment variables.

IgnoreTags ProviderIgnoreTagsArgs

Configuration block with settings to ignore resource tags across all resources.

Insecure bool

Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is false

MaxRetries int

The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.

Profile string

The profile for API operations. If not set, the default profile created with aws configure will be used.

Region string

The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc. It can also be sourced from the following environment variables: AWS_REGION, AWS_DEFAULT_REGION

S3ForcePathStyle bool

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

Deprecated:

Use s3_use_path_style instead.

S3UsePathStyle bool

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

SecretKey string

The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

SharedConfigFiles List<string>

List of paths to shared config files. If not set, defaults to [~/.aws/config].

SharedCredentialsFile string

The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.

Deprecated:

Use shared_credentials_files instead.

SharedCredentialsFiles List<string>

List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].

SkipCredentialsValidation bool

Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.

SkipGetEc2Platforms bool

Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.

Deprecated:

With the retirement of EC2-Classic the skip_get_ec2_platforms attribute has been deprecated and will be removed in a future version.

SkipMetadataApiCheck bool

Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.

SkipRegionValidation bool

Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).

SkipRequestingAccountId bool

Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.

StsRegion string

The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.

Token string

session token. A session token is only required if you are using temporary security credentials.

UseDualstackEndpoint bool

Resolve an endpoint with DualStack capability

UseFipsEndpoint bool

Resolve an endpoint with FIPS capability

AccessKey string

The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

AllowedAccountIds []string
AssumeRole ProviderAssumeRoleArgs
AssumeRoleWithWebIdentity ProviderAssumeRoleWithWebIdentityArgs
CustomCaBundle string

File containing custom root and intermediate certificates. Can also be configured using the AWS_CA_BUNDLE environment variable. (Setting ca_bundle in the shared config file is not supported.)

DefaultTags ProviderDefaultTagsArgs

Configuration block with settings to default resource tags across all resources.

Ec2MetadataServiceEndpoint string

Address of the EC2 metadata service endpoint to use. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT environment variable.

Ec2MetadataServiceEndpointMode string

Protocol to use with EC2 metadata service endpoint.Valid values are IPv4 and IPv6. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE environment variable.

Endpoints []ProviderEndpointArgs
ForbiddenAccountIds []string
HttpProxy string

The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the HTTP_PROXY or HTTPS_PROXY environment variables.

IgnoreTags ProviderIgnoreTagsArgs

Configuration block with settings to ignore resource tags across all resources.

Insecure bool

Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is false

MaxRetries int

The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.

Profile string

The profile for API operations. If not set, the default profile created with aws configure will be used.

Region string

The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc. It can also be sourced from the following environment variables: AWS_REGION, AWS_DEFAULT_REGION

S3ForcePathStyle bool

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

Deprecated:

Use s3_use_path_style instead.

S3UsePathStyle bool

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

SecretKey string

The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

SharedConfigFiles []string

List of paths to shared config files. If not set, defaults to [~/.aws/config].

SharedCredentialsFile string

The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.

Deprecated:

Use shared_credentials_files instead.

SharedCredentialsFiles []string

List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].

SkipCredentialsValidation bool

Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.

SkipGetEc2Platforms bool

Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.

Deprecated:

With the retirement of EC2-Classic the skip_get_ec2_platforms attribute has been deprecated and will be removed in a future version.

SkipMetadataApiCheck bool

Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.

SkipRegionValidation bool

Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).

SkipRequestingAccountId bool

Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.

StsRegion string

The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.

Token string

session token. A session token is only required if you are using temporary security credentials.

UseDualstackEndpoint bool

Resolve an endpoint with DualStack capability

UseFipsEndpoint bool

Resolve an endpoint with FIPS capability

accessKey String

The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

allowedAccountIds List<String>
assumeRole ProviderAssumeRoleArgs
assumeRoleWithWebIdentity ProviderAssumeRoleWithWebIdentityArgs
customCaBundle String

File containing custom root and intermediate certificates. Can also be configured using the AWS_CA_BUNDLE environment variable. (Setting ca_bundle in the shared config file is not supported.)

defaultTags ProviderDefaultTagsArgs

Configuration block with settings to default resource tags across all resources.

ec2MetadataServiceEndpoint String

Address of the EC2 metadata service endpoint to use. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT environment variable.

ec2MetadataServiceEndpointMode String

Protocol to use with EC2 metadata service endpoint.Valid values are IPv4 and IPv6. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE environment variable.

endpoints List<ProviderEndpointArgs>
forbiddenAccountIds List<String>
httpProxy String

The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the HTTP_PROXY or HTTPS_PROXY environment variables.

ignoreTags ProviderIgnoreTagsArgs

Configuration block with settings to ignore resource tags across all resources.

insecure Boolean

Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is false

maxRetries Integer

The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.

profile String

The profile for API operations. If not set, the default profile created with aws configure will be used.

region String

The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc. It can also be sourced from the following environment variables: AWS_REGION, AWS_DEFAULT_REGION

s3ForcePathStyle Boolean

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

Deprecated:

Use s3_use_path_style instead.

s3UsePathStyle Boolean

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

secretKey String

The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

sharedConfigFiles List<String>

List of paths to shared config files. If not set, defaults to [~/.aws/config].

sharedCredentialsFile String

The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.

Deprecated:

Use shared_credentials_files instead.

sharedCredentialsFiles List<String>

List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].

skipCredentialsValidation Boolean

Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.

skipGetEc2Platforms Boolean

Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.

Deprecated:

With the retirement of EC2-Classic the skip_get_ec2_platforms attribute has been deprecated and will be removed in a future version.

skipMetadataApiCheck Boolean

Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.

skipRegionValidation Boolean

Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).

skipRequestingAccountId Boolean

Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.

stsRegion String

The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.

token String

session token. A session token is only required if you are using temporary security credentials.

useDualstackEndpoint Boolean

Resolve an endpoint with DualStack capability

useFipsEndpoint Boolean

Resolve an endpoint with FIPS capability

accessKey string

The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

allowedAccountIds string[]
assumeRole ProviderAssumeRoleArgs
assumeRoleWithWebIdentity ProviderAssumeRoleWithWebIdentityArgs
customCaBundle string

File containing custom root and intermediate certificates. Can also be configured using the AWS_CA_BUNDLE environment variable. (Setting ca_bundle in the shared config file is not supported.)

defaultTags ProviderDefaultTagsArgs

Configuration block with settings to default resource tags across all resources.

ec2MetadataServiceEndpoint string

Address of the EC2 metadata service endpoint to use. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT environment variable.

ec2MetadataServiceEndpointMode string

Protocol to use with EC2 metadata service endpoint.Valid values are IPv4 and IPv6. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE environment variable.

endpoints ProviderEndpointArgs[]
forbiddenAccountIds string[]
httpProxy string

The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the HTTP_PROXY or HTTPS_PROXY environment variables.

ignoreTags ProviderIgnoreTagsArgs

Configuration block with settings to ignore resource tags across all resources.

insecure boolean

Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is false

maxRetries number

The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.

profile string

The profile for API operations. If not set, the default profile created with aws configure will be used.

region Region

The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc. It can also be sourced from the following environment variables: AWS_REGION, AWS_DEFAULT_REGION

s3ForcePathStyle boolean

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

Deprecated:

Use s3_use_path_style instead.

s3UsePathStyle boolean

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

secretKey string

The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

sharedConfigFiles string[]

List of paths to shared config files. If not set, defaults to [~/.aws/config].

sharedCredentialsFile string

The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.

Deprecated:

Use shared_credentials_files instead.

sharedCredentialsFiles string[]

List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].

skipCredentialsValidation boolean

Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.

skipGetEc2Platforms boolean

Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.

Deprecated:

With the retirement of EC2-Classic the skip_get_ec2_platforms attribute has been deprecated and will be removed in a future version.

skipMetadataApiCheck boolean

Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.

skipRegionValidation boolean

Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).

skipRequestingAccountId boolean

Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.

stsRegion string

The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.

token string

session token. A session token is only required if you are using temporary security credentials.

useDualstackEndpoint boolean

Resolve an endpoint with DualStack capability

useFipsEndpoint boolean

Resolve an endpoint with FIPS capability

access_key str

The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

allowed_account_ids Sequence[str]
assume_role ProviderAssumeRoleArgs
assume_role_with_web_identity ProviderAssumeRoleWithWebIdentityArgs
custom_ca_bundle str

File containing custom root and intermediate certificates. Can also be configured using the AWS_CA_BUNDLE environment variable. (Setting ca_bundle in the shared config file is not supported.)

default_tags ProviderDefaultTagsArgs

Configuration block with settings to default resource tags across all resources.

ec2_metadata_service_endpoint str

Address of the EC2 metadata service endpoint to use. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT environment variable.

ec2_metadata_service_endpoint_mode str

Protocol to use with EC2 metadata service endpoint.Valid values are IPv4 and IPv6. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE environment variable.

endpoints Sequence[ProviderEndpointArgs]
forbidden_account_ids Sequence[str]
http_proxy str

The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the HTTP_PROXY or HTTPS_PROXY environment variables.

ignore_tags ProviderIgnoreTagsArgs

Configuration block with settings to ignore resource tags across all resources.

insecure bool

Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is false

max_retries int

The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.

profile str

The profile for API operations. If not set, the default profile created with aws configure will be used.

region str

The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc. It can also be sourced from the following environment variables: AWS_REGION, AWS_DEFAULT_REGION

s3_force_path_style bool

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

Deprecated:

Use s3_use_path_style instead.

s3_use_path_style bool

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

secret_key str

The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

shared_config_files Sequence[str]

List of paths to shared config files. If not set, defaults to [~/.aws/config].

shared_credentials_file str

The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.

Deprecated:

Use shared_credentials_files instead.

shared_credentials_files Sequence[str]

List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].

skip_credentials_validation bool

Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.

skip_get_ec2_platforms bool

Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.

Deprecated:

With the retirement of EC2-Classic the skip_get_ec2_platforms attribute has been deprecated and will be removed in a future version.

skip_metadata_api_check bool

Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.

skip_region_validation bool

Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).

skip_requesting_account_id bool

Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.

sts_region str

The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.

token str

session token. A session token is only required if you are using temporary security credentials.

use_dualstack_endpoint bool

Resolve an endpoint with DualStack capability

use_fips_endpoint bool

Resolve an endpoint with FIPS capability

accessKey String

The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

allowedAccountIds List<String>
assumeRole Property Map
assumeRoleWithWebIdentity Property Map
customCaBundle String

File containing custom root and intermediate certificates. Can also be configured using the AWS_CA_BUNDLE environment variable. (Setting ca_bundle in the shared config file is not supported.)

defaultTags Property Map

Configuration block with settings to default resource tags across all resources.

ec2MetadataServiceEndpoint String

Address of the EC2 metadata service endpoint to use. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT environment variable.

ec2MetadataServiceEndpointMode String

Protocol to use with EC2 metadata service endpoint.Valid values are IPv4 and IPv6. Can also be configured using the AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE environment variable.

endpoints List<Property Map>
forbiddenAccountIds List<String>
httpProxy String

The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the HTTP_PROXY or HTTPS_PROXY environment variables.

ignoreTags Property Map

Configuration block with settings to ignore resource tags across all resources.

insecure Boolean

Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is false

maxRetries Number

The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.

profile String

The profile for API operations. If not set, the default profile created with aws configure will be used.

region

The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc. It can also be sourced from the following environment variables: AWS_REGION, AWS_DEFAULT_REGION

s3ForcePathStyle Boolean

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

Deprecated:

Use s3_use_path_style instead.

s3UsePathStyle Boolean

Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.

secretKey String

The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.

sharedConfigFiles List<String>

List of paths to shared config files. If not set, defaults to [~/.aws/config].

sharedCredentialsFile String

The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.

Deprecated:

Use shared_credentials_files instead.

sharedCredentialsFiles List<String>

List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].

skipCredentialsValidation Boolean

Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.

skipGetEc2Platforms Boolean

Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.

Deprecated:

With the retirement of EC2-Classic the skip_get_ec2_platforms attribute has been deprecated and will be removed in a future version.

skipMetadataApiCheck Boolean

Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.

skipRegionValidation Boolean

Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).

skipRequestingAccountId Boolean

Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.

stsRegion String

The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.

token String

session token. A session token is only required if you are using temporary security credentials.

useDualstackEndpoint Boolean

Resolve an endpoint with DualStack capability

useFipsEndpoint Boolean

Resolve an endpoint with FIPS capability

Outputs

All input properties are implicitly available as output properties. Additionally, the Provider resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Supporting Types

ProviderAssumeRole

Duration string
DurationSeconds int

Deprecated:

Use assume_role.duration instead

ExternalId string
Policy string
PolicyArns List<string>
RoleArn string
SessionName string
SourceIdentity string
Tags Dictionary<string, string>
TransitiveTagKeys List<string>
Duration string
DurationSeconds int

Deprecated:

Use assume_role.duration instead

ExternalId string
Policy string
PolicyArns []string
RoleArn string
SessionName string
SourceIdentity string
Tags map[string]string
TransitiveTagKeys []string
duration String
durationSeconds Integer

Deprecated:

Use assume_role.duration instead

externalId String
policy String
policyArns List<String>
roleArn String
sessionName String
sourceIdentity String
tags Map<String,String>
transitiveTagKeys List<String>
duration string
durationSeconds number

Deprecated:

Use assume_role.duration instead

externalId string
policy string
policyArns string[]
roleArn string
sessionName string
sourceIdentity string
tags {[key: string]: string}
transitiveTagKeys string[]
duration str
duration_seconds int

Deprecated:

Use assume_role.duration instead

external_id str
policy str
policy_arns Sequence[str]
role_arn str
session_name str
source_identity str
tags Mapping[str, str]
transitive_tag_keys Sequence[str]
duration String
durationSeconds Number

Deprecated:

Use assume_role.duration instead

externalId String
policy String
policyArns List<String>
roleArn String
sessionName String
sourceIdentity String
tags Map<String>
transitiveTagKeys List<String>

ProviderAssumeRoleWithWebIdentity

Duration string
Policy string
PolicyArns List<string>
RoleArn string
SessionName string
WebIdentityToken string
WebIdentityTokenFile string
duration String
policy String
policyArns List<String>
roleArn String
sessionName String
webIdentityToken String
webIdentityTokenFile String
duration String
policy String
policyArns List<String>
roleArn String
sessionName String
webIdentityToken String
webIdentityTokenFile String

ProviderDefaultTags

Tags Dictionary<string, string>
Tags map[string]string
tags Map<String,String>
tags {[key: string]: string}
tags Mapping[str, str]
tags Map<String>

ProviderEndpoint

Accessanalyzer string
Account string
Acm string
Acmpca string
Alexaforbusiness string
Amg string
Amp string
Amplify string
Amplifybackend string
Amplifyuibuilder string
Apigateway string
Apigatewaymanagementapi string
Apigatewayv2 string
Appautoscaling string
Appconfig string
Appconfigdata string
Appflow string
Appintegrations string
Appintegrationsservice string
Applicationautoscaling string
Applicationcostprofiler string
Applicationdiscovery string
Applicationdiscoveryservice string
Applicationinsights string
Appmesh string
Appregistry string
Apprunner string
Appstream string
Appsync string
Athena string
Auditmanager string
Augmentedairuntime string
Autoscaling string
Autoscalingplans string
Backup string
Backupgateway string
Batch string
Beanstalk string
Billingconductor string
Braket string
Budgets string
Ce string
Chime string
Chimesdkidentity string
Chimesdkmeetings string
Chimesdkmessaging string
Cloud9 string
Cloudcontrol string
Cloudcontrolapi string
Clouddirectory string
Cloudformation string
Cloudfront string
Cloudhsm string
Cloudhsmv2 string
Cloudsearch string
Cloudsearchdomain string
Cloudtrail string
Cloudwatch string
Cloudwatchevents string
Cloudwatchevidently string
Cloudwatchlog string
Cloudwatchlogs string
Cloudwatchobservabilityaccessmanager string
Cloudwatchrum string
Codeartifact string
Codebuild string
Codecommit string
Codedeploy string
Codeguruprofiler string
Codegurureviewer string
Codepipeline string
Codestar string
Codestarconnections string
Codestarnotifications string
Cognitoidentity string
Cognitoidentityprovider string
Cognitoidp string
Cognitosync string
Comprehend string
Comprehendmedical string
Computeoptimizer string
Config string
Configservice string
Connect string
Connectcontactlens string
Connectparticipant string
Connectwisdomservice string
Controltower string
Costandusagereportservice string
Costexplorer string
Cur string
Customerprofiles string
Databasemigration string
Databasemigrationservice string
Databrew string
Dataexchange string
Datapipeline string
Datasync string
Dax string
Deploy string
Detective string
Devicefarm string
Devopsguru string
Directconnect string
Directoryservice string
Discovery string
Dlm string
Dms string
Docdb string
Drs string
Ds string
Dynamodb string
Dynamodbstreams string
Ebs string
Ec2 string
Ec2instanceconnect string
Ecr string
Ecrpublic string
Ecs string
Efs string
Eks string
Elasticache string
Elasticbeanstalk string
Elasticinference string
Elasticloadbalancing string
Elasticloadbalancingv2 string
Elasticsearch string
Elasticsearchservice string
Elastictranscoder string
Elb string
Elbv2 string
Emr string
Emrcontainers string
Emrserverless string
Es string
Eventbridge string
Events string
Evidently string
Finspace string
Finspacedata string
Firehose string
Fis string
Fms string
Forecast string
Forecastquery string
Forecastqueryservice string
Forecastservice string
Frauddetector string
Fsx string
Gamelift string
Glacier string
Globalaccelerator string
Glue string
Gluedatabrew string
Grafana string
Greengrass string
Greengrassv2 string
Groundstation string
Guardduty string
Health string
Healthlake string
Honeycode string
Iam string
Identitystore string
Imagebuilder string
Inspector string
Inspector2 string
Inspectorv2 string
Iot string
Iot1clickdevices string
Iot1clickdevicesservice string
Iot1clickprojects string
Iotanalytics string
Iotdata string
Iotdataplane string
Iotdeviceadvisor string
Iotevents string
Ioteventsdata string
Iotfleethub string
Iotjobsdata string
Iotjobsdataplane string
Iotsecuretunneling string
Iotsitewise string
Iotthingsgraph string
Iottwinmaker string
Iotwireless string
Ivs string
Ivschat string
Kafka string
Kafkaconnect string
Kendra string
Keyspaces string
Kinesis string
Kinesisanalytics string
Kinesisanalyticsv2 string
Kinesisvideo string
Kinesisvideoarchivedmedia string
Kinesisvideomedia string
Kinesisvideosignaling string
Kinesisvideosignalingchannels string
Kms string
Lakeformation string
Lambda string
Lex string
Lexmodelbuilding string
Lexmodelbuildingservice string
Lexmodels string
Lexmodelsv2 string
Lexruntime string
Lexruntimeservice string
Lexruntimev2 string
Lexv2models string
Lexv2runtime string
Licensemanager string
Lightsail string
Location string
Locationservice string
Logs string
Lookoutequipment string
Lookoutforvision string
Lookoutmetrics string
Lookoutvision string
Machinelearning string
Macie string
Macie2 string
Managedblockchain string
Managedgrafana string
Marketplacecatalog string
Marketplacecommerceanalytics string
Marketplaceentitlement string
Marketplaceentitlementservice string
Marketplacemetering string
Mediaconnect string
Mediaconvert string
Medialive string
Mediapackage string
Mediapackagevod string
Mediastore string
Mediastoredata string
Mediatailor string
Memorydb string
Meteringmarketplace string
Mgh string
Mgn string
Migrationhub string
Migrationhubconfig string
Migrationhubrefactorspaces string
Migrationhubstrategy string
Migrationhubstrategyrecommendations string
Mobile string
Mq string
Msk string
Mturk string
Mwaa string
Neptune string
Networkfirewall string
Networkmanager string
Nimble string
Nimblestudio string
Oam string
Opensearch string
Opensearchserverless string
Opensearchservice string
Opsworks string
Opsworkscm string
Organizations string
Outposts string
Panorama string
Personalize string
Personalizeevents string
Personalizeruntime string
Pi string
Pinpoint string
Pinpointemail string
Pinpointsmsvoice string
Pipes string
Polly string
Pricing string
Prometheus string
Prometheusservice string
Proton string
Qldb string
Qldbsession string
Quicksight string
Ram string
Rbin string
Rds string
Rdsdata string
Rdsdataservice string
Recyclebin string
Redshift string
Redshiftdata string
Redshiftdataapiservice string
Redshiftserverless string
Rekognition string
Resiliencehub string
Resourceexplorer2 string
Resourcegroups string
Resourcegroupstagging string
Resourcegroupstaggingapi string
Robomaker string
Rolesanywhere string
Route53 string
Route53domains string
Route53recoverycluster string
Route53recoverycontrolconfig string
Route53recoveryreadiness string
Route53resolver string
Rum string
S3 string
S3api string
S3control string
S3outposts string
Sagemaker string
Sagemakera2iruntime string
Sagemakeredge string
Sagemakeredgemanager string
Sagemakerfeaturestoreruntime string
Sagemakerruntime string
Savingsplans string
Scheduler string
Schemas string
Sdb string
Secretsmanager string
Securityhub string
Serverlessapplicationrepository string
Serverlessapprepo string
Serverlessrepo string
Servicecatalog string
Servicecatalogappregistry string
Servicediscovery string
Servicequotas string
Ses string
Sesv2 string
Sfn string
Shield string
Signer string
Simpledb string
Sms string
Snowball string
Snowdevicemanagement string
Sns string
Sqs string
Ssm string
Ssmcontacts string
Ssmincidents string
Sso string
Ssoadmin string
Ssooidc string
Stepfunctions string
Storagegateway string
Sts string
Support string
Swf string
Synthetics string
Textract string
Timestreamquery string
Timestreamwrite string
Transcribe string
Transcribeservice string
Transcribestreaming string
Transcribestreamingservice string
Transfer string
Translate string
Voiceid string
Waf string
Wafregional string
Wafv2 string
Wellarchitected string
Wisdom string
Workdocs string
Worklink string
Workmail string
Workmailmessageflow string
Workspaces string
Workspacesweb string
Xray string
Accessanalyzer string
Account string
Acm string
Acmpca string
Alexaforbusiness string
Amg string
Amp string
Amplify string
Amplifybackend string
Amplifyuibuilder string
Apigateway string
Apigatewaymanagementapi string
Apigatewayv2 string
Appautoscaling string
Appconfig string
Appconfigdata string
Appflow string
Appintegrations string
Appintegrationsservice string
Applicationautoscaling string
Applicationcostprofiler string
Applicationdiscovery string
Applicationdiscoveryservice string
Applicationinsights string
Appmesh string
Appregistry string
Apprunner string
Appstream string
Appsync string
Athena string
Auditmanager string
Augmentedairuntime string
Autoscaling string
Autoscalingplans string
Backup string
Backupgateway string
Batch string
Beanstalk string
Billingconductor string
Braket string
Budgets string
Ce string
Chime string
Chimesdkidentity string
Chimesdkmeetings string
Chimesdkmessaging string
Cloud9 string
Cloudcontrol string
Cloudcontrolapi string
Clouddirectory string
Cloudformation string
Cloudfront string
Cloudhsm string
Cloudhsmv2 string
Cloudsearch string
Cloudsearchdomain string
Cloudtrail string
Cloudwatch string
Cloudwatchevents string
Cloudwatchevidently string
Cloudwatchlog string
Cloudwatchlogs string
Cloudwatchobservabilityaccessmanager string
Cloudwatchrum string
Codeartifact string
Codebuild string
Codecommit string
Codedeploy string
Codeguruprofiler string
Codegurureviewer string
Codepipeline string
Codestar string
Codestarconnections string
Codestarnotifications string
Cognitoidentity string
Cognitoidentityprovider string
Cognitoidp string
Cognitosync string
Comprehend string
Comprehendmedical string
Computeoptimizer string
Config string
Configservice string
Connect string
Connectcontactlens string
Connectparticipant string
Connectwisdomservice string
Controltower string
Costandusagereportservice string
Costexplorer string
Cur string
Customerprofiles string
Databasemigration string
Databasemigrationservice string
Databrew string
Dataexchange string
Datapipeline string
Datasync string
Dax string
Deploy string
Detective string
Devicefarm string
Devopsguru string
Directconnect string
Directoryservice string
Discovery string
Dlm string
Dms string
Docdb string
Drs string
Ds string
Dynamodb string
Dynamodbstreams string
Ebs string
Ec2 string
Ec2instanceconnect string
Ecr string
Ecrpublic string
Ecs string
Efs string
Eks string
Elasticache string
Elasticbeanstalk string
Elasticinference string
Elasticloadbalancing string
Elasticloadbalancingv2 string
Elasticsearch string
Elasticsearchservice string
Elastictranscoder string
Elb string
Elbv2 string
Emr string
Emrcontainers string
Emrserverless string
Es string
Eventbridge string
Events string
Evidently string
Finspace string
Finspacedata string
Firehose string
Fis string
Fms string
Forecast string
Forecastquery string
Forecastqueryservice string
Forecastservice string
Frauddetector string
Fsx string
Gamelift string
Glacier string
Globalaccelerator string
Glue string
Gluedatabrew string
Grafana string
Greengrass string
Greengrassv2 string
Groundstation string
Guardduty string
Health string
Healthlake string
Honeycode string
Iam string
Identitystore string
Imagebuilder string
Inspector string
Inspector2 string
Inspectorv2 string
Iot string
Iot1clickdevices string
Iot1clickdevicesservice string
Iot1clickprojects string
Iotanalytics string
Iotdata string
Iotdataplane string
Iotdeviceadvisor string
Iotevents string
Ioteventsdata string
Iotfleethub string
Iotjobsdata string
Iotjobsdataplane string
Iotsecuretunneling string
Iotsitewise string
Iotthingsgraph string
Iottwinmaker string
Iotwireless string
Ivs string
Ivschat string
Kafka string
Kafkaconnect string
Kendra string
Keyspaces string
Kinesis string
Kinesisanalytics string
Kinesisanalyticsv2 string
Kinesisvideo string
Kinesisvideoarchivedmedia string
Kinesisvideomedia string
Kinesisvideosignaling string
Kinesisvideosignalingchannels string
Kms string
Lakeformation string
Lambda string
Lex string
Lexmodelbuilding string
Lexmodelbuildingservice string
Lexmodels string
Lexmodelsv2 string
Lexruntime string
Lexruntimeservice string
Lexruntimev2 string
Lexv2models string
Lexv2runtime string
Licensemanager string
Lightsail string
Location string
Locationservice string
Logs string
Lookoutequipment string
Lookoutforvision string
Lookoutmetrics string
Lookoutvision string
Machinelearning string
Macie string
Macie2 string
Managedblockchain string
Managedgrafana string
Marketplacecatalog string
Marketplacecommerceanalytics string
Marketplaceentitlement string
Marketplaceentitlementservice string
Marketplacemetering string
Mediaconnect string
Mediaconvert string
Medialive string
Mediapackage string
Mediapackagevod string
Mediastore string
Mediastoredata string
Mediatailor string
Memorydb string
Meteringmarketplace string
Mgh string
Mgn string
Migrationhub string
Migrationhubconfig string
Migrationhubrefactorspaces string
Migrationhubstrategy string
Migrationhubstrategyrecommendations string
Mobile string
Mq string
Msk string
Mturk string
Mwaa string
Neptune string
Networkfirewall string
Networkmanager string
Nimble string
Nimblestudio string
Oam string
Opensearch string
Opensearchserverless string
Opensearchservice string
Opsworks string
Opsworkscm string
Organizations string
Outposts string
Panorama string
Personalize string
Personalizeevents string
Personalizeruntime string
Pi string
Pinpoint string
Pinpointemail string
Pinpointsmsvoice string
Pipes string
Polly string
Pricing string
Prometheus string
Prometheusservice string
Proton string
Qldb string
Qldbsession string
Quicksight string
Ram string
Rbin string
Rds string
Rdsdata string
Rdsdataservice string
Recyclebin string
Redshift string
Redshiftdata string
Redshiftdataapiservice string
Redshiftserverless string
Rekognition string
Resiliencehub string
Resourceexplorer2 string
Resourcegroups string
Resourcegroupstagging string
Resourcegroupstaggingapi string
Robomaker string
Rolesanywhere string
Route53 string
Route53domains string
Route53recoverycluster string
Route53recoverycontrolconfig string
Route53recoveryreadiness string
Route53resolver string
Rum string
S3 string
S3api string
S3control string
S3outposts string
Sagemaker string
Sagemakera2iruntime string
Sagemakeredge string
Sagemakeredgemanager string
Sagemakerfeaturestoreruntime string
Sagemakerruntime string
Savingsplans string
Scheduler string
Schemas string
Sdb string
Secretsmanager string
Securityhub string
Serverlessapplicationrepository string
Serverlessapprepo string
Serverlessrepo string
Servicecatalog string
Servicecatalogappregistry string
Servicediscovery string
Servicequotas string
Ses string
Sesv2 string
Sfn string
Shield string
Signer string
Simpledb string
Sms string
Snowball string
Snowdevicemanagement string
Sns string
Sqs string
Ssm string
Ssmcontacts string
Ssmincidents string
Sso string
Ssoadmin string
Ssooidc string
Stepfunctions string
Storagegateway string
Sts string
Support string
Swf string
Synthetics string
Textract string
Timestreamquery string
Timestreamwrite string
Transcribe string
Transcribeservice string
Transcribestreaming string
Transcribestreamingservice string
Transfer string
Translate string
Voiceid string
Waf string
Wafregional string
Wafv2 string
Wellarchitected string
Wisdom string
Workdocs string
Worklink string
Workmail string
Workmailmessageflow string
Workspaces string
Workspacesweb string
Xray string
accessanalyzer String
account String
acm String
acmpca String
alexaforbusiness String
amg String
amp String
amplify String
amplifybackend String
amplifyuibuilder String
apigateway String
apigatewaymanagementapi String
apigatewayv2 String
appautoscaling String
appconfig String
appconfigdata String
appflow String
appintegrations String
appintegrationsservice String
applicationautoscaling String
applicationcostprofiler String
applicationdiscovery String
applicationdiscoveryservice String
applicationinsights String
appmesh String
appregistry String
apprunner String
appstream String
appsync String
athena String
auditmanager String
augmentedairuntime String
autoscaling String
autoscalingplans String
backup String
backupgateway String
batch String
beanstalk String
billingconductor String
braket String
budgets String
ce String
chime String
chimesdkidentity String
chimesdkmeetings String
chimesdkmessaging String
cloud9 String
cloudcontrol String
cloudcontrolapi String
clouddirectory String
cloudformation String
cloudfront String
cloudhsm String
cloudhsmv2 String
cloudsearch String
cloudsearchdomain String
cloudtrail String
cloudwatch String
cloudwatchevents String
cloudwatchevidently String
cloudwatchlog String
cloudwatchlogs String
cloudwatchobservabilityaccessmanager String
cloudwatchrum String
codeartifact String
codebuild String
codecommit String
codedeploy String
codeguruprofiler String
codegurureviewer String
codepipeline String
codestar String
codestarconnections String
codestarnotifications String
cognitoidentity String
cognitoidentityprovider String
cognitoidp String
cognitosync String
comprehend String
comprehendmedical String
computeoptimizer String
config String
configservice String
connect String
connectcontactlens String
connectparticipant String
connectwisdomservice String
controltower String
costandusagereportservice String
costexplorer String
cur String
customerprofiles String
databasemigration String
databasemigrationservice String
databrew String
dataexchange String
datapipeline String
datasync String
dax String
deploy String
detective String
devicefarm String
devopsguru String
directconnect String
directoryservice String
discovery String
dlm String
dms String
docdb String
drs String
ds String
dynamodb String
dynamodbstreams String
ebs String
ec2 String
ec2instanceconnect String
ecr String
ecrpublic String
ecs String
efs String
eks String
elasticache String
elasticbeanstalk String
elasticinference String
elasticloadbalancing String
elasticloadbalancingv2 String
elasticsearch String
elasticsearchservice String
elastictranscoder String
elb String
elbv2 String
emr String
emrcontainers String
emrserverless String
es String
eventbridge String
events String
evidently String
finspace String
finspacedata String
firehose String
fis String
fms String
forecast String
forecastquery String
forecastqueryservice String
forecastservice String
frauddetector String
fsx String
gamelift String
glacier String
globalaccelerator String
glue String
gluedatabrew String
grafana String
greengrass String
greengrassv2 String
groundstation String
guardduty String
health String
healthlake String
honeycode String
iam String
identitystore String
imagebuilder String
inspector String
inspector2 String
inspectorv2 String
iot String
iot1clickdevices String
iot1clickdevicesservice String
iot1clickprojects String
iotanalytics String
iotdata String
iotdataplane String
iotdeviceadvisor String
iotevents String
ioteventsdata String
iotfleethub String
iotjobsdata String
iotjobsdataplane String
iotsecuretunneling String
iotsitewise String
iotthingsgraph String
iottwinmaker String
iotwireless String
ivs String
ivschat String
kafka String
kafkaconnect String
kendra String
keyspaces String
kinesis String
kinesisanalytics String
kinesisanalyticsv2 String
kinesisvideo String
kinesisvideoarchivedmedia String
kinesisvideomedia String
kinesisvideosignaling String
kinesisvideosignalingchannels String
kms String
lakeformation String
lambda String
lex String
lexmodelbuilding String
lexmodelbuildingservice String
lexmodels String
lexmodelsv2 String
lexruntime String
lexruntimeservice String
lexruntimev2 String
lexv2models String
lexv2runtime String
licensemanager String
lightsail String
location String
locationservice String
logs String
lookoutequipment String
lookoutforvision String
lookoutmetrics String
lookoutvision String
machinelearning String
macie String
macie2 String
managedblockchain String
managedgrafana String
marketplacecatalog String
marketplacecommerceanalytics String
marketplaceentitlement String
marketplaceentitlementservice String
marketplacemetering String
mediaconnect String
mediaconvert String
medialive String
mediapackage String
mediapackagevod String
mediastore String
mediastoredata String
mediatailor String
memorydb String
meteringmarketplace String
mgh String
mgn String
migrationhub String
migrationhubconfig String
migrationhubrefactorspaces String
migrationhubstrategy String
migrationhubstrategyrecommendations String
mobile String
mq String
msk String
mturk String
mwaa String
neptune String
networkfirewall String
networkmanager String
nimble String
nimblestudio String
oam String
opensearch String
opensearchserverless String
opensearchservice String
opsworks String
opsworkscm String
organizations String
outposts String
panorama String
personalize String
personalizeevents String
personalizeruntime String
pi String
pinpoint String
pinpointemail String
pinpointsmsvoice String
pipes String
polly String
pricing String
prometheus String
prometheusservice String
proton String
qldb String
qldbsession String
quicksight String
ram String
rbin String
rds String
rdsdata String
rdsdataservice String
recyclebin String
redshift String
redshiftdata String
redshiftdataapiservice String
redshiftserverless String
rekognition String
resiliencehub String
resourceexplorer2 String
resourcegroups String
resourcegroupstagging String
resourcegroupstaggingapi String
robomaker String
rolesanywhere String
route53 String
route53domains String
route53recoverycluster String
route53recoverycontrolconfig String
route53recoveryreadiness String
route53resolver String
rum String
s3 String
s3api String
s3control String
s3outposts String
sagemaker String
sagemakera2iruntime String
sagemakeredge String
sagemakeredgemanager String
sagemakerfeaturestoreruntime String
sagemakerruntime String
savingsplans String
scheduler String
schemas String
sdb String
secretsmanager String
securityhub String
serverlessapplicationrepository String
serverlessapprepo String
serverlessrepo String
servicecatalog String
servicecatalogappregistry String
servicediscovery String
servicequotas String
ses String
sesv2 String
sfn String
shield String
signer String
simpledb String
sms String
snowball String
snowdevicemanagement String
sns String
sqs String
ssm String
ssmcontacts String
ssmincidents String
sso String
ssoadmin String
ssooidc String
stepfunctions String
storagegateway String
sts String
support String
swf String
synthetics String
textract String
timestreamquery String
timestreamwrite String
transcribe String
transcribeservice String
transcribestreaming String
transcribestreamingservice String
transfer String
translate String
voiceid String
waf String
wafregional String
wafv2 String
wellarchitected String
wisdom String
workdocs String
worklink String
workmail String
workmailmessageflow String
workspaces String
workspacesweb String
xray String
accessanalyzer string
account string
acm string
acmpca string
alexaforbusiness string
amg string
amp string
amplify string
amplifybackend string
amplifyuibuilder string
apigateway string
apigatewaymanagementapi string
apigatewayv2 string
appautoscaling string
appconfig string
appconfigdata string
appflow string
appintegrations string
appintegrationsservice string
applicationautoscaling string
applicationcostprofiler string
applicationdiscovery string
applicationdiscoveryservice string
applicationinsights string
appmesh string
appregistry string
apprunner string
appstream string
appsync string
athena string
auditmanager string
augmentedairuntime string
autoscaling string
autoscalingplans string
backup string
backupgateway string
batch string
beanstalk string
billingconductor string
braket string
budgets string
ce string
chime string
chimesdkidentity string
chimesdkmeetings string
chimesdkmessaging string
cloud9 string
cloudcontrol string
cloudcontrolapi string
clouddirectory string
cloudformation string
cloudfront string
cloudhsm string
cloudhsmv2 string
cloudsearch string
cloudsearchdomain string
cloudtrail string
cloudwatch string
cloudwatchevents string
cloudwatchevidently string
cloudwatchlog string
cloudwatchlogs string
cloudwatchobservabilityaccessmanager string
cloudwatchrum string
codeartifact string
codebuild string
codecommit string
codedeploy string
codeguruprofiler string
codegurureviewer string
codepipeline string
codestar string
codestarconnections string
codestarnotifications string
cognitoidentity string
cognitoidentityprovider string
cognitoidp string
cognitosync string
comprehend string
comprehendmedical string
computeoptimizer string
config string
configservice string
connect string
connectcontactlens string
connectparticipant string
connectwisdomservice string
controltower string
costandusagereportservice string
costexplorer string
cur string
customerprofiles string
databasemigration string
databasemigrationservice string
databrew string
dataexchange string
datapipeline string
datasync string
dax string
deploy string
detective string
devicefarm string
devopsguru string
directconnect string
directoryservice string
discovery string
dlm string
dms string
docdb string
drs string
ds string
dynamodb string
dynamodbstreams string
ebs string
ec2 string
ec2instanceconnect string
ecr string
ecrpublic string
ecs string
efs string
eks string
elasticache string
elasticbeanstalk string
elasticinference string
elasticloadbalancing string
elasticloadbalancingv2 string
elasticsearch string
elasticsearchservice string
elastictranscoder string
elb string
elbv2 string
emr string
emrcontainers string
emrserverless string
es string
eventbridge string
events string
evidently string
finspace string
finspacedata string
firehose string
fis string
fms string
forecast string
forecastquery string
forecastqueryservice string
forecastservice string
frauddetector string
fsx string
gamelift string
glacier string
globalaccelerator string
glue string
gluedatabrew string
grafana string
greengrass string
greengrassv2 string
groundstation string
guardduty string
health string
healthlake string
honeycode string
iam string
identitystore string
imagebuilder string
inspector string
inspector2 string
inspectorv2 string
iot string
iot1clickdevices string
iot1clickdevicesservice string
iot1clickprojects string
iotanalytics string
iotdata string
iotdataplane string
iotdeviceadvisor string
iotevents string
ioteventsdata string
iotfleethub string
iotjobsdata string
iotjobsdataplane string
iotsecuretunneling string
iotsitewise string
iotthingsgraph string
iottwinmaker string
iotwireless string
ivs string
ivschat string
kafka string
kafkaconnect string
kendra string
keyspaces string
kinesis string
kinesisanalytics string
kinesisanalyticsv2 string
kinesisvideo string
kinesisvideoarchivedmedia string
kinesisvideomedia string
kinesisvideosignaling string
kinesisvideosignalingchannels string
kms string
lakeformation string
lambda string
lex string
lexmodelbuilding string
lexmodelbuildingservice string
lexmodels string
lexmodelsv2 string
lexruntime string
lexruntimeservice string
lexruntimev2 string
lexv2models string
lexv2runtime string
licensemanager string
lightsail string
location string
locationservice string
logs string
lookoutequipment string
lookoutforvision string
lookoutmetrics string
lookoutvision string
machinelearning string
macie string
macie2 string
managedblockchain string
managedgrafana string
marketplacecatalog string
marketplacecommerceanalytics string
marketplaceentitlement string
marketplaceentitlementservice string
marketplacemetering string
mediaconnect string
mediaconvert string
medialive string
mediapackage string
mediapackagevod string
mediastore string
mediastoredata string
mediatailor string
memorydb string
meteringmarketplace string
mgh string
mgn string
migrationhub string
migrationhubconfig string
migrationhubrefactorspaces string
migrationhubstrategy string
migrationhubstrategyrecommendations string
mobile string
mq string
msk string
mturk string
mwaa string
neptune string
networkfirewall string
networkmanager string
nimble string
nimblestudio string
oam string
opensearch string
opensearchserverless string
opensearchservice string
opsworks string
opsworkscm string
organizations string
outposts string
panorama string
personalize string
personalizeevents string
personalizeruntime string
pi string
pinpoint string
pinpointemail string
pinpointsmsvoice string
pipes string
polly string
pricing string
prometheus string
prometheusservice string
proton string
qldb string
qldbsession string
quicksight string
ram string
rbin string
rds string
rdsdata string
rdsdataservice string
recyclebin string
redshift string
redshiftdata string
redshiftdataapiservice string
redshiftserverless string
rekognition string
resiliencehub string
resourceexplorer2 string
resourcegroups string
resourcegroupstagging string
resourcegroupstaggingapi string
robomaker string
rolesanywhere string
route53 string
route53domains string
route53recoverycluster string
route53recoverycontrolconfig string
route53recoveryreadiness string
route53resolver string
rum string
s3 string
s3api string
s3control string
s3outposts string
sagemaker string
sagemakera2iruntime string
sagemakeredge string
sagemakeredgemanager string
sagemakerfeaturestoreruntime string
sagemakerruntime string
savingsplans string
scheduler string
schemas string
sdb string
secretsmanager string
securityhub string
serverlessapplicationrepository string
serverlessapprepo string
serverlessrepo string
servicecatalog string
servicecatalogappregistry string
servicediscovery string
servicequotas string
ses string
sesv2 string
sfn string
shield string
signer string
simpledb string
sms string
snowball string
snowdevicemanagement string
sns string
sqs string
ssm string
ssmcontacts string
ssmincidents string
sso string
ssoadmin string
ssooidc string
stepfunctions string
storagegateway string
sts string
support string
swf string
synthetics string
textract string
timestreamquery string
timestreamwrite string
transcribe string
transcribeservice string
transcribestreaming string
transcribestreamingservice string
transfer string
translate string
voiceid string
waf string
wafregional string
wafv2 string
wellarchitected string
wisdom string
workdocs string
worklink string
workmail string
workmailmessageflow string
workspaces string
workspacesweb string
xray string
accessanalyzer str
account str
acm str
acmpca str
alexaforbusiness str
amg str
amp str
amplify str
amplifybackend str
amplifyuibuilder str
apigateway str
apigatewaymanagementapi str
apigatewayv2 str
appautoscaling str
appconfig str
appconfigdata str
appflow str
appintegrations str
appintegrationsservice str
applicationautoscaling str
applicationcostprofiler str
applicationdiscovery str
applicationdiscoveryservice str
applicationinsights str
appmesh str
appregistry str
apprunner str
appstream str
appsync str
athena str
auditmanager str
augmentedairuntime str
autoscaling str
autoscalingplans str
backup str
backupgateway str
batch str
beanstalk str
billingconductor str
braket str
budgets str
ce str
chime str
chimesdkidentity str
chimesdkmeetings str
chimesdkmessaging str
cloud9 str
cloudcontrol str
cloudcontrolapi str
clouddirectory str
cloudformation str
cloudfront str
cloudhsm str
cloudhsmv2 str
cloudsearch str
cloudsearchdomain str
cloudtrail str
cloudwatch str
cloudwatchevents str
cloudwatchevidently str
cloudwatchlog str
cloudwatchlogs str
cloudwatchobservabilityaccessmanager str
cloudwatchrum str
codeartifact str
codebuild str
codecommit str
codedeploy str
codeguruprofiler str
codegurureviewer str
codepipeline str
codestar str
codestarconnections str
codestarnotifications str
cognitoidentity str
cognitoidentityprovider str
cognitoidp str
cognitosync str
comprehend str
comprehendmedical str
computeoptimizer str
config str
configservice str
connect str
connectcontactlens str
connectparticipant str
connectwisdomservice str
controltower str
costandusagereportservice str
costexplorer str
cur str
customerprofiles str
databasemigration str
databasemigrationservice str
databrew str
dataexchange str
datapipeline str
datasync str
dax str
deploy str
detective str
devicefarm str
devopsguru str
directconnect str
directoryservice str
discovery str
dlm str
dms str
docdb str
drs str
ds str
dynamodb str
dynamodbstreams str
ebs str
ec2 str
ec2instanceconnect str
ecr str
ecrpublic str
ecs str
efs str
eks str
elasticache str
elasticbeanstalk str
elasticinference str
elasticloadbalancing str
elasticloadbalancingv2 str
elasticsearch str
elasticsearchservice str
elastictranscoder str
elb str
elbv2 str
emr str
emrcontainers str
emrserverless str
es str
eventbridge str
events str
evidently str
finspace str
finspacedata str
firehose str
fis str
fms str
forecast str
forecastquery str
forecastqueryservice str
forecastservice str
frauddetector str
fsx str
gamelift str
glacier str
globalaccelerator str
glue str
gluedatabrew str
grafana str
greengrass str
greengrassv2 str
groundstation str
guardduty str
health str
healthlake str
honeycode str
iam str
identitystore str
imagebuilder str
inspector str
inspector2 str
inspectorv2 str
iot str
iot1clickdevices str
iot1clickdevicesservice str
iot1clickprojects str
iotanalytics str
iotdata str
iotdataplane str
iotdeviceadvisor str
iotevents str
ioteventsdata str
iotfleethub str
iotjobsdata str
iotjobsdataplane str
iotsecuretunneling str
iotsitewise str
iotthingsgraph str
iottwinmaker str
iotwireless str
ivs str
ivschat str
kafka str
kafkaconnect str
kendra str
keyspaces str
kinesis str
kinesisanalytics str
kinesisanalyticsv2 str
kinesisvideo str
kinesisvideoarchivedmedia str
kinesisvideomedia str
kinesisvideosignaling str
kinesisvideosignalingchannels str
kms str
lakeformation str
lambda_ str
lex str
lexmodelbuilding str
lexmodelbuildingservice str
lexmodels str
lexmodelsv2 str
lexruntime str
lexruntimeservice str
lexruntimev2 str
lexv2models str
lexv2runtime str
licensemanager str
lightsail str
location str
locationservice str
logs str
lookoutequipment str
lookoutforvision str
lookoutmetrics str
lookoutvision str
machinelearning str
macie str
macie2 str
managedblockchain str
managedgrafana str
marketplacecatalog str
marketplacecommerceanalytics str
marketplaceentitlement str
marketplaceentitlementservice str
marketplacemetering str
mediaconnect str
mediaconvert str
medialive str
mediapackage str
mediapackagevod str
mediastore str
mediastoredata str
mediatailor str
memorydb str
meteringmarketplace str
mgh str
mgn str
migrationhub str
migrationhubconfig str
migrationhubrefactorspaces str
migrationhubstrategy str
migrationhubstrategyrecommendations str
mobile str
mq str
msk str
mturk str
mwaa str
neptune str
networkfirewall str
networkmanager str
nimble str
nimblestudio str
oam str
opensearch str
opensearchserverless str
opensearchservice str
opsworks str
opsworkscm str
organizations str
outposts str
panorama str
personalize str
personalizeevents str
personalizeruntime str
pi str
pinpoint str
pinpointemail str
pinpointsmsvoice str
pipes str
polly str
pricing str
prometheus str
prometheusservice str
proton str
qldb str
qldbsession str
quicksight str
ram str
rbin str
rds str
rdsdata str
rdsdataservice str
recyclebin str
redshift str
redshiftdata str
redshiftdataapiservice str
redshiftserverless str
rekognition str
resiliencehub str
resourceexplorer2 str
resourcegroups str
resourcegroupstagging str
resourcegroupstaggingapi str
robomaker str
rolesanywhere str
route53 str
route53domains str
route53recoverycluster str
route53recoverycontrolconfig str
route53recoveryreadiness str
route53resolver str
rum str
s3 str
s3api str
s3control str
s3outposts str
sagemaker str
sagemakera2iruntime str
sagemakeredge str
sagemakeredgemanager str
sagemakerfeaturestoreruntime str
sagemakerruntime str
savingsplans str
scheduler str
schemas str
sdb str
secretsmanager str
securityhub str
serverlessapplicationrepository str
serverlessapprepo str
serverlessrepo str
servicecatalog str
servicecatalogappregistry str
servicediscovery str
servicequotas str
ses str
sesv2 str
sfn str
shield str
signer str
simpledb str
sms str
snowball str
snowdevicemanagement str
sns str
sqs str
ssm str
ssmcontacts str
ssmincidents str
sso str
ssoadmin str
ssooidc str
stepfunctions str
storagegateway str
sts str
support str
swf str
synthetics str
textract str
timestreamquery str
timestreamwrite str
transcribe str
transcribeservice str
transcribestreaming str
transcribestreamingservice str
transfer str
translate str
voiceid str
waf str
wafregional str
wafv2 str
wellarchitected str
wisdom str
workdocs str
worklink str
workmail str
workmailmessageflow str
workspaces str
workspacesweb str
xray str
accessanalyzer String
account String
acm String
acmpca String
alexaforbusiness String
amg String
amp String
amplify String
amplifybackend String
amplifyuibuilder String
apigateway String
apigatewaymanagementapi String
apigatewayv2 String
appautoscaling String
appconfig String
appconfigdata String
appflow String
appintegrations String
appintegrationsservice String
applicationautoscaling String
applicationcostprofiler String
applicationdiscovery String
applicationdiscoveryservice String
applicationinsights String
appmesh String
appregistry String
apprunner String
appstream String
appsync String
athena String
auditmanager String
augmentedairuntime String
autoscaling String
autoscalingplans String
backup String
backupgateway String
batch String
beanstalk String
billingconductor String
braket String
budgets String
ce String
chime String
chimesdkidentity String
chimesdkmeetings String
chimesdkmessaging String
cloud9 String
cloudcontrol String
cloudcontrolapi String
clouddirectory String
cloudformation String
cloudfront String
cloudhsm String
cloudhsmv2 String
cloudsearch String
cloudsearchdomain String
cloudtrail String
cloudwatch String
cloudwatchevents String
cloudwatchevidently String
cloudwatchlog String
cloudwatchlogs String
cloudwatchobservabilityaccessmanager String
cloudwatchrum String
codeartifact String
codebuild String
codecommit String
codedeploy String
codeguruprofiler String
codegurureviewer String
codepipeline String
codestar String
codestarconnections String
codestarnotifications String
cognitoidentity String
cognitoidentityprovider String
cognitoidp String
cognitosync String
comprehend String
comprehendmedical String
computeoptimizer String
config String
configservice String
connect String
connectcontactlens String
connectparticipant String
connectwisdomservice String
controltower String
costandusagereportservice String
costexplorer String
cur String
customerprofiles String
databasemigration String
databasemigrationservice String
databrew String
dataexchange String
datapipeline String
datasync String
dax String
deploy String
detective String
devicefarm String
devopsguru String
directconnect String
directoryservice String
discovery String
dlm String
dms String
docdb String
drs String
ds String
dynamodb String
dynamodbstreams String
ebs String
ec2 String
ec2instanceconnect String
ecr String
ecrpublic String
ecs String
efs String
eks String
elasticache String
elasticbeanstalk String
elasticinference String
elasticloadbalancing String
elasticloadbalancingv2 String
elasticsearch String
elasticsearchservice String
elastictranscoder String
elb String
elbv2 String
emr String
emrcontainers String
emrserverless String
es String
eventbridge String
events String
evidently String
finspace String
finspacedata String
firehose String
fis String
fms String
forecast String
forecastquery String
forecastqueryservice String
forecastservice String
frauddetector String
fsx String
gamelift String
glacier String
globalaccelerator String
glue String
gluedatabrew String
grafana String
greengrass String
greengrassv2 String
groundstation String
guardduty String
health String
healthlake String
honeycode String
iam String
identitystore String
imagebuilder String
inspector String
inspector2 String
inspectorv2 String
iot String
iot1clickdevices String
iot1clickdevicesservice String
iot1clickprojects String
iotanalytics String
iotdata String
iotdataplane String
iotdeviceadvisor String
iotevents String
ioteventsdata String
iotfleethub String
iotjobsdata String
iotjobsdataplane String
iotsecuretunneling String
iotsitewise String
iotthingsgraph String
iottwinmaker String
iotwireless String
ivs String
ivschat String
kafka String
kafkaconnect String
kendra String
keyspaces String
kinesis String
kinesisanalytics String
kinesisanalyticsv2 String
kinesisvideo String
kinesisvideoarchivedmedia String
kinesisvideomedia String
kinesisvideosignaling String
kinesisvideosignalingchannels String
kms String
lakeformation String
lambda String
lex String
lexmodelbuilding String
lexmodelbuildingservice String
lexmodels String
lexmodelsv2 String
lexruntime String
lexruntimeservice String
lexruntimev2 String
lexv2models String
lexv2runtime String
licensemanager String
lightsail String
location String
locationservice String
logs String
lookoutequipment String
lookoutforvision String
lookoutmetrics String
lookoutvision String
machinelearning String
macie String
macie2 String
managedblockchain String
managedgrafana String
marketplacecatalog String
marketplacecommerceanalytics String
marketplaceentitlement String
marketplaceentitlementservice String
marketplacemetering String
mediaconnect String
mediaconvert String
medialive String
mediapackage String
mediapackagevod String
mediastore String
mediastoredata String
mediatailor String
memorydb String
meteringmarketplace String
mgh String
mgn String
migrationhub String
migrationhubconfig String
migrationhubrefactorspaces String
migrationhubstrategy String
migrationhubstrategyrecommendations String
mobile String
mq String
msk String
mturk String
mwaa String
neptune String
networkfirewall String
networkmanager String
nimble String
nimblestudio String
oam String
opensearch String
opensearchserverless String
opensearchservice String
opsworks String
opsworkscm String
organizations String
outposts String
panorama String
personalize String
personalizeevents String
personalizeruntime String
pi String
pinpoint String
pinpointemail String
pinpointsmsvoice String
pipes String
polly String
pricing String
prometheus String
prometheusservice String
proton String
qldb String
qldbsession String
quicksight String
ram String
rbin String
rds String
rdsdata String
rdsdataservice String
recyclebin String
redshift String
redshiftdata String
redshiftdataapiservice String
redshiftserverless String
rekognition String
resiliencehub String
resourceexplorer2 String
resourcegroups String
resourcegroupstagging String
resourcegroupstaggingapi String
robomaker String
rolesanywhere String
route53 String
route53domains String
route53recoverycluster String
route53recoverycontrolconfig String
route53recoveryreadiness String
route53resolver String
rum String
s3 String
s3api String
s3control String
s3outposts String
sagemaker String
sagemakera2iruntime String
sagemakeredge String
sagemakeredgemanager String
sagemakerfeaturestoreruntime String
sagemakerruntime String
savingsplans String
scheduler String
schemas String
sdb String
secretsmanager String
securityhub String
serverlessapplicationrepository String
serverlessapprepo String
serverlessrepo String
servicecatalog String
servicecatalogappregistry String
servicediscovery String
servicequotas String
ses String
sesv2 String
sfn String
shield String
signer String
simpledb String
sms String
snowball String
snowdevicemanagement String
sns String
sqs String
ssm String
ssmcontacts String
ssmincidents String
sso String
ssoadmin String
ssooidc String
stepfunctions String
storagegateway String
sts String
support String
swf String
synthetics String
textract String
timestreamquery String
timestreamwrite String
transcribe String
transcribeservice String
transcribestreaming String
transcribestreamingservice String
transfer String
translate String
voiceid String
waf String
wafregional String
wafv2 String
wellarchitected String
wisdom String
workdocs String
worklink String
workmail String
workmailmessageflow String
workspaces String
workspacesweb String
xray String

ProviderIgnoreTags

KeyPrefixes List<string>
Keys List<string>
KeyPrefixes []string
Keys []string
keyPrefixes List<String>
keys List<String>
keyPrefixes string[]
keys string[]
key_prefixes Sequence[str]
keys Sequence[str]
keyPrefixes List<String>
keys List<String>

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes

This Pulumi package is based on the aws Terraform Provider.