1. Packages
  2. AWS Classic
  3. API Docs
  4. Provider

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.12.2 published on Wednesday, Nov 29, 2023 by Pulumi

aws.Provider

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.12.2 published on Wednesday, Nov 29, 2023 by Pulumi

    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,
                 https_proxy: Optional[str] = None,
                 ignore_tags: Optional[ProviderIgnoreTagsArgs] = None,
                 insecure: Optional[bool] = None,
                 max_retries: Optional[int] = None,
                 no_proxy: Optional[str] = None,
                 profile: Optional[str] = None,
                 region: Optional[str] = None,
                 retry_mode: Optional[str] = None,
                 s3_us_east1_regional_endpoint: Optional[str] = None,
                 s3_use_path_style: Optional[bool] = None,
                 secret_key: Optional[str] = None,
                 shared_config_files: Optional[Sequence[str]] = None,
                 shared_credentials_files: Optional[Sequence[str]] = None,
                 skip_credentials_validation: 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 ProviderAssumeRole
    AssumeRoleWithWebIdentity ProviderAssumeRoleWithWebIdentity
    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 ProviderDefaultTags

    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<ProviderEndpoint>
    ForbiddenAccountIds List<string>
    HttpProxy string

    URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the HTTP_PROXY or http_proxy environment variables.

    HttpsProxy string

    URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the HTTPS_PROXY or https_proxy environment variables.

    IgnoreTags ProviderIgnoreTags

    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.

    NoProxy string

    Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the NO_PROXY or no_proxy environment variables.

    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

    RetryMode string

    Specifies how retries are attempted. Valid values are standard and adaptive. Can also be configured using the AWS_RETRY_MODE environment variable.

    S3UsEast1RegionalEndpoint string

    Specifies whether S3 API calls in the us-east-1 region use the legacy global endpoint or a regional endpoint. Valid values are legacy or regional. Can also be configured using the AWS_S3_US_EAST_1_REGIONAL_ENDPOINT environment variable or the s3_us_east_1_regional_endpoint shared config file parameter

    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].

    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.

    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

    URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the HTTP_PROXY or http_proxy environment variables.

    HttpsProxy string

    URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the HTTPS_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.

    NoProxy string

    Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the NO_PROXY or no_proxy environment variables.

    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

    RetryMode string

    Specifies how retries are attempted. Valid values are standard and adaptive. Can also be configured using the AWS_RETRY_MODE environment variable.

    S3UsEast1RegionalEndpoint string

    Specifies whether S3 API calls in the us-east-1 region use the legacy global endpoint or a regional endpoint. Valid values are legacy or regional. Can also be configured using the AWS_S3_US_EAST_1_REGIONAL_ENDPOINT environment variable or the s3_us_east_1_regional_endpoint shared config file parameter

    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].

    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.

    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 ProviderAssumeRole
    assumeRoleWithWebIdentity ProviderAssumeRoleWithWebIdentity
    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 ProviderDefaultTags

    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<ProviderEndpoint>
    forbiddenAccountIds List<String>
    httpProxy String

    URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the HTTP_PROXY or http_proxy environment variables.

    httpsProxy String

    URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the HTTPS_PROXY or https_proxy environment variables.

    ignoreTags ProviderIgnoreTags

    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.

    noProxy String

    Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the NO_PROXY or no_proxy environment variables.

    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

    retryMode String

    Specifies how retries are attempted. Valid values are standard and adaptive. Can also be configured using the AWS_RETRY_MODE environment variable.

    s3UsEast1RegionalEndpoint String

    Specifies whether S3 API calls in the us-east-1 region use the legacy global endpoint or a regional endpoint. Valid values are legacy or regional. Can also be configured using the AWS_S3_US_EAST_1_REGIONAL_ENDPOINT environment variable or the s3_us_east_1_regional_endpoint shared config file parameter

    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].

    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.

    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 ProviderAssumeRole
    assumeRoleWithWebIdentity ProviderAssumeRoleWithWebIdentity
    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 ProviderDefaultTags

    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 ProviderEndpoint[]
    forbiddenAccountIds string[]
    httpProxy string

    URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the HTTP_PROXY or http_proxy environment variables.

    httpsProxy string

    URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the HTTPS_PROXY or https_proxy environment variables.

    ignoreTags ProviderIgnoreTags

    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.

    noProxy string

    Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the NO_PROXY or no_proxy environment variables.

    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

    retryMode string

    Specifies how retries are attempted. Valid values are standard and adaptive. Can also be configured using the AWS_RETRY_MODE environment variable.

    s3UsEast1RegionalEndpoint string

    Specifies whether S3 API calls in the us-east-1 region use the legacy global endpoint or a regional endpoint. Valid values are legacy or regional. Can also be configured using the AWS_S3_US_EAST_1_REGIONAL_ENDPOINT environment variable or the s3_us_east_1_regional_endpoint shared config file parameter

    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].

    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.

    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

    URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the HTTP_PROXY or http_proxy environment variables.

    https_proxy str

    URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the HTTPS_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.

    no_proxy str

    Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the NO_PROXY or no_proxy environment variables.

    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

    retry_mode str

    Specifies how retries are attempted. Valid values are standard and adaptive. Can also be configured using the AWS_RETRY_MODE environment variable.

    s3_us_east1_regional_endpoint str

    Specifies whether S3 API calls in the us-east-1 region use the legacy global endpoint or a regional endpoint. Valid values are legacy or regional. Can also be configured using the AWS_S3_US_EAST_1_REGIONAL_ENDPOINT environment variable or the s3_us_east_1_regional_endpoint shared config file parameter

    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_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_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

    URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the HTTP_PROXY or http_proxy environment variables.

    httpsProxy String

    URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the HTTPS_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.

    noProxy String

    Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the NO_PROXY or no_proxy environment variables.

    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

    retryMode String

    Specifies how retries are attempted. Valid values are standard and adaptive. Can also be configured using the AWS_RETRY_MODE environment variable.

    s3UsEast1RegionalEndpoint String

    Specifies whether S3 API calls in the us-east-1 region use the legacy global endpoint or a regional endpoint. Valid values are legacy or regional. Can also be configured using the AWS_S3_US_EAST_1_REGIONAL_ENDPOINT environment variable or the s3_us_east_1_regional_endpoint shared config file parameter

    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].

    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.

    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, ProviderAssumeRoleArgs

    Duration string
    ExternalId string
    Policy string
    PolicyArns List<string>
    RoleArn string
    SessionName string
    SourceIdentity string
    Tags Dictionary<string, string>
    TransitiveTagKeys List<string>
    Duration string
    ExternalId string
    Policy string
    PolicyArns []string
    RoleArn string
    SessionName string
    SourceIdentity string
    Tags map[string]string
    TransitiveTagKeys []string
    duration String
    externalId String
    policy String
    policyArns List<String>
    roleArn String
    sessionName String
    sourceIdentity String
    tags Map<String,String>
    transitiveTagKeys List<String>
    duration string
    externalId string
    policy string
    policyArns string[]
    roleArn string
    sessionName string
    sourceIdentity string
    tags {[key: string]: string}
    transitiveTagKeys string[]
    duration str
    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
    externalId String
    policy String
    policyArns List<String>
    roleArn String
    sessionName String
    sourceIdentity String
    tags Map<String>
    transitiveTagKeys List<String>

    ProviderAssumeRoleWithWebIdentity, ProviderAssumeRoleWithWebIdentityArgs

    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, ProviderDefaultTagsArgs

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

    ProviderEndpoint, ProviderEndpointArgs

    Accessanalyzer string
    Account string
    Acm string
    Acmpca string
    Amg string
    Amp string
    Amplify string
    Apigateway string
    Apigatewayv2 string
    Appautoscaling string
    Appconfig string
    Appfabric string
    Appflow string
    Appintegrations string
    Appintegrationsservice string
    Applicationautoscaling string
    Applicationinsights string
    Appmesh string
    Apprunner string
    Appstream string
    Appsync string
    Athena string
    Auditmanager string
    Autoscaling string
    Autoscalingplans string
    Backup string
    Batch string
    Beanstalk string
    Bedrock string
    Budgets string
    Ce string
    Chime string
    Chimesdkmediapipelines string
    Chimesdkvoice string
    Cleanrooms string
    Cloud9 string
    Cloudcontrol string
    Cloudcontrolapi string
    Cloudformation string
    Cloudfront string
    Cloudhsm string
    Cloudhsmv2 string
    Cloudsearch string
    Cloudtrail string
    Cloudwatch string
    Cloudwatchevents string
    Cloudwatchevidently string
    Cloudwatchlog string
    Cloudwatchlogs string
    Cloudwatchobservabilityaccessmanager string
    Cloudwatchrum string
    Codeartifact string
    Codebuild string
    Codecatalyst string
    Codecommit string
    Codedeploy string
    Codegurureviewer string
    Codepipeline string
    Codestarconnections string
    Codestarnotifications string
    Cognitoidentity string
    Cognitoidentityprovider string
    Cognitoidp string
    Comprehend string
    Computeoptimizer string
    Config string
    Configservice string
    Connect string
    Connectcases string
    Controltower string
    Costandusagereportservice string
    Costexplorer string
    Cur string
    Customerprofiles string
    Databasemigration string
    Databasemigrationservice string
    Dataexchange string
    Datapipeline string
    Datasync string
    Dax string
    Deploy string
    Detective string
    Devicefarm string
    Directconnect string
    Directoryservice string
    Dlm string
    Dms string
    Docdb string
    Docdbelastic string
    Ds string
    Dynamodb string
    Ec2 string
    Ecr string
    Ecrpublic string
    Ecs string
    Efs string
    Eks string
    Elasticache string
    Elasticbeanstalk 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
    Firehose string
    Fis string
    Fms string
    Fsx string
    Gamelift string
    Glacier string
    Globalaccelerator string
    Glue string
    Grafana string
    Greengrass string
    Guardduty string
    Healthlake string
    Iam string
    Identitystore string
    Imagebuilder string
    Inspector string
    Inspector2 string
    Inspectorv2 string
    Internetmonitor string
    Iot string
    Iotanalytics string
    Iotevents string
    Ivs string
    Ivschat string
    Kafka string
    Kafkaconnect string
    Kendra string
    Keyspaces string
    Kinesis string
    Kinesisanalytics string
    Kinesisanalyticsv2 string
    Kinesisvideo string
    Kms string
    Lakeformation string
    Lambda string
    Lex string
    Lexmodelbuilding string
    Lexmodelbuildingservice string
    Lexmodels string
    Lexmodelsv2 string
    Lexv2models string
    Licensemanager string
    Lightsail string
    Location string
    Locationservice string
    Logs string
    Macie2 string
    Managedgrafana string
    Mediaconnect string
    Mediaconvert string
    Medialive string
    Mediapackage string
    Mediastore string
    Memorydb string
    Mq string
    Msk string
    Mwaa string
    Neptune string
    Networkfirewall string
    Networkmanager string
    Oam string
    Opensearch string
    Opensearchingestion string
    Opensearchserverless string
    Opensearchservice string
    Opsworks string
    Organizations string
    Osis string
    Outposts string
    Pinpoint string
    Pipes string
    Pricing string
    Prometheus string
    Prometheusservice string
    Qldb string
    Quicksight string
    Ram string
    Rbin string
    Rds string
    Recyclebin string
    Redshift string
    Redshiftdata string
    Redshiftdataapiservice string
    Redshiftserverless string
    Resourceexplorer2 string
    Resourcegroups string
    Resourcegroupstagging string
    Resourcegroupstaggingapi string
    Rolesanywhere string
    Route53 string
    Route53domains string
    Route53recoverycontrolconfig string
    Route53recoveryreadiness string
    Route53resolver string
    Rum string
    S3 string
    S3api string
    S3control string
    S3outposts string
    Sagemaker string
    Scheduler string
    Schemas string
    Sdb string
    Secretsmanager string
    Securityhub string
    Securitylake string
    Serverlessapplicationrepository string
    Serverlessapprepo string
    Serverlessrepo string
    Servicecatalog string
    Servicediscovery string
    Servicequotas string
    Ses string
    Sesv2 string
    Sfn string
    Shield string
    Signer string
    Simpledb string
    Sns string
    Sqs string
    Ssm string
    Ssmcontacts string
    Ssmincidents string
    Sso string
    Ssoadmin string
    Stepfunctions string
    Storagegateway string
    Sts string
    Swf string
    Synthetics string
    Timestreamwrite string
    Transcribe string
    Transcribeservice string
    Transfer string
    Verifiedpermissions string
    Vpclattice string
    Waf string
    Wafregional string
    Wafv2 string
    Worklink string
    Workspaces string
    Xray string
    Accessanalyzer string
    Account string
    Acm string
    Acmpca string
    Amg string
    Amp string
    Amplify string
    Apigateway string
    Apigatewayv2 string
    Appautoscaling string
    Appconfig string
    Appfabric string
    Appflow string
    Appintegrations string
    Appintegrationsservice string
    Applicationautoscaling string
    Applicationinsights string
    Appmesh string
    Apprunner string
    Appstream string
    Appsync string
    Athena string
    Auditmanager string
    Autoscaling string
    Autoscalingplans string
    Backup string
    Batch string
    Beanstalk string
    Bedrock string
    Budgets string
    Ce string
    Chime string
    Chimesdkmediapipelines string
    Chimesdkvoice string
    Cleanrooms string
    Cloud9 string
    Cloudcontrol string
    Cloudcontrolapi string
    Cloudformation string
    Cloudfront string
    Cloudhsm string
    Cloudhsmv2 string
    Cloudsearch string
    Cloudtrail string
    Cloudwatch string
    Cloudwatchevents string
    Cloudwatchevidently string
    Cloudwatchlog string
    Cloudwatchlogs string
    Cloudwatchobservabilityaccessmanager string
    Cloudwatchrum string
    Codeartifact string
    Codebuild string
    Codecatalyst string
    Codecommit string
    Codedeploy string
    Codegurureviewer string
    Codepipeline string
    Codestarconnections string
    Codestarnotifications string
    Cognitoidentity string
    Cognitoidentityprovider string
    Cognitoidp string
    Comprehend string
    Computeoptimizer string
    Config string
    Configservice string
    Connect string
    Connectcases string
    Controltower string
    Costandusagereportservice string
    Costexplorer string
    Cur string
    Customerprofiles string
    Databasemigration string
    Databasemigrationservice string
    Dataexchange string
    Datapipeline string
    Datasync string
    Dax string
    Deploy string
    Detective string
    Devicefarm string
    Directconnect string
    Directoryservice string
    Dlm string
    Dms string
    Docdb string
    Docdbelastic string
    Ds string
    Dynamodb string
    Ec2 string
    Ecr string
    Ecrpublic string
    Ecs string
    Efs string
    Eks string
    Elasticache string
    Elasticbeanstalk 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
    Firehose string
    Fis string
    Fms string
    Fsx string
    Gamelift string
    Glacier string
    Globalaccelerator string
    Glue string
    Grafana string
    Greengrass string
    Guardduty string
    Healthlake string
    Iam string
    Identitystore string
    Imagebuilder string
    Inspector string
    Inspector2 string
    Inspectorv2 string
    Internetmonitor string
    Iot string
    Iotanalytics string
    Iotevents string
    Ivs string
    Ivschat string
    Kafka string
    Kafkaconnect string
    Kendra string
    Keyspaces string
    Kinesis string
    Kinesisanalytics string
    Kinesisanalyticsv2 string
    Kinesisvideo string
    Kms string
    Lakeformation string
    Lambda string
    Lex string
    Lexmodelbuilding string
    Lexmodelbuildingservice string
    Lexmodels string
    Lexmodelsv2 string
    Lexv2models string
    Licensemanager string
    Lightsail string
    Location string
    Locationservice string
    Logs string
    Macie2 string
    Managedgrafana string
    Mediaconnect string
    Mediaconvert string
    Medialive string
    Mediapackage string
    Mediastore string
    Memorydb string
    Mq string
    Msk string
    Mwaa string
    Neptune string
    Networkfirewall string
    Networkmanager string
    Oam string
    Opensearch string
    Opensearchingestion string
    Opensearchserverless string
    Opensearchservice string
    Opsworks string
    Organizations string
    Osis string
    Outposts string
    Pinpoint string
    Pipes string
    Pricing string
    Prometheus string
    Prometheusservice string
    Qldb string
    Quicksight string
    Ram string
    Rbin string
    Rds string
    Recyclebin string
    Redshift string
    Redshiftdata string
    Redshiftdataapiservice string
    Redshiftserverless string
    Resourceexplorer2 string
    Resourcegroups string
    Resourcegroupstagging string
    Resourcegroupstaggingapi string
    Rolesanywhere string
    Route53 string
    Route53domains string
    Route53recoverycontrolconfig string
    Route53recoveryreadiness string
    Route53resolver string
    Rum string
    S3 string
    S3api string
    S3control string
    S3outposts string
    Sagemaker string
    Scheduler string
    Schemas string
    Sdb string
    Secretsmanager string
    Securityhub string
    Securitylake string
    Serverlessapplicationrepository string
    Serverlessapprepo string
    Serverlessrepo string
    Servicecatalog string
    Servicediscovery string
    Servicequotas string
    Ses string
    Sesv2 string
    Sfn string
    Shield string
    Signer string
    Simpledb string
    Sns string
    Sqs string
    Ssm string
    Ssmcontacts string
    Ssmincidents string
    Sso string
    Ssoadmin string
    Stepfunctions string
    Storagegateway string
    Sts string
    Swf string
    Synthetics string
    Timestreamwrite string
    Transcribe string
    Transcribeservice string
    Transfer string
    Verifiedpermissions string
    Vpclattice string
    Waf string
    Wafregional string
    Wafv2 string
    Worklink string
    Workspaces string
    Xray string
    accessanalyzer String
    account String
    acm String
    acmpca String
    amg String
    amp String
    amplify String
    apigateway String
    apigatewayv2 String
    appautoscaling String
    appconfig String
    appfabric String
    appflow String
    appintegrations String
    appintegrationsservice String
    applicationautoscaling String
    applicationinsights String
    appmesh String
    apprunner String
    appstream String
    appsync String
    athena String
    auditmanager String
    autoscaling String
    autoscalingplans String
    backup String
    batch String
    beanstalk String
    bedrock String
    budgets String
    ce String
    chime String
    chimesdkmediapipelines String
    chimesdkvoice String
    cleanrooms String
    cloud9 String
    cloudcontrol String
    cloudcontrolapi String
    cloudformation String
    cloudfront String
    cloudhsm String
    cloudhsmv2 String
    cloudsearch String
    cloudtrail String
    cloudwatch String
    cloudwatchevents String
    cloudwatchevidently String
    cloudwatchlog String
    cloudwatchlogs String
    cloudwatchobservabilityaccessmanager String
    cloudwatchrum String
    codeartifact String
    codebuild String
    codecatalyst String
    codecommit String
    codedeploy String
    codegurureviewer String
    codepipeline String
    codestarconnections String
    codestarnotifications String
    cognitoidentity String
    cognitoidentityprovider String
    cognitoidp String
    comprehend String
    computeoptimizer String
    config String
    configservice String
    connect String
    connectcases String
    controltower String
    costandusagereportservice String
    costexplorer String
    cur String
    customerprofiles String
    databasemigration String
    databasemigrationservice String
    dataexchange String
    datapipeline String
    datasync String
    dax String
    deploy String
    detective String
    devicefarm String
    directconnect String
    directoryservice String
    dlm String
    dms String
    docdb String
    docdbelastic String
    ds String
    dynamodb String
    ec2 String
    ecr String
    ecrpublic String
    ecs String
    efs String
    eks String
    elasticache String
    elasticbeanstalk 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
    firehose String
    fis String
    fms String
    fsx String
    gamelift String
    glacier String
    globalaccelerator String
    glue String
    grafana String
    greengrass String
    guardduty String
    healthlake String
    iam String
    identitystore String
    imagebuilder String
    inspector String
    inspector2 String
    inspectorv2 String
    internetmonitor String
    iot String
    iotanalytics String
    iotevents String
    ivs String
    ivschat String
    kafka String
    kafkaconnect String
    kendra String
    keyspaces String
    kinesis String
    kinesisanalytics String
    kinesisanalyticsv2 String
    kinesisvideo String
    kms String
    lakeformation String
    lambda String
    lex String
    lexmodelbuilding String
    lexmodelbuildingservice String
    lexmodels String
    lexmodelsv2 String
    lexv2models String
    licensemanager String
    lightsail String
    location String
    locationservice String
    logs String
    macie2 String
    managedgrafana String
    mediaconnect String
    mediaconvert String
    medialive String
    mediapackage String
    mediastore String
    memorydb String
    mq String
    msk String
    mwaa String
    neptune String
    networkfirewall String
    networkmanager String
    oam String
    opensearch String
    opensearchingestion String
    opensearchserverless String
    opensearchservice String
    opsworks String
    organizations String
    osis String
    outposts String
    pinpoint String
    pipes String
    pricing String
    prometheus String
    prometheusservice String
    qldb String
    quicksight String
    ram String
    rbin String
    rds String
    recyclebin String
    redshift String
    redshiftdata String
    redshiftdataapiservice String
    redshiftserverless String
    resourceexplorer2 String
    resourcegroups String
    resourcegroupstagging String
    resourcegroupstaggingapi String
    rolesanywhere String
    route53 String
    route53domains String
    route53recoverycontrolconfig String
    route53recoveryreadiness String
    route53resolver String
    rum String
    s3 String
    s3api String
    s3control String
    s3outposts String
    sagemaker String
    scheduler String
    schemas String
    sdb String
    secretsmanager String
    securityhub String
    securitylake String
    serverlessapplicationrepository String
    serverlessapprepo String
    serverlessrepo String
    servicecatalog String
    servicediscovery String
    servicequotas String
    ses String
    sesv2 String
    sfn String
    shield String
    signer String
    simpledb String
    sns String
    sqs String
    ssm String
    ssmcontacts String
    ssmincidents String
    sso String
    ssoadmin String
    stepfunctions String
    storagegateway String
    sts String
    swf String
    synthetics String
    timestreamwrite String
    transcribe String
    transcribeservice String
    transfer String
    verifiedpermissions String
    vpclattice String
    waf String
    wafregional String
    wafv2 String
    worklink String
    workspaces String
    xray String
    accessanalyzer string
    account string
    acm string
    acmpca string
    amg string
    amp string
    amplify string
    apigateway string
    apigatewayv2 string
    appautoscaling string
    appconfig string
    appfabric string
    appflow string
    appintegrations string
    appintegrationsservice string
    applicationautoscaling string
    applicationinsights string
    appmesh string
    apprunner string
    appstream string
    appsync string
    athena string
    auditmanager string
    autoscaling string
    autoscalingplans string
    backup string
    batch string
    beanstalk string
    bedrock string
    budgets string
    ce string
    chime string
    chimesdkmediapipelines string
    chimesdkvoice string
    cleanrooms string
    cloud9 string
    cloudcontrol string
    cloudcontrolapi string
    cloudformation string
    cloudfront string
    cloudhsm string
    cloudhsmv2 string
    cloudsearch string
    cloudtrail string
    cloudwatch string
    cloudwatchevents string
    cloudwatchevidently string
    cloudwatchlog string
    cloudwatchlogs string
    cloudwatchobservabilityaccessmanager string
    cloudwatchrum string
    codeartifact string
    codebuild string
    codecatalyst string
    codecommit string
    codedeploy string
    codegurureviewer string
    codepipeline string
    codestarconnections string
    codestarnotifications string
    cognitoidentity string
    cognitoidentityprovider string
    cognitoidp string
    comprehend string
    computeoptimizer string
    config string
    configservice string
    connect string
    connectcases string
    controltower string
    costandusagereportservice string
    costexplorer string
    cur string
    customerprofiles string
    databasemigration string
    databasemigrationservice string
    dataexchange string
    datapipeline string
    datasync string
    dax string
    deploy string
    detective string
    devicefarm string
    directconnect string
    directoryservice string
    dlm string
    dms string
    docdb string
    docdbelastic string
    ds string
    dynamodb string
    ec2 string
    ecr string
    ecrpublic string
    ecs string
    efs string
    eks string
    elasticache string
    elasticbeanstalk 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
    firehose string
    fis string
    fms string
    fsx string
    gamelift string
    glacier string
    globalaccelerator string
    glue string
    grafana string
    greengrass string
    guardduty string
    healthlake string
    iam string
    identitystore string
    imagebuilder string
    inspector string
    inspector2 string
    inspectorv2 string
    internetmonitor string
    iot string
    iotanalytics string
    iotevents string
    ivs string
    ivschat string
    kafka string
    kafkaconnect string
    kendra string
    keyspaces string
    kinesis string
    kinesisanalytics string
    kinesisanalyticsv2 string
    kinesisvideo string
    kms string
    lakeformation string
    lambda string
    lex string
    lexmodelbuilding string
    lexmodelbuildingservice string
    lexmodels string
    lexmodelsv2 string
    lexv2models string
    licensemanager string
    lightsail string
    location string
    locationservice string
    logs string
    macie2 string
    managedgrafana string
    mediaconnect string
    mediaconvert string
    medialive string
    mediapackage string
    mediastore string
    memorydb string
    mq string
    msk string
    mwaa string
    neptune string
    networkfirewall string
    networkmanager string
    oam string
    opensearch string
    opensearchingestion string
    opensearchserverless string
    opensearchservice string
    opsworks string
    organizations string
    osis string
    outposts string
    pinpoint string
    pipes string
    pricing string
    prometheus string
    prometheusservice string
    qldb string
    quicksight string
    ram string
    rbin string
    rds string
    recyclebin string
    redshift string
    redshiftdata string
    redshiftdataapiservice string
    redshiftserverless string
    resourceexplorer2 string
    resourcegroups string
    resourcegroupstagging string
    resourcegroupstaggingapi string
    rolesanywhere string
    route53 string
    route53domains string
    route53recoverycontrolconfig string
    route53recoveryreadiness string
    route53resolver string
    rum string
    s3 string
    s3api string
    s3control string
    s3outposts string
    sagemaker string
    scheduler string
    schemas string
    sdb string
    secretsmanager string
    securityhub string
    securitylake string
    serverlessapplicationrepository string
    serverlessapprepo string
    serverlessrepo string
    servicecatalog string
    servicediscovery string
    servicequotas string
    ses string
    sesv2 string
    sfn string
    shield string
    signer string
    simpledb string
    sns string
    sqs string
    ssm string
    ssmcontacts string
    ssmincidents string
    sso string
    ssoadmin string
    stepfunctions string
    storagegateway string
    sts string
    swf string
    synthetics string
    timestreamwrite string
    transcribe string
    transcribeservice string
    transfer string
    verifiedpermissions string
    vpclattice string
    waf string
    wafregional string
    wafv2 string
    worklink string
    workspaces string
    xray string
    accessanalyzer str
    account str
    acm str
    acmpca str
    amg str
    amp str
    amplify str
    apigateway str
    apigatewayv2 str
    appautoscaling str
    appconfig str
    appfabric str
    appflow str
    appintegrations str
    appintegrationsservice str
    applicationautoscaling str
    applicationinsights str
    appmesh str
    apprunner str
    appstream str
    appsync str
    athena str
    auditmanager str
    autoscaling str
    autoscalingplans str
    backup str
    batch str
    beanstalk str
    bedrock str
    budgets str
    ce str
    chime str
    chimesdkmediapipelines str
    chimesdkvoice str
    cleanrooms str
    cloud9 str
    cloudcontrol str
    cloudcontrolapi str
    cloudformation str
    cloudfront str
    cloudhsm str
    cloudhsmv2 str
    cloudsearch str
    cloudtrail str
    cloudwatch str
    cloudwatchevents str
    cloudwatchevidently str
    cloudwatchlog str
    cloudwatchlogs str
    cloudwatchobservabilityaccessmanager str
    cloudwatchrum str
    codeartifact str
    codebuild str
    codecatalyst str
    codecommit str
    codedeploy str
    codegurureviewer str
    codepipeline str
    codestarconnections str
    codestarnotifications str
    cognitoidentity str
    cognitoidentityprovider str
    cognitoidp str
    comprehend str
    computeoptimizer str
    config str
    configservice str
    connect str
    connectcases str
    controltower str
    costandusagereportservice str
    costexplorer str
    cur str
    customerprofiles str
    databasemigration str
    databasemigrationservice str
    dataexchange str
    datapipeline str
    datasync str
    dax str
    deploy str
    detective str
    devicefarm str
    directconnect str
    directoryservice str
    dlm str
    dms str
    docdb str
    docdbelastic str
    ds str
    dynamodb str
    ec2 str
    ecr str
    ecrpublic str
    ecs str
    efs str
    eks str
    elasticache str
    elasticbeanstalk 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
    firehose str
    fis str
    fms str
    fsx str
    gamelift str
    glacier str
    globalaccelerator str
    glue str
    grafana str
    greengrass str
    guardduty str
    healthlake str
    iam str
    identitystore str
    imagebuilder str
    inspector str
    inspector2 str
    inspectorv2 str
    internetmonitor str
    iot str
    iotanalytics str
    iotevents str
    ivs str
    ivschat str
    kafka str
    kafkaconnect str
    kendra str
    keyspaces str
    kinesis str
    kinesisanalytics str
    kinesisanalyticsv2 str
    kinesisvideo str
    kms str
    lakeformation str
    lambda_ str
    lex str
    lexmodelbuilding str
    lexmodelbuildingservice str
    lexmodels str
    lexmodelsv2 str
    lexv2models str
    licensemanager str
    lightsail str
    location str
    locationservice str
    logs str
    macie2 str
    managedgrafana str
    mediaconnect str
    mediaconvert str
    medialive str
    mediapackage str
    mediastore str
    memorydb str
    mq str
    msk str
    mwaa str
    neptune str
    networkfirewall str
    networkmanager str
    oam str
    opensearch str
    opensearchingestion str
    opensearchserverless str
    opensearchservice str
    opsworks str
    organizations str
    osis str
    outposts str
    pinpoint str
    pipes str
    pricing str
    prometheus str
    prometheusservice str
    qldb str
    quicksight str
    ram str
    rbin str
    rds str
    recyclebin str
    redshift str
    redshiftdata str
    redshiftdataapiservice str
    redshiftserverless str
    resourceexplorer2 str
    resourcegroups str
    resourcegroupstagging str
    resourcegroupstaggingapi str
    rolesanywhere str
    route53 str
    route53domains str
    route53recoverycontrolconfig str
    route53recoveryreadiness str
    route53resolver str
    rum str
    s3 str
    s3api str
    s3control str
    s3outposts str
    sagemaker str
    scheduler str
    schemas str
    sdb str
    secretsmanager str
    securityhub str
    securitylake str
    serverlessapplicationrepository str
    serverlessapprepo str
    serverlessrepo str
    servicecatalog str
    servicediscovery str
    servicequotas str
    ses str
    sesv2 str
    sfn str
    shield str
    signer str
    simpledb str
    sns str
    sqs str
    ssm str
    ssmcontacts str
    ssmincidents str
    sso str
    ssoadmin str
    stepfunctions str
    storagegateway str
    sts str
    swf str
    synthetics str
    timestreamwrite str
    transcribe str
    transcribeservice str
    transfer str
    verifiedpermissions str
    vpclattice str
    waf str
    wafregional str
    wafv2 str
    worklink str
    workspaces str
    xray str
    accessanalyzer String
    account String
    acm String
    acmpca String
    amg String
    amp String
    amplify String
    apigateway String
    apigatewayv2 String
    appautoscaling String
    appconfig String
    appfabric String
    appflow String
    appintegrations String
    appintegrationsservice String
    applicationautoscaling String
    applicationinsights String
    appmesh String
    apprunner String
    appstream String
    appsync String
    athena String
    auditmanager String
    autoscaling String
    autoscalingplans String
    backup String
    batch String
    beanstalk String
    bedrock String
    budgets String
    ce String
    chime String
    chimesdkmediapipelines String
    chimesdkvoice String
    cleanrooms String
    cloud9 String
    cloudcontrol String
    cloudcontrolapi String
    cloudformation String
    cloudfront String
    cloudhsm String
    cloudhsmv2 String
    cloudsearch String
    cloudtrail String
    cloudwatch String
    cloudwatchevents String
    cloudwatchevidently String
    cloudwatchlog String
    cloudwatchlogs String
    cloudwatchobservabilityaccessmanager String
    cloudwatchrum String
    codeartifact String
    codebuild String
    codecatalyst String
    codecommit String
    codedeploy String
    codegurureviewer String
    codepipeline String
    codestarconnections String
    codestarnotifications String
    cognitoidentity String
    cognitoidentityprovider String
    cognitoidp String
    comprehend String
    computeoptimizer String
    config String
    configservice String
    connect String
    connectcases String
    controltower String
    costandusagereportservice String
    costexplorer String
    cur String
    customerprofiles String
    databasemigration String
    databasemigrationservice String
    dataexchange String
    datapipeline String
    datasync String
    dax String
    deploy String
    detective String
    devicefarm String
    directconnect String
    directoryservice String
    dlm String
    dms String
    docdb String
    docdbelastic String
    ds String
    dynamodb String
    ec2 String
    ecr String
    ecrpublic String
    ecs String
    efs String
    eks String
    elasticache String
    elasticbeanstalk 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
    firehose String
    fis String
    fms String
    fsx String
    gamelift String
    glacier String
    globalaccelerator String
    glue String
    grafana String
    greengrass String
    guardduty String
    healthlake String
    iam String
    identitystore String
    imagebuilder String
    inspector String
    inspector2 String
    inspectorv2 String
    internetmonitor String
    iot String
    iotanalytics String
    iotevents String
    ivs String
    ivschat String
    kafka String
    kafkaconnect String
    kendra String
    keyspaces String
    kinesis String
    kinesisanalytics String
    kinesisanalyticsv2 String
    kinesisvideo String
    kms String
    lakeformation String
    lambda String
    lex String
    lexmodelbuilding String
    lexmodelbuildingservice String
    lexmodels String
    lexmodelsv2 String
    lexv2models String
    licensemanager String
    lightsail String
    location String
    locationservice String
    logs String
    macie2 String
    managedgrafana String
    mediaconnect String
    mediaconvert String
    medialive String
    mediapackage String
    mediastore String
    memorydb String
    mq String
    msk String
    mwaa String
    neptune String
    networkfirewall String
    networkmanager String
    oam String
    opensearch String
    opensearchingestion String
    opensearchserverless String
    opensearchservice String
    opsworks String
    organizations String
    osis String
    outposts String
    pinpoint String
    pipes String
    pricing String
    prometheus String
    prometheusservice String
    qldb String
    quicksight String
    ram String
    rbin String
    rds String
    recyclebin String
    redshift String
    redshiftdata String
    redshiftdataapiservice String
    redshiftserverless String
    resourceexplorer2 String
    resourcegroups String
    resourcegroupstagging String
    resourcegroupstaggingapi String
    rolesanywhere String
    route53 String
    route53domains String
    route53recoverycontrolconfig String
    route53recoveryreadiness String
    route53resolver String
    rum String
    s3 String
    s3api String
    s3control String
    s3outposts String
    sagemaker String
    scheduler String
    schemas String
    sdb String
    secretsmanager String
    securityhub String
    securitylake String
    serverlessapplicationrepository String
    serverlessapprepo String
    serverlessrepo String
    servicecatalog String
    servicediscovery String
    servicequotas String
    ses String
    sesv2 String
    sfn String
    shield String
    signer String
    simpledb String
    sns String
    sqs String
    ssm String
    ssmcontacts String
    ssmincidents String
    sso String
    ssoadmin String
    stepfunctions String
    storagegateway String
    sts String
    swf String
    synthetics String
    timestreamwrite String
    transcribe String
    transcribeservice String
    transfer String
    verifiedpermissions String
    vpclattice String
    waf String
    wafregional String
    wafv2 String
    worklink String
    workspaces String
    xray String

    ProviderIgnoreTags, ProviderIgnoreTagsArgs

    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.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.12.2 published on Wednesday, Nov 29, 2023 by Pulumi