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:
- Access
Key string The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- Allowed
Account List<string>Ids - Assume
Role ProviderAssume Role Args - Assume
Role ProviderWith Web Identity Assume Role With Web Identity Args - Custom
Ca stringBundle File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.)- Provider
Default Tags Args Configuration block with settings to default resource tags across all resources.
- Ec2Metadata
Service stringEndpoint Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable.- Ec2Metadata
Service stringEndpoint Mode Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable.- Endpoints
List<Provider
Endpoint Args> - Forbidden
Account List<string>Ids - Http
Proxy string The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the
HTTP_PROXY
orHTTPS_PROXY
environment variables.- Provider
Ignore Tags Args 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 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
- S3Force
Path boolStyle 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.
Use s3_use_path_style instead.
- S3Use
Path boolStyle 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 string The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- List<string>
List of paths to shared config files. If not set, defaults to [~/.aws/config].
- string
The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.
Use shared_credentials_files instead.
- List<string>
List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- Skip
Credentials boolValidation Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- Skip
Get boolEc2Platforms Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.
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 boolApi Check Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- Skip
Region boolValidation 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 boolAccount Id Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- Sts
Region 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.
- Use
Dualstack boolEndpoint Resolve an endpoint with DualStack capability
- Use
Fips boolEndpoint Resolve an endpoint with FIPS capability
- Access
Key string The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- Allowed
Account []stringIds - Assume
Role ProviderAssume Role Args - Assume
Role ProviderWith Web Identity Assume Role With Web Identity Args - Custom
Ca stringBundle File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.)- Provider
Default Tags Args Configuration block with settings to default resource tags across all resources.
- Ec2Metadata
Service stringEndpoint Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable.- Ec2Metadata
Service stringEndpoint Mode Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable.- Endpoints
[]Provider
Endpoint Args - Forbidden
Account []stringIds - Http
Proxy string The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the
HTTP_PROXY
orHTTPS_PROXY
environment variables.- Provider
Ignore Tags Args 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 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
- S3Force
Path boolStyle 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.
Use s3_use_path_style instead.
- S3Use
Path boolStyle 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 string The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- []string
List of paths to shared config files. If not set, defaults to [~/.aws/config].
- string
The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.
Use shared_credentials_files instead.
- []string
List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- Skip
Credentials boolValidation Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- Skip
Get boolEc2Platforms Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.
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 boolApi Check Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- Skip
Region boolValidation 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 boolAccount Id Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- Sts
Region 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.
- Use
Dualstack boolEndpoint Resolve an endpoint with DualStack capability
- Use
Fips boolEndpoint Resolve an endpoint with FIPS capability
- access
Key String The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- allowed
Account List<String>Ids - assume
Role ProviderAssume Role Args - assume
Role ProviderWith Web Identity Assume Role With Web Identity Args - custom
Ca StringBundle File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.)- Provider
Default Tags Args Configuration block with settings to default resource tags across all resources.
- ec2Metadata
Service StringEndpoint Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable.- ec2Metadata
Service StringEndpoint Mode Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable.- endpoints
List<Provider
Endpoint Args> - forbidden
Account List<String>Ids - http
Proxy String The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the
HTTP_PROXY
orHTTPS_PROXY
environment variables.- Provider
Ignore Tags Args 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
- max
Retries 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
- s3Force
Path BooleanStyle 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.
Use s3_use_path_style instead.
- s3Use
Path BooleanStyle 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 String The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- List<String>
List of paths to shared config files. If not set, defaults to [~/.aws/config].
- String
The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.
Use shared_credentials_files instead.
- List<String>
List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip
Credentials BooleanValidation Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip
Get BooleanEc2Platforms Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.
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 BooleanApi Check Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip
Region BooleanValidation 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 BooleanAccount Id Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- sts
Region 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.
- use
Dualstack BooleanEndpoint Resolve an endpoint with DualStack capability
- use
Fips BooleanEndpoint Resolve an endpoint with FIPS capability
- access
Key string The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- allowed
Account string[]Ids - assume
Role ProviderAssume Role Args - assume
Role ProviderWith Web Identity Assume Role With Web Identity Args - custom
Ca stringBundle File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.)- Provider
Default Tags Args Configuration block with settings to default resource tags across all resources.
- ec2Metadata
Service stringEndpoint Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable.- ec2Metadata
Service stringEndpoint Mode Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable.- endpoints
Provider
Endpoint Args[] - forbidden
Account string[]Ids - http
Proxy string The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the
HTTP_PROXY
orHTTPS_PROXY
environment variables.- Provider
Ignore Tags Args 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
- max
Retries 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
- s3Force
Path booleanStyle 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.
Use s3_use_path_style instead.
- s3Use
Path booleanStyle 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 string The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- string[]
List of paths to shared config files. If not set, defaults to [~/.aws/config].
- string
The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.
Use shared_credentials_files instead.
- string[]
List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip
Credentials booleanValidation Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip
Get booleanEc2Platforms Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.
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 booleanApi Check Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip
Region booleanValidation 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 booleanAccount Id Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- sts
Region 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.
- use
Dualstack booleanEndpoint Resolve an endpoint with DualStack capability
- use
Fips booleanEndpoint 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_ Sequence[str]ids - assume_
role ProviderAssume Role Args - assume_
role_ Providerwith_ web_ identity Assume Role With Web Identity Args - custom_
ca_ strbundle File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.)- Provider
Default Tags Args Configuration block with settings to default resource tags across all resources.
- ec2_
metadata_ strservice_ endpoint Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable.- ec2_
metadata_ strservice_ endpoint_ mode Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable.- endpoints
Sequence[Provider
Endpoint Args] - forbidden_
account_ Sequence[str]ids - http_
proxy str The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the
HTTP_PROXY
orHTTPS_PROXY
environment variables.- Provider
Ignore Tags Args 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_ boolpath_ style 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.
Use s3_use_path_style instead.
- s3_
use_ boolpath_ style 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.
- Sequence[str]
List of paths to shared config files. If not set, defaults to [~/.aws/config].
- str
The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.
Use shared_credentials_files instead.
- Sequence[str]
List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip_
credentials_ boolvalidation Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip_
get_ boolec2_ platforms Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.
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_ boolapi_ check Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip_
region_ boolvalidation 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_ boolaccount_ id 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_ boolendpoint Resolve an endpoint with DualStack capability
- use_
fips_ boolendpoint Resolve an endpoint with FIPS capability
- access
Key String The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- allowed
Account List<String>Ids - assume
Role Property Map - assume
Role Property MapWith Web Identity - custom
Ca StringBundle File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.)- Property Map
Configuration block with settings to default resource tags across all resources.
- ec2Metadata
Service StringEndpoint Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable.- ec2Metadata
Service StringEndpoint Mode Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable.- endpoints List<Property Map>
- forbidden
Account List<String>Ids - http
Proxy String The address of an HTTP proxy to use when accessing the AWS API. Can also be configured using the
HTTP_PROXY
orHTTPS_PROXY
environment variables.- 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
- max
Retries 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
- s3Force
Path BooleanStyle 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.
Use s3_use_path_style instead.
- s3Use
Path BooleanStyle 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 String The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- List<String>
List of paths to shared config files. If not set, defaults to [~/.aws/config].
- String
The path to the shared credentials file. If not set, defaults to ~/.aws/credentials.
Use shared_credentials_files instead.
- List<String>
List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip
Credentials BooleanValidation Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip
Get BooleanEc2Platforms Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.
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 BooleanApi Check Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip
Region BooleanValidation 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 BooleanAccount Id Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- sts
Region 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.
- use
Dualstack BooleanEndpoint Resolve an endpoint with DualStack capability
- use
Fips BooleanEndpoint 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
- Duration
Seconds int Use assume_role.duration instead
- External
Id string - Policy string
- Policy
Arns List<string> - Role
Arn string - Session
Name string - Source
Identity string - Dictionary<string, string>
- Transitive
Tag List<string>Keys
- Duration string
- Duration
Seconds int Use assume_role.duration instead
- External
Id string - Policy string
- Policy
Arns []string - Role
Arn string - Session
Name string - Source
Identity string - map[string]string
- Transitive
Tag []stringKeys
- duration String
- duration
Seconds Integer Use assume_role.duration instead
- external
Id String - policy String
- policy
Arns List<String> - role
Arn String - session
Name String - source
Identity String - Map<String,String>
- transitive
Tag List<String>Keys
- duration string
- duration
Seconds number Use assume_role.duration instead
- external
Id string - policy string
- policy
Arns string[] - role
Arn string - session
Name string - source
Identity string - {[key: string]: string}
- transitive
Tag string[]Keys
- duration str
- duration_
seconds int Use assume_role.duration instead
- external_
id str - policy str
- policy_
arns Sequence[str] - role_
arn str - session_
name str - source_
identity str - Mapping[str, str]
- transitive_
tag_ Sequence[str]keys
- duration String
- duration
Seconds Number Use assume_role.duration instead
- external
Id String - policy String
- policy
Arns List<String> - role
Arn String - session
Name String - source
Identity String - Map<String>
- transitive
Tag List<String>Keys
ProviderAssumeRoleWithWebIdentity
- Duration string
- Policy string
- Policy
Arns List<string> - Role
Arn string - Session
Name string - Web
Identity stringToken - Web
Identity stringToken File
- Duration string
- Policy string
- Policy
Arns []string - Role
Arn string - Session
Name string - Web
Identity stringToken - Web
Identity stringToken File
- duration String
- policy String
- policy
Arns List<String> - role
Arn String - session
Name String - web
Identity StringToken - web
Identity StringToken File
- duration string
- policy string
- policy
Arns string[] - role
Arn string - session
Name string - web
Identity stringToken - web
Identity stringToken File
- duration str
- policy str
- policy_
arns Sequence[str] - role_
arn str - session_
name str - web_
identity_ strtoken - web_
identity_ strtoken_ file
- duration String
- policy String
- policy
Arns List<String> - role
Arn String - session
Name String - web
Identity StringToken - web
Identity StringToken File
ProviderDefaultTags
- Dictionary<string, string>
- map[string]string
- Map<String,String>
- {[key: string]: string}
- Mapping[str, str]
- 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
- Key
Prefixes List<string> - Keys List<string>
- Key
Prefixes []string - Keys []string
- key
Prefixes List<String> - keys List<String>
- key
Prefixes string[] - keys string[]
- key_
prefixes Sequence[str] - keys Sequence[str]
- key
Prefixes 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.