aws-native.Provider
Explore with Pulumi AI
The provider type for the AWS native 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,
default_tags: Optional[ProviderDefaultTagsArgs] = None,
endpoints: Optional[Sequence[ProviderEndpointArgs]] = None,
forbidden_account_ids: Optional[Sequence[str]] = None,
ignore_tags: Optional[ProviderIgnoreTagsArgs] = None,
insecure: Optional[bool] = None,
max_retries: Optional[int] = None,
profile: Optional[str] = None,
region: Optional[str] = None,
role_arn: Optional[str] = None,
s3_force_path_style: Optional[bool] = None,
secret_key: Optional[str] = None,
shared_credentials_file: Optional[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,
token: Optional[str] = None)
@overload
def Provider(resource_name: str,
args: ProviderArgs,
opts: Optional[ResourceOptions] = None)
func NewProvider(ctx *Context, name string, args ProviderArgs, opts ...ResourceOption) (*Provider, error)
public Provider(string name, ProviderArgs args, CustomResourceOptions? opts = null)
public Provider(String name, ProviderArgs args)
public Provider(String name, ProviderArgs args, CustomResourceOptions options)
type: pulumi:providers:aws-native
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:
- 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
- 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 List of allowed AWS account IDs to prevent you from mistakenly using an incorrect one. Conflicts with
forbiddenAccountIds
.- Assume
Role Pulumi.Aws Native. Inputs. Provider Assume Role Args Configuration for retrieving temporary credentials from the STS service.
- Pulumi.
Aws Native. Inputs. Provider Default Tags Args Configuration block with resource tag settings to apply across all resources handled by this provider. This is designed to replace redundant per-resource
tags
configurations. Provider tags can be overridden with new values, but not excluded from specific resources. To override provider tag values, use thetags
argument within a resource to configure new tag values for matching keys.- Endpoints
List<Pulumi.
Aws Native. Inputs. Provider Endpoint Args> Configuration block for customizing service endpoints.
- Forbidden
Account List<string>Ids List of forbidden AWS account IDs to prevent you from mistakenly using the wrong one (and potentially end up destroying a live environment). Conflicts with
allowedAccountIds
.- Pulumi.
Aws Native. Inputs. Provider Ignore Tags Args Configuration block with resource tag settings to ignore across all resources handled by this provider (except any individual service tag resources such as
ec2.Tag
) for situations where external systems are managing certain resource tags.- 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. It can also be sourced from the following environment variable:AWS_PROFILE
- Role
Arn string The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role for Cloud Control API to use when performing this resource operation. Note, this is a unique feature for server side security enforcement, not to be confused with assumeRole, which is used to obtain temporary client credentials. If you do not specify a role, Cloud Control API uses a temporary session created using your AWS user credentials instead.
- S3Force
Path boolStyle Set this to true to force the request to use path-style addressing, i.e.,
http://s3.amazonaws.com/BUCKET/KEY
. By default, the S3 client will use virtual hosted bucket addressing when possible (http://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
The path to the shared credentials file. If not set this defaults to
~/.aws/credentials
. It can also be sourced from the following environment variable:AWS_SHARED_CREDENTIALS_FILE
- 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.- Skip
Metadata boolApi Check Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. Setting to true prevents Pulumi from authenticating via the Metadata API. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
- Skip
Region boolValidation Skip static validation of region name. Used by users of alternative AWS-like APIs or users with access to regions that are not public.
- 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.
- Token string
Session token for validating temporary credentials. Typically provided after successful identity federation or Multi-Factor Authentication (MFA) login. With MFA login, this is the session token provided afterward, not the 6 digit MFA code used to get temporary credentials.
- 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
- 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 List of allowed AWS account IDs to prevent you from mistakenly using an incorrect one. Conflicts with
forbiddenAccountIds
.- Assume
Role ProviderAssume Role Args Configuration for retrieving temporary credentials from the STS service.
- Provider
Default Tags Args Configuration block with resource tag settings to apply across all resources handled by this provider. This is designed to replace redundant per-resource
tags
configurations. Provider tags can be overridden with new values, but not excluded from specific resources. To override provider tag values, use thetags
argument within a resource to configure new tag values for matching keys.- Endpoints
[]Provider
Endpoint Args Configuration block for customizing service endpoints.
- Forbidden
Account []stringIds List of forbidden AWS account IDs to prevent you from mistakenly using the wrong one (and potentially end up destroying a live environment). Conflicts with
allowedAccountIds
.- Provider
Ignore Tags Args Configuration block with resource tag settings to ignore across all resources handled by this provider (except any individual service tag resources such as
ec2.Tag
) for situations where external systems are managing certain resource tags.- 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. It can also be sourced from the following environment variable:AWS_PROFILE
- Role
Arn string The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role for Cloud Control API to use when performing this resource operation. Note, this is a unique feature for server side security enforcement, not to be confused with assumeRole, which is used to obtain temporary client credentials. If you do not specify a role, Cloud Control API uses a temporary session created using your AWS user credentials instead.
- S3Force
Path boolStyle Set this to true to force the request to use path-style addressing, i.e.,
http://s3.amazonaws.com/BUCKET/KEY
. By default, the S3 client will use virtual hosted bucket addressing when possible (http://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
The path to the shared credentials file. If not set this defaults to
~/.aws/credentials
. It can also be sourced from the following environment variable:AWS_SHARED_CREDENTIALS_FILE
- 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.- Skip
Metadata boolApi Check Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. Setting to true prevents Pulumi from authenticating via the Metadata API. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
- Skip
Region boolValidation Skip static validation of region name. Used by users of alternative AWS-like APIs or users with access to regions that are not public.
- 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.
- Token string
Session token for validating temporary credentials. Typically provided after successful identity federation or Multi-Factor Authentication (MFA) login. With MFA login, this is the session token provided afterward, not the 6 digit MFA code used to get temporary credentials.
- 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
- 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 List of allowed AWS account IDs to prevent you from mistakenly using an incorrect one. Conflicts with
forbiddenAccountIds
.- assume
Role ProviderAssume Role Args Configuration for retrieving temporary credentials from the STS service.
- Provider
Default Tags Args Configuration block with resource tag settings to apply across all resources handled by this provider. This is designed to replace redundant per-resource
tags
configurations. Provider tags can be overridden with new values, but not excluded from specific resources. To override provider tag values, use thetags
argument within a resource to configure new tag values for matching keys.- endpoints
List<Provider
Endpoint Args> Configuration block for customizing service endpoints.
- forbidden
Account List<String>Ids List of forbidden AWS account IDs to prevent you from mistakenly using the wrong one (and potentially end up destroying a live environment). Conflicts with
allowedAccountIds
.- Provider
Ignore Tags Args Configuration block with resource tag settings to ignore across all resources handled by this provider (except any individual service tag resources such as
ec2.Tag
) for situations where external systems are managing certain resource tags.- 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. It can also be sourced from the following environment variable:AWS_PROFILE
- role
Arn String The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role for Cloud Control API to use when performing this resource operation. Note, this is a unique feature for server side security enforcement, not to be confused with assumeRole, which is used to obtain temporary client credentials. If you do not specify a role, Cloud Control API uses a temporary session created using your AWS user credentials instead.
- s3Force
Path BooleanStyle Set this to true to force the request to use path-style addressing, i.e.,
http://s3.amazonaws.com/BUCKET/KEY
. By default, the S3 client will use virtual hosted bucket addressing when possible (http://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
The path to the shared credentials file. If not set this defaults to
~/.aws/credentials
. It can also be sourced from the following environment variable:AWS_SHARED_CREDENTIALS_FILE
- 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.- skip
Metadata BooleanApi Check Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. Setting to true prevents Pulumi from authenticating via the Metadata API. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
- skip
Region BooleanValidation Skip static validation of region name. Used by users of alternative AWS-like APIs or users with access to regions that are not public.
- 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.
- token String
Session token for validating temporary credentials. Typically provided after successful identity federation or Multi-Factor Authentication (MFA) login. With MFA login, this is the session token provided afterward, not the 6 digit MFA code used to get temporary credentials.
- 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
- 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 List of allowed AWS account IDs to prevent you from mistakenly using an incorrect one. Conflicts with
forbiddenAccountIds
.- assume
Role ProviderAssume Role Args Configuration for retrieving temporary credentials from the STS service.
- Provider
Default Tags Args Configuration block with resource tag settings to apply across all resources handled by this provider. This is designed to replace redundant per-resource
tags
configurations. Provider tags can be overridden with new values, but not excluded from specific resources. To override provider tag values, use thetags
argument within a resource to configure new tag values for matching keys.- endpoints
Provider
Endpoint Args[] Configuration block for customizing service endpoints.
- forbidden
Account string[]Ids List of forbidden AWS account IDs to prevent you from mistakenly using the wrong one (and potentially end up destroying a live environment). Conflicts with
allowedAccountIds
.- Provider
Ignore Tags Args Configuration block with resource tag settings to ignore across all resources handled by this provider (except any individual service tag resources such as
ec2.Tag
) for situations where external systems are managing certain resource tags.- 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. It can also be sourced from the following environment variable:AWS_PROFILE
- role
Arn string The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role for Cloud Control API to use when performing this resource operation. Note, this is a unique feature for server side security enforcement, not to be confused with assumeRole, which is used to obtain temporary client credentials. If you do not specify a role, Cloud Control API uses a temporary session created using your AWS user credentials instead.
- s3Force
Path booleanStyle Set this to true to force the request to use path-style addressing, i.e.,
http://s3.amazonaws.com/BUCKET/KEY
. By default, the S3 client will use virtual hosted bucket addressing when possible (http://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
The path to the shared credentials file. If not set this defaults to
~/.aws/credentials
. It can also be sourced from the following environment variable:AWS_SHARED_CREDENTIALS_FILE
- 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.- skip
Metadata booleanApi Check Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. Setting to true prevents Pulumi from authenticating via the Metadata API. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
- skip
Region booleanValidation Skip static validation of region name. Used by users of alternative AWS-like APIs or users with access to regions that are not public.
- 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.
- token string
Session token for validating temporary credentials. Typically provided after successful identity federation or Multi-Factor Authentication (MFA) login. With MFA login, this is the session token provided afterward, not the 6 digit MFA code used to get temporary credentials.
- 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
- 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 List of allowed AWS account IDs to prevent you from mistakenly using an incorrect one. Conflicts with
forbiddenAccountIds
.- assume_
role ProviderAssume Role Args Configuration for retrieving temporary credentials from the STS service.
- Provider
Default Tags Args Configuration block with resource tag settings to apply across all resources handled by this provider. This is designed to replace redundant per-resource
tags
configurations. Provider tags can be overridden with new values, but not excluded from specific resources. To override provider tag values, use thetags
argument within a resource to configure new tag values for matching keys.- endpoints
Sequence[Provider
Endpoint Args] Configuration block for customizing service endpoints.
- forbidden_
account_ Sequence[str]ids List of forbidden AWS account IDs to prevent you from mistakenly using the wrong one (and potentially end up destroying a live environment). Conflicts with
allowedAccountIds
.- Provider
Ignore Tags Args Configuration block with resource tag settings to ignore across all resources handled by this provider (except any individual service tag resources such as
ec2.Tag
) for situations where external systems are managing certain resource tags.- 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. It can also be sourced from the following environment variable:AWS_PROFILE
- role_
arn str The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role for Cloud Control API to use when performing this resource operation. Note, this is a unique feature for server side security enforcement, not to be confused with assumeRole, which is used to obtain temporary client credentials. If you do not specify a role, Cloud Control API uses a temporary session created using your AWS user credentials instead.
- s3_
force_ boolpath_ style Set this to true to force the request to use path-style addressing, i.e.,
http://s3.amazonaws.com/BUCKET/KEY
. By default, the S3 client will use virtual hosted bucket addressing when possible (http://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.
- str
The path to the shared credentials file. If not set this defaults to
~/.aws/credentials
. It can also be sourced from the following environment variable:AWS_SHARED_CREDENTIALS_FILE
- 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.- skip_
metadata_ boolapi_ check Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. Setting to true prevents Pulumi from authenticating via the Metadata API. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
- skip_
region_ boolvalidation Skip static validation of region name. Used by users of alternative AWS-like APIs or users with access to regions that are not public.
- 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.
- token str
Session token for validating temporary credentials. Typically provided after successful identity federation or Multi-Factor Authentication (MFA) login. With MFA login, this is the session token provided afterward, not the 6 digit MFA code used to get temporary credentials.
- 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
- 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 List of allowed AWS account IDs to prevent you from mistakenly using an incorrect one. Conflicts with
forbiddenAccountIds
.- assume
Role Property Map Configuration for retrieving temporary credentials from the STS service.
- Property Map
Configuration block with resource tag settings to apply across all resources handled by this provider. This is designed to replace redundant per-resource
tags
configurations. Provider tags can be overridden with new values, but not excluded from specific resources. To override provider tag values, use thetags
argument within a resource to configure new tag values for matching keys.- endpoints List<Property Map>
Configuration block for customizing service endpoints.
- forbidden
Account List<String>Ids List of forbidden AWS account IDs to prevent you from mistakenly using the wrong one (and potentially end up destroying a live environment). Conflicts with
allowedAccountIds
.- Property Map
Configuration block with resource tag settings to ignore across all resources handled by this provider (except any individual service tag resources such as
ec2.Tag
) for situations where external systems are managing certain resource tags.- 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. It can also be sourced from the following environment variable:AWS_PROFILE
- role
Arn String The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role for Cloud Control API to use when performing this resource operation. Note, this is a unique feature for server side security enforcement, not to be confused with assumeRole, which is used to obtain temporary client credentials. If you do not specify a role, Cloud Control API uses a temporary session created using your AWS user credentials instead.
- s3Force
Path BooleanStyle Set this to true to force the request to use path-style addressing, i.e.,
http://s3.amazonaws.com/BUCKET/KEY
. By default, the S3 client will use virtual hosted bucket addressing when possible (http://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
The path to the shared credentials file. If not set this defaults to
~/.aws/credentials
. It can also be sourced from the following environment variable:AWS_SHARED_CREDENTIALS_FILE
- 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.- skip
Metadata BooleanApi Check Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. Setting to true prevents Pulumi from authenticating via the Metadata API. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
- skip
Region BooleanValidation Skip static validation of region name. Used by users of alternative AWS-like APIs or users with access to regions that are not public.
- 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.
- token String
Session token for validating temporary credentials. Typically provided after successful identity federation or Multi-Factor Authentication (MFA) login. With MFA login, this is the session token provided afterward, not the 6 digit MFA code used to get temporary credentials.
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
Seconds int Number of seconds to restrict the assume role session duration.
- External
Id string External identifier to use when assuming the role.
- Policy string
IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- Policy
Arns List<string> Set of Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the role.
- Role
Arn string Amazon Resource Name (ARN) of the IAM Role to assume.
- Session
Name string Session name to use when assuming the role.
- Dictionary<string, string>
Map of assume role session tags.
- Transitive
Tag List<string>Keys A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain.
- Duration
Seconds int Number of seconds to restrict the assume role session duration.
- External
Id string External identifier to use when assuming the role.
- Policy string
IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- Policy
Arns []string Set of Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the role.
- Role
Arn string Amazon Resource Name (ARN) of the IAM Role to assume.
- Session
Name string Session name to use when assuming the role.
- map[string]string
Map of assume role session tags.
- Transitive
Tag []stringKeys A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain.
- duration
Seconds Integer Number of seconds to restrict the assume role session duration.
- external
Id String External identifier to use when assuming the role.
- policy String
IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns List<String> Set of Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the role.
- role
Arn String Amazon Resource Name (ARN) of the IAM Role to assume.
- session
Name String Session name to use when assuming the role.
- Map<String,String>
Map of assume role session tags.
- transitive
Tag List<String>Keys A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain.
- duration
Seconds number Number of seconds to restrict the assume role session duration.
- external
Id string External identifier to use when assuming the role.
- policy string
IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns string[] Set of Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the role.
- role
Arn string Amazon Resource Name (ARN) of the IAM Role to assume.
- session
Name string Session name to use when assuming the role.
- {[key: string]: string}
Map of assume role session tags.
- transitive
Tag string[]Keys A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain.
- duration_
seconds int Number of seconds to restrict the assume role session duration.
- external_
id str External identifier to use when assuming the role.
- policy str
IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy_
arns Sequence[str] Set of Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the role.
- role_
arn str Amazon Resource Name (ARN) of the IAM Role to assume.
- session_
name str Session name to use when assuming the role.
- Mapping[str, str]
Map of assume role session tags.
- transitive_
tag_ Sequence[str]keys A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain.
- duration
Seconds Number Number of seconds to restrict the assume role session duration.
- external
Id String External identifier to use when assuming the role.
- policy String
IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns List<String> Set of Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the role.
- role
Arn String Amazon Resource Name (ARN) of the IAM Role to assume.
- session
Name String Session name to use when assuming the role.
- Map<String>
Map of assume role session tags.
- transitive
Tag List<String>Keys A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain.
ProviderDefaultTags
- Dictionary<string, string>
A group of tags to set across all resources.
- map[string]string
A group of tags to set across all resources.
- Map<String,String>
A group of tags to set across all resources.
- {[key: string]: string}
A group of tags to set across all resources.
- Mapping[str, str]
A group of tags to set across all resources.
- Map<String>
A group of tags to set across all resources.
ProviderEndpoint
- Accessanalyzer string
Override the default endpoint for AWS Access Analyzer
- Acm string
Override the default endpoint for AWS Certificate Manager
- Acmpca string
Override the default endpoint for AWS Certificate Manager Private Certificate Authority
- Amplify string
Override the default endpoint for AWS Amplify Console
- Appconfig string
Override the default endpoint for AWS AppConfig
- Applicationautoscaling string
Override the default endpoint for AWS Application Auto Scaling
- Applicationinsights string
Override the default endpoint for AWS CloudWatch Application Insights
- Appmesh string
Override the default endpoint for AWS App Mesh
- Apprunner string
Override the default endpoint for AWS App Runner
- Appstream string
Override the default endpoint for AWS AppStream 2.0
- Appsync string
Override the default endpoint for AWS AppSync
- Athena string
Override the default endpoint for AWS Athena
- Auditmanager string
Override the default endpoint for AWS Audit Manager
- Autoscaling string
Override the default endpoint for AWS Auto Scaling
- Backup string
Override the default endpoint for AWS Backup
- Batch string
Override the default endpoint for AWS Batch
- Budgets string
Override the default endpoint for AWS Budgets
- Chime string
Override the default endpoint for Amazon Chime
- Cloud9 string
Override the default endpoint for AWS Cloud9
- Cloudformation string
Override the default endpoint for AWS CloudFormation
- Cloudfront string
Override the default endpoint for AWS CloudFront
- Cloudhsm string
Override the default endpoint for AWS CloudHSM
- Cloudsearch string
Override the default endpoint for AWS CloudSearch
- Cloudtrail string
Override the default endpoint for AWS CloudTrail
- Cloudwatch string
Override the default endpoint for AWS CloudWatch
- Cloudwatchevents string
Override the default endpoint for AWS CloudWatch Events
- Cloudwatchlogs string
Override the default endpoint for AWS CloudWatch Logs
- Codeartifact string
Override the default endpoint for AWS CodeArtifact
- Codebuild string
Override the default endpoint for AWS CodeBuild
- Codecommit string
Override the default endpoint for AWS CodeCommit
- Codedeploy string
Override the default endpoint for AWS CodeDeploy
- Codepipeline string
Override the default endpoint for AWS CodePipeline
- Codestarconnections string
Override the default endpoint for AWS CodeStart Connections
- Cognitoidentity string
Override the default endpoint for Amazon Cognito
- Configservice string
Override the default endpoint for AWS Config
- Connect string
Override the default endpoint for Amazon Connect
- Cur string
Override the default endpoint for AWS Cost and Usage Reports
- Dataexchange string
Override the default endpoint for AWS Data Exchange
- Datapipeline string
Override the default endpoint for AWS Data Pipeline
- Datasync string
Override the default endpoint for AWS DataSync
- Dax string
Override the default endpoint for AWS DynamoDB Accelerator
- Detective string
Override the default endpoint for AWS Detective
- Devicefarm string
Override the default endpoint for AWS Device Farm
- Directconnect string
Override the default endpoint for AWS Direct Connect
- Dlm string
Override the default endpoint for AWS Data Lifecycle Manager
- Dms string
Override the default endpoint for AWS Database Migration Service
- Docdb string
Override the default endpoint for AWS DocumentDB
- Ds string
Override the default endpoint for AWS Directory Service
- Dynamodb string
Override the default endpoint for AWS DynamoDB
- Ec2 string
Override the default endpoint for AWS Elastic Compute Cloud (EC2)
- Ecr string
Override the default endpoint for AWS Elastic Container Registry (ECR)
- Ecrpublic string
Override the default endpoint for AWS Elastic Container Registry (ECR) Public
- Ecs string
Override the default endpoint for AWS Elastic Container Service (ECS)
- Efs string
Override the default endpoint for AWS Elastic File System (EFS)
- Eks string
Override the default endpoint for AWS Elastic Kubernetes Service (EKS)
- Elasticache string
Override the default endpoint for AWS ElastiCache
- Elasticbeanstalk string
Override the default endpoint for AWS Elastic Beanstalk
- Elastictranscoder string
Override the default endpoint for AWS Elastic Transcoder
- Elb string
Override the default endpoint for AWS Elastic Load Balancing
- Elbv2 string
Override the default endpoint for AWS Elastic Load Balancing V2
- Emr string
Override the default endpoint for AWS EMR
- Emrcontainers string
Override the default endpoint for AWS EMR on EKS
- Es string
Override the default endpoint for AWS OpenSearch Service (formerly Elasticsearch)
- Firehose string
Override the default endpoint for AWS Kinesis Data Firehose
- Fms string
Override the default endpoint for AWS Firewall Manager
- Forecast string
Override the default endpoint for Amazon Forecast
- Fsx string
Override the default endpoint for AWS FSx
- Gamelift string
Override the default endpoint for AWS GameLift
- Glacier string
Override the default endpoint for Amazon S3 Glacier
- Globalaccelerator string
Override the default endpoint for AWS Global Accelerator
- Glue string
Override the default endpoint for AWS Glue
- Greengrass string
Override the default endpoint for AWS IoT Greengrass
- Guardduty string
Override the default endpoint for AWS GuardDuty
- Iam string
Override the default endpoint for AWS Identity and Access Management
- Identitystore string
Override the default endpoint for AWS Single Sign-On (SSO) Identity Store
- Imagebuilder string
Override the default endpoint for AWS Image Builder
- Inspector string
Override the default endpoint for Amazon Inspector
- Iot string
Override the default endpoint for AWS IoT
- Iotanalytics string
Override the default endpoint for AWS IoT Analytics
- Iotevents string
Override the default endpoint for AWS IoT Events
- Kafka string
Override the default endpoint for Amazon Managed Streaming for Apache Kafka (MSK)
- Kinesis string
Override the default endpoint for Amazon Kinesis
- Kinesisanalytics string
Override the default endpoint for Amazon Kinesis Data Analytics
- Kinesisanalyticsv2 string
Override the default endpoint for Amazon Kinesis Data Analytics V2
- Kinesisvideo string
Override the default endpoint for Amazon Kinesis Video Streams
- Kms string
Override the default endpoint for AWS Key Management Service
- Lakeformation string
Override the default endpoint for AWS Lake Formation
- Lambda string
Override the default endpoint for AWS Lambda
- Lexmodels string
Override the default endpoint for Amazon Lex
- Licensemanager string
Override the default endpoint for AWS License Manager
- Lightsail string
Override the default endpoint for Amazon Lightsail
- Location string
Override the default endpoint for Amazon Location
- Macie string
Override the default endpoint for Amazon Macie
- Macie2 string
Override the default endpoint for Amazon Macie V2
- Managedblockchain string
Override the default endpoint for Amazon Managed Blockchain
- Marketplacecatalog string
Override the default endpoint for AWS Marketplace Catalog
- Mediaconnect string
Override the default endpoint for AWS MediaConnect
- Mediaconvert string
Override the default endpoint for AWS MediaConvert
- Medialive string
Override the default endpoint for AWS MediaLive
- Mediapackage string
Override the default endpoint for AWS MediaPackage
- Mediastore string
Override the default endpoint for AWS Elemental MediaStore container
- Mediastoredata string
Override the default endpoint for AWS Elemental MediaStore asset
- Memorydb string
Override the default endpoint for AWS MemoryDB for Redis
- Mq string
Override the default endpoint for Amazon MQ
- Mwaa string
Override the default endpoint for Amazon Managed Workflows for Apache Airflow
- Neptune string
Override the default endpoint for Amazon Neptune
- Networkfirewall string
Override the default endpoint for AWS Network Firewall
- Networkmanager string
Override the default endpoint for AWS Network Manager
- Opsworks string
Override the default endpoint for AWS OpsWorks
- Organizations string
Override the default endpoint for AWS Organizations
- Outposts string
Override the default endpoint for AWS Outposts
- Personalize string
Override the default endpoint for Amazon Personalize
- Pinpoint string
Override the default endpoint for Amazon Pinpoint
- Pricing string
Override the default endpoint for Amazon Web Services Price List Service
- Qldb string
Override the default endpoint for Amazon QLDB
- Quicksight string
Override the default endpoint for Amazon QuickSight
- Ram string
Override the default endpoint for AWS Resource Access Manager
- Rds string
Override the default endpoint for Amazon Relational Database Service
- Redshift string
Override the default endpoint for Amazon Redshift
- Resourcegroups string
Override the default endpoint for AWS Resource Groups
- Resourcegroupstaggingapi string
Override the default endpoint for AWS Resource Groups Tagging API
- Route53 string
Override the default endpoint for Amazon Route 53
- Route53domains string
Override the default endpoint for Amazon Route 53 Domains
- Route53recoverycontrolconfig string
Override the default endpoint for Amazon Route 53 Recovery Control
- Route53recoveryreadiness string
Override the default endpoint for Amazon Route 53 Recovery Readiness
- Route53resolver string
Override the default endpoint for Amazon Route 53 Resolver
- S3 string
Override the default endpoint for Amazon Simple Storage Service (S3)
- S3control string
Override the default endpoint for Amazon Simple Storage Service (S3) Control
- S3outposts string
Override the default endpoint for Amazon S3 on Outposts
- Sagemaker string
Override the default endpoint for AWS SageMaker
- Schemas string
Override the default endpoint for Amazon EventBridge Schema Registry
- Sdb string
Override the default endpoint for Amazon SimpleDB
- Secretsmanager string
Override the default endpoint for AWS Secrets Manager
- Securityhub string
Override the default endpoint for AWS Security Hub
- Serverlessrepo string
Override the default endpoint for AWS Serverless Application Repository
- Servicecatalog string
Override the default endpoint for AWS Service Catalog
- Servicediscovery string
Override the default endpoint for AWS Cloud Map
- Servicequotas string
Override the default endpoint for AWS Service Quotas
- Ses string
Override the default endpoint for Amazon Simple Email Service (SES)
- Shield string
Override the default endpoint for AWS Shield Advanced API
- Signer string
Override the default endpoint for AWS Signer
- Sns string
Override the default endpoint for Amazon Simple Notification Service (SNS)
- Sqs string
Override the default endpoint for Amazon Simple Queue Service (SQS)
- Ssm string
Override the default endpoint for AWS Systems Manager
- Ssoadmin string
Override the default endpoint for AWS Single Sign On (SSO)
- Stepfunctions string
Override the default endpoint for AWS Step Functions
- Storagegateway string
Override the default endpoint for AWS Storage Gateway
- Sts string
Override the default endpoint for AWS Security Token Service (STS)
- Swf string
Override the default endpoint for Amazon Simple Workflow Service (SWF)
- Synthetics string
Override the default endpoint for Amazon CloudWatch Synthetics
- Timestreamwrite string
Override the default endpoint for Amazon Timestream
- Transfer string
Override the default endpoint for AWS Transfer Family
- Waf string
Override the default endpoint for AWS WAF Classic
- Wafregional string
Override the default endpoint for AWS WAF Regional Classic
- Wafv2 string
Override the default endpoint for AWS WAF V2
- Worklink string
Override the default endpoint for Amazon WorkLink
- Workmail string
Override the default endpoint for Amazon WorkMail
- Workspaces string
Override the default endpoint for Amazon WorkSpaces
- Xray string
Override the default endpoint for AWS X-Ray
- Accessanalyzer string
Override the default endpoint for AWS Access Analyzer
- Acm string
Override the default endpoint for AWS Certificate Manager
- Acmpca string
Override the default endpoint for AWS Certificate Manager Private Certificate Authority
- Amplify string
Override the default endpoint for AWS Amplify Console
- Appconfig string
Override the default endpoint for AWS AppConfig
- Applicationautoscaling string
Override the default endpoint for AWS Application Auto Scaling
- Applicationinsights string
Override the default endpoint for AWS CloudWatch Application Insights
- Appmesh string
Override the default endpoint for AWS App Mesh
- Apprunner string
Override the default endpoint for AWS App Runner
- Appstream string
Override the default endpoint for AWS AppStream 2.0
- Appsync string
Override the default endpoint for AWS AppSync
- Athena string
Override the default endpoint for AWS Athena
- Auditmanager string
Override the default endpoint for AWS Audit Manager
- Autoscaling string
Override the default endpoint for AWS Auto Scaling
- Backup string
Override the default endpoint for AWS Backup
- Batch string
Override the default endpoint for AWS Batch
- Budgets string
Override the default endpoint for AWS Budgets
- Chime string
Override the default endpoint for Amazon Chime
- Cloud9 string
Override the default endpoint for AWS Cloud9
- Cloudformation string
Override the default endpoint for AWS CloudFormation
- Cloudfront string
Override the default endpoint for AWS CloudFront
- Cloudhsm string
Override the default endpoint for AWS CloudHSM
- Cloudsearch string
Override the default endpoint for AWS CloudSearch
- Cloudtrail string
Override the default endpoint for AWS CloudTrail
- Cloudwatch string
Override the default endpoint for AWS CloudWatch
- Cloudwatchevents string
Override the default endpoint for AWS CloudWatch Events
- Cloudwatchlogs string
Override the default endpoint for AWS CloudWatch Logs
- Codeartifact string
Override the default endpoint for AWS CodeArtifact
- Codebuild string
Override the default endpoint for AWS CodeBuild
- Codecommit string
Override the default endpoint for AWS CodeCommit
- Codedeploy string
Override the default endpoint for AWS CodeDeploy
- Codepipeline string
Override the default endpoint for AWS CodePipeline
- Codestarconnections string
Override the default endpoint for AWS CodeStart Connections
- Cognitoidentity string
Override the default endpoint for Amazon Cognito
- Configservice string
Override the default endpoint for AWS Config
- Connect string
Override the default endpoint for Amazon Connect
- Cur string
Override the default endpoint for AWS Cost and Usage Reports
- Dataexchange string
Override the default endpoint for AWS Data Exchange
- Datapipeline string
Override the default endpoint for AWS Data Pipeline
- Datasync string
Override the default endpoint for AWS DataSync
- Dax string
Override the default endpoint for AWS DynamoDB Accelerator
- Detective string
Override the default endpoint for AWS Detective
- Devicefarm string
Override the default endpoint for AWS Device Farm
- Directconnect string
Override the default endpoint for AWS Direct Connect
- Dlm string
Override the default endpoint for AWS Data Lifecycle Manager
- Dms string
Override the default endpoint for AWS Database Migration Service
- Docdb string
Override the default endpoint for AWS DocumentDB
- Ds string
Override the default endpoint for AWS Directory Service
- Dynamodb string
Override the default endpoint for AWS DynamoDB
- Ec2 string
Override the default endpoint for AWS Elastic Compute Cloud (EC2)
- Ecr string
Override the default endpoint for AWS Elastic Container Registry (ECR)
- Ecrpublic string
Override the default endpoint for AWS Elastic Container Registry (ECR) Public
- Ecs string
Override the default endpoint for AWS Elastic Container Service (ECS)
- Efs string
Override the default endpoint for AWS Elastic File System (EFS)
- Eks string
Override the default endpoint for AWS Elastic Kubernetes Service (EKS)
- Elasticache string
Override the default endpoint for AWS ElastiCache
- Elasticbeanstalk string
Override the default endpoint for AWS Elastic Beanstalk
- Elastictranscoder string
Override the default endpoint for AWS Elastic Transcoder
- Elb string
Override the default endpoint for AWS Elastic Load Balancing
- Elbv2 string
Override the default endpoint for AWS Elastic Load Balancing V2
- Emr string
Override the default endpoint for AWS EMR
- Emrcontainers string
Override the default endpoint for AWS EMR on EKS
- Es string
Override the default endpoint for AWS OpenSearch Service (formerly Elasticsearch)
- Firehose string
Override the default endpoint for AWS Kinesis Data Firehose
- Fms string
Override the default endpoint for AWS Firewall Manager
- Forecast string
Override the default endpoint for Amazon Forecast
- Fsx string
Override the default endpoint for AWS FSx
- Gamelift string
Override the default endpoint for AWS GameLift
- Glacier string
Override the default endpoint for Amazon S3 Glacier
- Globalaccelerator string
Override the default endpoint for AWS Global Accelerator
- Glue string
Override the default endpoint for AWS Glue
- Greengrass string
Override the default endpoint for AWS IoT Greengrass
- Guardduty string
Override the default endpoint for AWS GuardDuty
- Iam string
Override the default endpoint for AWS Identity and Access Management
- Identitystore string
Override the default endpoint for AWS Single Sign-On (SSO) Identity Store
- Imagebuilder string
Override the default endpoint for AWS Image Builder
- Inspector string
Override the default endpoint for Amazon Inspector
- Iot string
Override the default endpoint for AWS IoT
- Iotanalytics string
Override the default endpoint for AWS IoT Analytics
- Iotevents string
Override the default endpoint for AWS IoT Events
- Kafka string
Override the default endpoint for Amazon Managed Streaming for Apache Kafka (MSK)
- Kinesis string
Override the default endpoint for Amazon Kinesis
- Kinesisanalytics string
Override the default endpoint for Amazon Kinesis Data Analytics
- Kinesisanalyticsv2 string
Override the default endpoint for Amazon Kinesis Data Analytics V2
- Kinesisvideo string
Override the default endpoint for Amazon Kinesis Video Streams
- Kms string
Override the default endpoint for AWS Key Management Service
- Lakeformation string
Override the default endpoint for AWS Lake Formation
- Lambda string
Override the default endpoint for AWS Lambda
- Lexmodels string
Override the default endpoint for Amazon Lex
- Licensemanager string
Override the default endpoint for AWS License Manager
- Lightsail string
Override the default endpoint for Amazon Lightsail
- Location string
Override the default endpoint for Amazon Location
- Macie string
Override the default endpoint for Amazon Macie
- Macie2 string
Override the default endpoint for Amazon Macie V2
- Managedblockchain string
Override the default endpoint for Amazon Managed Blockchain
- Marketplacecatalog string
Override the default endpoint for AWS Marketplace Catalog
- Mediaconnect string
Override the default endpoint for AWS MediaConnect
- Mediaconvert string
Override the default endpoint for AWS MediaConvert
- Medialive string
Override the default endpoint for AWS MediaLive
- Mediapackage string
Override the default endpoint for AWS MediaPackage
- Mediastore string
Override the default endpoint for AWS Elemental MediaStore container
- Mediastoredata string
Override the default endpoint for AWS Elemental MediaStore asset
- Memorydb string
Override the default endpoint for AWS MemoryDB for Redis
- Mq string
Override the default endpoint for Amazon MQ
- Mwaa string
Override the default endpoint for Amazon Managed Workflows for Apache Airflow
- Neptune string
Override the default endpoint for Amazon Neptune
- Networkfirewall string
Override the default endpoint for AWS Network Firewall
- Networkmanager string
Override the default endpoint for AWS Network Manager
- Opsworks string
Override the default endpoint for AWS OpsWorks
- Organizations string
Override the default endpoint for AWS Organizations
- Outposts string
Override the default endpoint for AWS Outposts
- Personalize string
Override the default endpoint for Amazon Personalize
- Pinpoint string
Override the default endpoint for Amazon Pinpoint
- Pricing string
Override the default endpoint for Amazon Web Services Price List Service
- Qldb string
Override the default endpoint for Amazon QLDB
- Quicksight string
Override the default endpoint for Amazon QuickSight
- Ram string
Override the default endpoint for AWS Resource Access Manager
- Rds string
Override the default endpoint for Amazon Relational Database Service
- Redshift string
Override the default endpoint for Amazon Redshift
- Resourcegroups string
Override the default endpoint for AWS Resource Groups
- Resourcegroupstaggingapi string
Override the default endpoint for AWS Resource Groups Tagging API
- Route53 string
Override the default endpoint for Amazon Route 53
- Route53domains string
Override the default endpoint for Amazon Route 53 Domains
- Route53recoverycontrolconfig string
Override the default endpoint for Amazon Route 53 Recovery Control
- Route53recoveryreadiness string
Override the default endpoint for Amazon Route 53 Recovery Readiness
- Route53resolver string
Override the default endpoint for Amazon Route 53 Resolver
- S3 string
Override the default endpoint for Amazon Simple Storage Service (S3)
- S3control string
Override the default endpoint for Amazon Simple Storage Service (S3) Control
- S3outposts string
Override the default endpoint for Amazon S3 on Outposts
- Sagemaker string
Override the default endpoint for AWS SageMaker
- Schemas string
Override the default endpoint for Amazon EventBridge Schema Registry
- Sdb string
Override the default endpoint for Amazon SimpleDB
- Secretsmanager string
Override the default endpoint for AWS Secrets Manager
- Securityhub string
Override the default endpoint for AWS Security Hub
- Serverlessrepo string
Override the default endpoint for AWS Serverless Application Repository
- Servicecatalog string
Override the default endpoint for AWS Service Catalog
- Servicediscovery string
Override the default endpoint for AWS Cloud Map
- Servicequotas string
Override the default endpoint for AWS Service Quotas
- Ses string
Override the default endpoint for Amazon Simple Email Service (SES)
- Shield string
Override the default endpoint for AWS Shield Advanced API
- Signer string
Override the default endpoint for AWS Signer
- Sns string
Override the default endpoint for Amazon Simple Notification Service (SNS)
- Sqs string
Override the default endpoint for Amazon Simple Queue Service (SQS)
- Ssm string
Override the default endpoint for AWS Systems Manager
- Ssoadmin string
Override the default endpoint for AWS Single Sign On (SSO)
- Stepfunctions string
Override the default endpoint for AWS Step Functions
- Storagegateway string
Override the default endpoint for AWS Storage Gateway
- Sts string
Override the default endpoint for AWS Security Token Service (STS)
- Swf string
Override the default endpoint for Amazon Simple Workflow Service (SWF)
- Synthetics string
Override the default endpoint for Amazon CloudWatch Synthetics
- Timestreamwrite string
Override the default endpoint for Amazon Timestream
- Transfer string
Override the default endpoint for AWS Transfer Family
- Waf string
Override the default endpoint for AWS WAF Classic
- Wafregional string
Override the default endpoint for AWS WAF Regional Classic
- Wafv2 string
Override the default endpoint for AWS WAF V2
- Worklink string
Override the default endpoint for Amazon WorkLink
- Workmail string
Override the default endpoint for Amazon WorkMail
- Workspaces string
Override the default endpoint for Amazon WorkSpaces
- Xray string
Override the default endpoint for AWS X-Ray
- accessanalyzer String
Override the default endpoint for AWS Access Analyzer
- acm String
Override the default endpoint for AWS Certificate Manager
- acmpca String
Override the default endpoint for AWS Certificate Manager Private Certificate Authority
- amplify String
Override the default endpoint for AWS Amplify Console
- appconfig String
Override the default endpoint for AWS AppConfig
- applicationautoscaling String
Override the default endpoint for AWS Application Auto Scaling
- applicationinsights String
Override the default endpoint for AWS CloudWatch Application Insights
- appmesh String
Override the default endpoint for AWS App Mesh
- apprunner String
Override the default endpoint for AWS App Runner
- appstream String
Override the default endpoint for AWS AppStream 2.0
- appsync String
Override the default endpoint for AWS AppSync
- athena String
Override the default endpoint for AWS Athena
- auditmanager String
Override the default endpoint for AWS Audit Manager
- autoscaling String
Override the default endpoint for AWS Auto Scaling
- backup String
Override the default endpoint for AWS Backup
- batch String
Override the default endpoint for AWS Batch
- budgets String
Override the default endpoint for AWS Budgets
- chime String
Override the default endpoint for Amazon Chime
- cloud9 String
Override the default endpoint for AWS Cloud9
- cloudformation String
Override the default endpoint for AWS CloudFormation
- cloudfront String
Override the default endpoint for AWS CloudFront
- cloudhsm String
Override the default endpoint for AWS CloudHSM
- cloudsearch String
Override the default endpoint for AWS CloudSearch
- cloudtrail String
Override the default endpoint for AWS CloudTrail
- cloudwatch String
Override the default endpoint for AWS CloudWatch
- cloudwatchevents String
Override the default endpoint for AWS CloudWatch Events
- cloudwatchlogs String
Override the default endpoint for AWS CloudWatch Logs
- codeartifact String
Override the default endpoint for AWS CodeArtifact
- codebuild String
Override the default endpoint for AWS CodeBuild
- codecommit String
Override the default endpoint for AWS CodeCommit
- codedeploy String
Override the default endpoint for AWS CodeDeploy
- codepipeline String
Override the default endpoint for AWS CodePipeline
- codestarconnections String
Override the default endpoint for AWS CodeStart Connections
- cognitoidentity String
Override the default endpoint for Amazon Cognito
- configservice String
Override the default endpoint for AWS Config
- connect String
Override the default endpoint for Amazon Connect
- cur String
Override the default endpoint for AWS Cost and Usage Reports
- dataexchange String
Override the default endpoint for AWS Data Exchange
- datapipeline String
Override the default endpoint for AWS Data Pipeline
- datasync String
Override the default endpoint for AWS DataSync
- dax String
Override the default endpoint for AWS DynamoDB Accelerator
- detective String
Override the default endpoint for AWS Detective
- devicefarm String
Override the default endpoint for AWS Device Farm
- directconnect String
Override the default endpoint for AWS Direct Connect
- dlm String
Override the default endpoint for AWS Data Lifecycle Manager
- dms String
Override the default endpoint for AWS Database Migration Service
- docdb String
Override the default endpoint for AWS DocumentDB
- ds String
Override the default endpoint for AWS Directory Service
- dynamodb String
Override the default endpoint for AWS DynamoDB
- ec2 String
Override the default endpoint for AWS Elastic Compute Cloud (EC2)
- ecr String
Override the default endpoint for AWS Elastic Container Registry (ECR)
- ecrpublic String
Override the default endpoint for AWS Elastic Container Registry (ECR) Public
- ecs String
Override the default endpoint for AWS Elastic Container Service (ECS)
- efs String
Override the default endpoint for AWS Elastic File System (EFS)
- eks String
Override the default endpoint for AWS Elastic Kubernetes Service (EKS)
- elasticache String
Override the default endpoint for AWS ElastiCache
- elasticbeanstalk String
Override the default endpoint for AWS Elastic Beanstalk
- elastictranscoder String
Override the default endpoint for AWS Elastic Transcoder
- elb String
Override the default endpoint for AWS Elastic Load Balancing
- elbv2 String
Override the default endpoint for AWS Elastic Load Balancing V2
- emr String
Override the default endpoint for AWS EMR
- emrcontainers String
Override the default endpoint for AWS EMR on EKS
- es String
Override the default endpoint for AWS OpenSearch Service (formerly Elasticsearch)
- firehose String
Override the default endpoint for AWS Kinesis Data Firehose
- fms String
Override the default endpoint for AWS Firewall Manager
- forecast String
Override the default endpoint for Amazon Forecast
- fsx String
Override the default endpoint for AWS FSx
- gamelift String
Override the default endpoint for AWS GameLift
- glacier String
Override the default endpoint for Amazon S3 Glacier
- globalaccelerator String
Override the default endpoint for AWS Global Accelerator
- glue String
Override the default endpoint for AWS Glue
- greengrass String
Override the default endpoint for AWS IoT Greengrass
- guardduty String
Override the default endpoint for AWS GuardDuty
- iam String
Override the default endpoint for AWS Identity and Access Management
- identitystore String
Override the default endpoint for AWS Single Sign-On (SSO) Identity Store
- imagebuilder String
Override the default endpoint for AWS Image Builder
- inspector String
Override the default endpoint for Amazon Inspector
- iot String
Override the default endpoint for AWS IoT
- iotanalytics String
Override the default endpoint for AWS IoT Analytics
- iotevents String
Override the default endpoint for AWS IoT Events
- kafka String
Override the default endpoint for Amazon Managed Streaming for Apache Kafka (MSK)
- kinesis String
Override the default endpoint for Amazon Kinesis
- kinesisanalytics String
Override the default endpoint for Amazon Kinesis Data Analytics
- kinesisanalyticsv2 String
Override the default endpoint for Amazon Kinesis Data Analytics V2
- kinesisvideo String
Override the default endpoint for Amazon Kinesis Video Streams
- kms String
Override the default endpoint for AWS Key Management Service
- lakeformation String
Override the default endpoint for AWS Lake Formation
- lambda String
Override the default endpoint for AWS Lambda
- lexmodels String
Override the default endpoint for Amazon Lex
- licensemanager String
Override the default endpoint for AWS License Manager
- lightsail String
Override the default endpoint for Amazon Lightsail
- location String
Override the default endpoint for Amazon Location
- macie String
Override the default endpoint for Amazon Macie
- macie2 String
Override the default endpoint for Amazon Macie V2
- managedblockchain String
Override the default endpoint for Amazon Managed Blockchain
- marketplacecatalog String
Override the default endpoint for AWS Marketplace Catalog
- mediaconnect String
Override the default endpoint for AWS MediaConnect
- mediaconvert String
Override the default endpoint for AWS MediaConvert
- medialive String
Override the default endpoint for AWS MediaLive
- mediapackage String
Override the default endpoint for AWS MediaPackage
- mediastore String
Override the default endpoint for AWS Elemental MediaStore container
- mediastoredata String
Override the default endpoint for AWS Elemental MediaStore asset
- memorydb String
Override the default endpoint for AWS MemoryDB for Redis
- mq String
Override the default endpoint for Amazon MQ
- mwaa String
Override the default endpoint for Amazon Managed Workflows for Apache Airflow
- neptune String
Override the default endpoint for Amazon Neptune
- networkfirewall String
Override the default endpoint for AWS Network Firewall
- networkmanager String
Override the default endpoint for AWS Network Manager
- opsworks String
Override the default endpoint for AWS OpsWorks
- organizations String
Override the default endpoint for AWS Organizations
- outposts String
Override the default endpoint for AWS Outposts
- personalize String
Override the default endpoint for Amazon Personalize
- pinpoint String
Override the default endpoint for Amazon Pinpoint
- pricing String
Override the default endpoint for Amazon Web Services Price List Service
- qldb String
Override the default endpoint for Amazon QLDB
- quicksight String
Override the default endpoint for Amazon QuickSight
- ram String
Override the default endpoint for AWS Resource Access Manager
- rds String
Override the default endpoint for Amazon Relational Database Service
- redshift String
Override the default endpoint for Amazon Redshift
- resourcegroups String
Override the default endpoint for AWS Resource Groups
- resourcegroupstaggingapi String
Override the default endpoint for AWS Resource Groups Tagging API
- route53 String
Override the default endpoint for Amazon Route 53
- route53domains String
Override the default endpoint for Amazon Route 53 Domains
- route53recoverycontrolconfig String
Override the default endpoint for Amazon Route 53 Recovery Control
- route53recoveryreadiness String
Override the default endpoint for Amazon Route 53 Recovery Readiness
- route53resolver String
Override the default endpoint for Amazon Route 53 Resolver
- s3 String
Override the default endpoint for Amazon Simple Storage Service (S3)
- s3control String
Override the default endpoint for Amazon Simple Storage Service (S3) Control
- s3outposts String
Override the default endpoint for Amazon S3 on Outposts
- sagemaker String
Override the default endpoint for AWS SageMaker
- schemas String
Override the default endpoint for Amazon EventBridge Schema Registry
- sdb String
Override the default endpoint for Amazon SimpleDB
- secretsmanager String
Override the default endpoint for AWS Secrets Manager
- securityhub String
Override the default endpoint for AWS Security Hub
- serverlessrepo String
Override the default endpoint for AWS Serverless Application Repository
- servicecatalog String
Override the default endpoint for AWS Service Catalog
- servicediscovery String
Override the default endpoint for AWS Cloud Map
- servicequotas String
Override the default endpoint for AWS Service Quotas
- ses String
Override the default endpoint for Amazon Simple Email Service (SES)
- shield String
Override the default endpoint for AWS Shield Advanced API
- signer String
Override the default endpoint for AWS Signer
- sns String
Override the default endpoint for Amazon Simple Notification Service (SNS)
- sqs String
Override the default endpoint for Amazon Simple Queue Service (SQS)
- ssm String
Override the default endpoint for AWS Systems Manager
- ssoadmin String
Override the default endpoint for AWS Single Sign On (SSO)
- stepfunctions String
Override the default endpoint for AWS Step Functions
- storagegateway String
Override the default endpoint for AWS Storage Gateway
- sts String
Override the default endpoint for AWS Security Token Service (STS)
- swf String
Override the default endpoint for Amazon Simple Workflow Service (SWF)
- synthetics String
Override the default endpoint for Amazon CloudWatch Synthetics
- timestreamwrite String
Override the default endpoint for Amazon Timestream
- transfer String
Override the default endpoint for AWS Transfer Family
- waf String
Override the default endpoint for AWS WAF Classic
- wafregional String
Override the default endpoint for AWS WAF Regional Classic
- wafv2 String
Override the default endpoint for AWS WAF V2
- worklink String
Override the default endpoint for Amazon WorkLink
- workmail String
Override the default endpoint for Amazon WorkMail
- workspaces String
Override the default endpoint for Amazon WorkSpaces
- xray String
Override the default endpoint for AWS X-Ray
- accessanalyzer string
Override the default endpoint for AWS Access Analyzer
- acm string
Override the default endpoint for AWS Certificate Manager
- acmpca string
Override the default endpoint for AWS Certificate Manager Private Certificate Authority
- amplify string
Override the default endpoint for AWS Amplify Console
- appconfig string
Override the default endpoint for AWS AppConfig
- applicationautoscaling string
Override the default endpoint for AWS Application Auto Scaling
- applicationinsights string
Override the default endpoint for AWS CloudWatch Application Insights
- appmesh string
Override the default endpoint for AWS App Mesh
- apprunner string
Override the default endpoint for AWS App Runner
- appstream string
Override the default endpoint for AWS AppStream 2.0
- appsync string
Override the default endpoint for AWS AppSync
- athena string
Override the default endpoint for AWS Athena
- auditmanager string
Override the default endpoint for AWS Audit Manager
- autoscaling string
Override the default endpoint for AWS Auto Scaling
- backup string
Override the default endpoint for AWS Backup
- batch string
Override the default endpoint for AWS Batch
- budgets string
Override the default endpoint for AWS Budgets
- chime string
Override the default endpoint for Amazon Chime
- cloud9 string
Override the default endpoint for AWS Cloud9
- cloudformation string
Override the default endpoint for AWS CloudFormation
- cloudfront string
Override the default endpoint for AWS CloudFront
- cloudhsm string
Override the default endpoint for AWS CloudHSM
- cloudsearch string
Override the default endpoint for AWS CloudSearch
- cloudtrail string
Override the default endpoint for AWS CloudTrail
- cloudwatch string
Override the default endpoint for AWS CloudWatch
- cloudwatchevents string
Override the default endpoint for AWS CloudWatch Events
- cloudwatchlogs string
Override the default endpoint for AWS CloudWatch Logs
- codeartifact string
Override the default endpoint for AWS CodeArtifact
- codebuild string
Override the default endpoint for AWS CodeBuild
- codecommit string
Override the default endpoint for AWS CodeCommit
- codedeploy string
Override the default endpoint for AWS CodeDeploy
- codepipeline string
Override the default endpoint for AWS CodePipeline
- codestarconnections string
Override the default endpoint for AWS CodeStart Connections
- cognitoidentity string
Override the default endpoint for Amazon Cognito
- configservice string
Override the default endpoint for AWS Config
- connect string
Override the default endpoint for Amazon Connect
- cur string
Override the default endpoint for AWS Cost and Usage Reports
- dataexchange string
Override the default endpoint for AWS Data Exchange
- datapipeline string
Override the default endpoint for AWS Data Pipeline
- datasync string
Override the default endpoint for AWS DataSync
- dax string
Override the default endpoint for AWS DynamoDB Accelerator
- detective string
Override the default endpoint for AWS Detective
- devicefarm string
Override the default endpoint for AWS Device Farm
- directconnect string
Override the default endpoint for AWS Direct Connect
- dlm string
Override the default endpoint for AWS Data Lifecycle Manager
- dms string
Override the default endpoint for AWS Database Migration Service
- docdb string
Override the default endpoint for AWS DocumentDB
- ds string
Override the default endpoint for AWS Directory Service
- dynamodb string
Override the default endpoint for AWS DynamoDB
- ec2 string
Override the default endpoint for AWS Elastic Compute Cloud (EC2)
- ecr string
Override the default endpoint for AWS Elastic Container Registry (ECR)
- ecrpublic string
Override the default endpoint for AWS Elastic Container Registry (ECR) Public
- ecs string
Override the default endpoint for AWS Elastic Container Service (ECS)
- efs string
Override the default endpoint for AWS Elastic File System (EFS)
- eks string
Override the default endpoint for AWS Elastic Kubernetes Service (EKS)
- elasticache string
Override the default endpoint for AWS ElastiCache
- elasticbeanstalk string
Override the default endpoint for AWS Elastic Beanstalk
- elastictranscoder string
Override the default endpoint for AWS Elastic Transcoder
- elb string
Override the default endpoint for AWS Elastic Load Balancing
- elbv2 string
Override the default endpoint for AWS Elastic Load Balancing V2
- emr string
Override the default endpoint for AWS EMR
- emrcontainers string
Override the default endpoint for AWS EMR on EKS
- es string
Override the default endpoint for AWS OpenSearch Service (formerly Elasticsearch)
- firehose string
Override the default endpoint for AWS Kinesis Data Firehose
- fms string
Override the default endpoint for AWS Firewall Manager
- forecast string
Override the default endpoint for Amazon Forecast
- fsx string
Override the default endpoint for AWS FSx
- gamelift string
Override the default endpoint for AWS GameLift
- glacier string
Override the default endpoint for Amazon S3 Glacier
- globalaccelerator string
Override the default endpoint for AWS Global Accelerator
- glue string
Override the default endpoint for AWS Glue
- greengrass string
Override the default endpoint for AWS IoT Greengrass
- guardduty string
Override the default endpoint for AWS GuardDuty
- iam string
Override the default endpoint for AWS Identity and Access Management
- identitystore string
Override the default endpoint for AWS Single Sign-On (SSO) Identity Store
- imagebuilder string
Override the default endpoint for AWS Image Builder
- inspector string
Override the default endpoint for Amazon Inspector
- iot string
Override the default endpoint for AWS IoT
- iotanalytics string
Override the default endpoint for AWS IoT Analytics
- iotevents string
Override the default endpoint for AWS IoT Events
- kafka string
Override the default endpoint for Amazon Managed Streaming for Apache Kafka (MSK)
- kinesis string
Override the default endpoint for Amazon Kinesis
- kinesisanalytics string
Override the default endpoint for Amazon Kinesis Data Analytics
- kinesisanalyticsv2 string
Override the default endpoint for Amazon Kinesis Data Analytics V2
- kinesisvideo string
Override the default endpoint for Amazon Kinesis Video Streams
- kms string
Override the default endpoint for AWS Key Management Service
- lakeformation string
Override the default endpoint for AWS Lake Formation
- lambda string
Override the default endpoint for AWS Lambda
- lexmodels string
Override the default endpoint for Amazon Lex
- licensemanager string
Override the default endpoint for AWS License Manager
- lightsail string
Override the default endpoint for Amazon Lightsail
- location string
Override the default endpoint for Amazon Location
- macie string
Override the default endpoint for Amazon Macie
- macie2 string
Override the default endpoint for Amazon Macie V2
- managedblockchain string
Override the default endpoint for Amazon Managed Blockchain
- marketplacecatalog string
Override the default endpoint for AWS Marketplace Catalog
- mediaconnect string
Override the default endpoint for AWS MediaConnect
- mediaconvert string
Override the default endpoint for AWS MediaConvert
- medialive string
Override the default endpoint for AWS MediaLive
- mediapackage string
Override the default endpoint for AWS MediaPackage
- mediastore string
Override the default endpoint for AWS Elemental MediaStore container
- mediastoredata string
Override the default endpoint for AWS Elemental MediaStore asset
- memorydb string
Override the default endpoint for AWS MemoryDB for Redis
- mq string
Override the default endpoint for Amazon MQ
- mwaa string
Override the default endpoint for Amazon Managed Workflows for Apache Airflow
- neptune string
Override the default endpoint for Amazon Neptune
- networkfirewall string
Override the default endpoint for AWS Network Firewall
- networkmanager string
Override the default endpoint for AWS Network Manager
- opsworks string
Override the default endpoint for AWS OpsWorks
- organizations string
Override the default endpoint for AWS Organizations
- outposts string
Override the default endpoint for AWS Outposts
- personalize string
Override the default endpoint for Amazon Personalize
- pinpoint string
Override the default endpoint for Amazon Pinpoint
- pricing string
Override the default endpoint for Amazon Web Services Price List Service
- qldb string
Override the default endpoint for Amazon QLDB
- quicksight string
Override the default endpoint for Amazon QuickSight
- ram string
Override the default endpoint for AWS Resource Access Manager
- rds string
Override the default endpoint for Amazon Relational Database Service
- redshift string
Override the default endpoint for Amazon Redshift
- resourcegroups string
Override the default endpoint for AWS Resource Groups
- resourcegroupstaggingapi string
Override the default endpoint for AWS Resource Groups Tagging API
- route53 string
Override the default endpoint for Amazon Route 53
- route53domains string
Override the default endpoint for Amazon Route 53 Domains
- route53recoverycontrolconfig string
Override the default endpoint for Amazon Route 53 Recovery Control
- route53recoveryreadiness string
Override the default endpoint for Amazon Route 53 Recovery Readiness
- route53resolver string
Override the default endpoint for Amazon Route 53 Resolver
- s3 string
Override the default endpoint for Amazon Simple Storage Service (S3)
- s3control string
Override the default endpoint for Amazon Simple Storage Service (S3) Control
- s3outposts string
Override the default endpoint for Amazon S3 on Outposts
- sagemaker string
Override the default endpoint for AWS SageMaker
- schemas string
Override the default endpoint for Amazon EventBridge Schema Registry
- sdb string
Override the default endpoint for Amazon SimpleDB
- secretsmanager string
Override the default endpoint for AWS Secrets Manager
- securityhub string
Override the default endpoint for AWS Security Hub
- serverlessrepo string
Override the default endpoint for AWS Serverless Application Repository
- servicecatalog string
Override the default endpoint for AWS Service Catalog
- servicediscovery string
Override the default endpoint for AWS Cloud Map
- servicequotas string
Override the default endpoint for AWS Service Quotas
- ses string
Override the default endpoint for Amazon Simple Email Service (SES)
- shield string
Override the default endpoint for AWS Shield Advanced API
- signer string
Override the default endpoint for AWS Signer
- sns string
Override the default endpoint for Amazon Simple Notification Service (SNS)
- sqs string
Override the default endpoint for Amazon Simple Queue Service (SQS)
- ssm string
Override the default endpoint for AWS Systems Manager
- ssoadmin string
Override the default endpoint for AWS Single Sign On (SSO)
- stepfunctions string
Override the default endpoint for AWS Step Functions
- storagegateway string
Override the default endpoint for AWS Storage Gateway
- sts string
Override the default endpoint for AWS Security Token Service (STS)
- swf string
Override the default endpoint for Amazon Simple Workflow Service (SWF)
- synthetics string
Override the default endpoint for Amazon CloudWatch Synthetics
- timestreamwrite string
Override the default endpoint for Amazon Timestream
- transfer string
Override the default endpoint for AWS Transfer Family
- waf string
Override the default endpoint for AWS WAF Classic
- wafregional string
Override the default endpoint for AWS WAF Regional Classic
- wafv2 string
Override the default endpoint for AWS WAF V2
- worklink string
Override the default endpoint for Amazon WorkLink
- workmail string
Override the default endpoint for Amazon WorkMail
- workspaces string
Override the default endpoint for Amazon WorkSpaces
- xray string
Override the default endpoint for AWS X-Ray
- accessanalyzer str
Override the default endpoint for AWS Access Analyzer
- acm str
Override the default endpoint for AWS Certificate Manager
- acmpca str
Override the default endpoint for AWS Certificate Manager Private Certificate Authority
- amplify str
Override the default endpoint for AWS Amplify Console
- appconfig str
Override the default endpoint for AWS AppConfig
- applicationautoscaling str
Override the default endpoint for AWS Application Auto Scaling
- applicationinsights str
Override the default endpoint for AWS CloudWatch Application Insights
- appmesh str
Override the default endpoint for AWS App Mesh
- apprunner str
Override the default endpoint for AWS App Runner
- appstream str
Override the default endpoint for AWS AppStream 2.0
- appsync str
Override the default endpoint for AWS AppSync
- athena str
Override the default endpoint for AWS Athena
- auditmanager str
Override the default endpoint for AWS Audit Manager
- autoscaling str
Override the default endpoint for AWS Auto Scaling
- backup str
Override the default endpoint for AWS Backup
- batch str
Override the default endpoint for AWS Batch
- budgets str
Override the default endpoint for AWS Budgets
- chime str
Override the default endpoint for Amazon Chime
- cloud9 str
Override the default endpoint for AWS Cloud9
- cloudformation str
Override the default endpoint for AWS CloudFormation
- cloudfront str
Override the default endpoint for AWS CloudFront
- cloudhsm str
Override the default endpoint for AWS CloudHSM
- cloudsearch str
Override the default endpoint for AWS CloudSearch
- cloudtrail str
Override the default endpoint for AWS CloudTrail
- cloudwatch str
Override the default endpoint for AWS CloudWatch
- cloudwatchevents str
Override the default endpoint for AWS CloudWatch Events
- cloudwatchlogs str
Override the default endpoint for AWS CloudWatch Logs
- codeartifact str
Override the default endpoint for AWS CodeArtifact
- codebuild str
Override the default endpoint for AWS CodeBuild
- codecommit str
Override the default endpoint for AWS CodeCommit
- codedeploy str
Override the default endpoint for AWS CodeDeploy
- codepipeline str
Override the default endpoint for AWS CodePipeline
- codestarconnections str
Override the default endpoint for AWS CodeStart Connections
- cognitoidentity str
Override the default endpoint for Amazon Cognito
- configservice str
Override the default endpoint for AWS Config
- connect str
Override the default endpoint for Amazon Connect
- cur str
Override the default endpoint for AWS Cost and Usage Reports
- dataexchange str
Override the default endpoint for AWS Data Exchange
- datapipeline str
Override the default endpoint for AWS Data Pipeline
- datasync str
Override the default endpoint for AWS DataSync
- dax str
Override the default endpoint for AWS DynamoDB Accelerator
- detective str
Override the default endpoint for AWS Detective
- devicefarm str
Override the default endpoint for AWS Device Farm
- directconnect str
Override the default endpoint for AWS Direct Connect
- dlm str
Override the default endpoint for AWS Data Lifecycle Manager
- dms str
Override the default endpoint for AWS Database Migration Service
- docdb str
Override the default endpoint for AWS DocumentDB
- ds str
Override the default endpoint for AWS Directory Service
- dynamodb str
Override the default endpoint for AWS DynamoDB
- ec2 str
Override the default endpoint for AWS Elastic Compute Cloud (EC2)
- ecr str
Override the default endpoint for AWS Elastic Container Registry (ECR)
- ecrpublic str
Override the default endpoint for AWS Elastic Container Registry (ECR) Public
- ecs str
Override the default endpoint for AWS Elastic Container Service (ECS)
- efs str
Override the default endpoint for AWS Elastic File System (EFS)
- eks str
Override the default endpoint for AWS Elastic Kubernetes Service (EKS)
- elasticache str
Override the default endpoint for AWS ElastiCache
- elasticbeanstalk str
Override the default endpoint for AWS Elastic Beanstalk
- elastictranscoder str
Override the default endpoint for AWS Elastic Transcoder
- elb str
Override the default endpoint for AWS Elastic Load Balancing
- elbv2 str
Override the default endpoint for AWS Elastic Load Balancing V2
- emr str
Override the default endpoint for AWS EMR
- emrcontainers str
Override the default endpoint for AWS EMR on EKS
- es str
Override the default endpoint for AWS OpenSearch Service (formerly Elasticsearch)
- firehose str
Override the default endpoint for AWS Kinesis Data Firehose
- fms str
Override the default endpoint for AWS Firewall Manager
- forecast str
Override the default endpoint for Amazon Forecast
- fsx str
Override the default endpoint for AWS FSx
- gamelift str
Override the default endpoint for AWS GameLift
- glacier str
Override the default endpoint for Amazon S3 Glacier
- globalaccelerator str
Override the default endpoint for AWS Global Accelerator
- glue str
Override the default endpoint for AWS Glue
- greengrass str
Override the default endpoint for AWS IoT Greengrass
- guardduty str
Override the default endpoint for AWS GuardDuty
- iam str
Override the default endpoint for AWS Identity and Access Management
- identitystore str
Override the default endpoint for AWS Single Sign-On (SSO) Identity Store
- imagebuilder str
Override the default endpoint for AWS Image Builder
- inspector str
Override the default endpoint for Amazon Inspector
- iot str
Override the default endpoint for AWS IoT
- iotanalytics str
Override the default endpoint for AWS IoT Analytics
- iotevents str
Override the default endpoint for AWS IoT Events
- kafka str
Override the default endpoint for Amazon Managed Streaming for Apache Kafka (MSK)
- kinesis str
Override the default endpoint for Amazon Kinesis
- kinesisanalytics str
Override the default endpoint for Amazon Kinesis Data Analytics
- kinesisanalyticsv2 str
Override the default endpoint for Amazon Kinesis Data Analytics V2
- kinesisvideo str
Override the default endpoint for Amazon Kinesis Video Streams
- kms str
Override the default endpoint for AWS Key Management Service
- lakeformation str
Override the default endpoint for AWS Lake Formation
- lambda_ str
Override the default endpoint for AWS Lambda
- lexmodels str
Override the default endpoint for Amazon Lex
- licensemanager str
Override the default endpoint for AWS License Manager
- lightsail str
Override the default endpoint for Amazon Lightsail
- location str
Override the default endpoint for Amazon Location
- macie str
Override the default endpoint for Amazon Macie
- macie2 str
Override the default endpoint for Amazon Macie V2
- managedblockchain str
Override the default endpoint for Amazon Managed Blockchain
- marketplacecatalog str
Override the default endpoint for AWS Marketplace Catalog
- mediaconnect str
Override the default endpoint for AWS MediaConnect
- mediaconvert str
Override the default endpoint for AWS MediaConvert
- medialive str
Override the default endpoint for AWS MediaLive
- mediapackage str
Override the default endpoint for AWS MediaPackage
- mediastore str
Override the default endpoint for AWS Elemental MediaStore container
- mediastoredata str
Override the default endpoint for AWS Elemental MediaStore asset
- memorydb str
Override the default endpoint for AWS MemoryDB for Redis
- mq str
Override the default endpoint for Amazon MQ
- mwaa str
Override the default endpoint for Amazon Managed Workflows for Apache Airflow
- neptune str
Override the default endpoint for Amazon Neptune
- networkfirewall str
Override the default endpoint for AWS Network Firewall
- networkmanager str
Override the default endpoint for AWS Network Manager
- opsworks str
Override the default endpoint for AWS OpsWorks
- organizations str
Override the default endpoint for AWS Organizations
- outposts str
Override the default endpoint for AWS Outposts
- personalize str
Override the default endpoint for Amazon Personalize
- pinpoint str
Override the default endpoint for Amazon Pinpoint
- pricing str
Override the default endpoint for Amazon Web Services Price List Service
- qldb str
Override the default endpoint for Amazon QLDB
- quicksight str
Override the default endpoint for Amazon QuickSight
- ram str
Override the default endpoint for AWS Resource Access Manager
- rds str
Override the default endpoint for Amazon Relational Database Service
- redshift str
Override the default endpoint for Amazon Redshift
- resourcegroups str
Override the default endpoint for AWS Resource Groups
- resourcegroupstaggingapi str
Override the default endpoint for AWS Resource Groups Tagging API
- route53 str
Override the default endpoint for Amazon Route 53
- route53domains str
Override the default endpoint for Amazon Route 53 Domains
- route53recoverycontrolconfig str
Override the default endpoint for Amazon Route 53 Recovery Control
- route53recoveryreadiness str
Override the default endpoint for Amazon Route 53 Recovery Readiness
- route53resolver str
Override the default endpoint for Amazon Route 53 Resolver
- s3 str
Override the default endpoint for Amazon Simple Storage Service (S3)
- s3control str
Override the default endpoint for Amazon Simple Storage Service (S3) Control
- s3outposts str
Override the default endpoint for Amazon S3 on Outposts
- sagemaker str
Override the default endpoint for AWS SageMaker
- schemas str
Override the default endpoint for Amazon EventBridge Schema Registry
- sdb str
Override the default endpoint for Amazon SimpleDB
- secretsmanager str
Override the default endpoint for AWS Secrets Manager
- securityhub str
Override the default endpoint for AWS Security Hub
- serverlessrepo str
Override the default endpoint for AWS Serverless Application Repository
- servicecatalog str
Override the default endpoint for AWS Service Catalog
- servicediscovery str
Override the default endpoint for AWS Cloud Map
- servicequotas str
Override the default endpoint for AWS Service Quotas
- ses str
Override the default endpoint for Amazon Simple Email Service (SES)
- shield str
Override the default endpoint for AWS Shield Advanced API
- signer str
Override the default endpoint for AWS Signer
- sns str
Override the default endpoint for Amazon Simple Notification Service (SNS)
- sqs str
Override the default endpoint for Amazon Simple Queue Service (SQS)
- ssm str
Override the default endpoint for AWS Systems Manager
- ssoadmin str
Override the default endpoint for AWS Single Sign On (SSO)
- stepfunctions str
Override the default endpoint for AWS Step Functions
- storagegateway str
Override the default endpoint for AWS Storage Gateway
- sts str
Override the default endpoint for AWS Security Token Service (STS)
- swf str
Override the default endpoint for Amazon Simple Workflow Service (SWF)
- synthetics str
Override the default endpoint for Amazon CloudWatch Synthetics
- timestreamwrite str
Override the default endpoint for Amazon Timestream
- transfer str
Override the default endpoint for AWS Transfer Family
- waf str
Override the default endpoint for AWS WAF Classic
- wafregional str
Override the default endpoint for AWS WAF Regional Classic
- wafv2 str
Override the default endpoint for AWS WAF V2
- worklink str
Override the default endpoint for Amazon WorkLink
- workmail str
Override the default endpoint for Amazon WorkMail
- workspaces str
Override the default endpoint for Amazon WorkSpaces
- xray str
Override the default endpoint for AWS X-Ray
- accessanalyzer String
Override the default endpoint for AWS Access Analyzer
- acm String
Override the default endpoint for AWS Certificate Manager
- acmpca String
Override the default endpoint for AWS Certificate Manager Private Certificate Authority
- amplify String
Override the default endpoint for AWS Amplify Console
- appconfig String
Override the default endpoint for AWS AppConfig
- applicationautoscaling String
Override the default endpoint for AWS Application Auto Scaling
- applicationinsights String
Override the default endpoint for AWS CloudWatch Application Insights
- appmesh String
Override the default endpoint for AWS App Mesh
- apprunner String
Override the default endpoint for AWS App Runner
- appstream String
Override the default endpoint for AWS AppStream 2.0
- appsync String
Override the default endpoint for AWS AppSync
- athena String
Override the default endpoint for AWS Athena
- auditmanager String
Override the default endpoint for AWS Audit Manager
- autoscaling String
Override the default endpoint for AWS Auto Scaling
- backup String
Override the default endpoint for AWS Backup
- batch String
Override the default endpoint for AWS Batch
- budgets String
Override the default endpoint for AWS Budgets
- chime String
Override the default endpoint for Amazon Chime
- cloud9 String
Override the default endpoint for AWS Cloud9
- cloudformation String
Override the default endpoint for AWS CloudFormation
- cloudfront String
Override the default endpoint for AWS CloudFront
- cloudhsm String
Override the default endpoint for AWS CloudHSM
- cloudsearch String
Override the default endpoint for AWS CloudSearch
- cloudtrail String
Override the default endpoint for AWS CloudTrail
- cloudwatch String
Override the default endpoint for AWS CloudWatch
- cloudwatchevents String
Override the default endpoint for AWS CloudWatch Events
- cloudwatchlogs String
Override the default endpoint for AWS CloudWatch Logs
- codeartifact String
Override the default endpoint for AWS CodeArtifact
- codebuild String
Override the default endpoint for AWS CodeBuild
- codecommit String
Override the default endpoint for AWS CodeCommit
- codedeploy String
Override the default endpoint for AWS CodeDeploy
- codepipeline String
Override the default endpoint for AWS CodePipeline
- codestarconnections String
Override the default endpoint for AWS CodeStart Connections
- cognitoidentity String
Override the default endpoint for Amazon Cognito
- configservice String
Override the default endpoint for AWS Config
- connect String
Override the default endpoint for Amazon Connect
- cur String
Override the default endpoint for AWS Cost and Usage Reports
- dataexchange String
Override the default endpoint for AWS Data Exchange
- datapipeline String
Override the default endpoint for AWS Data Pipeline
- datasync String
Override the default endpoint for AWS DataSync
- dax String
Override the default endpoint for AWS DynamoDB Accelerator
- detective String
Override the default endpoint for AWS Detective
- devicefarm String
Override the default endpoint for AWS Device Farm
- directconnect String
Override the default endpoint for AWS Direct Connect
- dlm String
Override the default endpoint for AWS Data Lifecycle Manager
- dms String
Override the default endpoint for AWS Database Migration Service
- docdb String
Override the default endpoint for AWS DocumentDB
- ds String
Override the default endpoint for AWS Directory Service
- dynamodb String
Override the default endpoint for AWS DynamoDB
- ec2 String
Override the default endpoint for AWS Elastic Compute Cloud (EC2)
- ecr String
Override the default endpoint for AWS Elastic Container Registry (ECR)
- ecrpublic String
Override the default endpoint for AWS Elastic Container Registry (ECR) Public
- ecs String
Override the default endpoint for AWS Elastic Container Service (ECS)
- efs String
Override the default endpoint for AWS Elastic File System (EFS)
- eks String
Override the default endpoint for AWS Elastic Kubernetes Service (EKS)
- elasticache String
Override the default endpoint for AWS ElastiCache
- elasticbeanstalk String
Override the default endpoint for AWS Elastic Beanstalk
- elastictranscoder String
Override the default endpoint for AWS Elastic Transcoder
- elb String
Override the default endpoint for AWS Elastic Load Balancing
- elbv2 String
Override the default endpoint for AWS Elastic Load Balancing V2
- emr String
Override the default endpoint for AWS EMR
- emrcontainers String
Override the default endpoint for AWS EMR on EKS
- es String
Override the default endpoint for AWS OpenSearch Service (formerly Elasticsearch)
- firehose String
Override the default endpoint for AWS Kinesis Data Firehose
- fms String
Override the default endpoint for AWS Firewall Manager
- forecast String
Override the default endpoint for Amazon Forecast
- fsx String
Override the default endpoint for AWS FSx
- gamelift String
Override the default endpoint for AWS GameLift
- glacier String
Override the default endpoint for Amazon S3 Glacier
- globalaccelerator String
Override the default endpoint for AWS Global Accelerator
- glue String
Override the default endpoint for AWS Glue
- greengrass String
Override the default endpoint for AWS IoT Greengrass
- guardduty String
Override the default endpoint for AWS GuardDuty
- iam String
Override the default endpoint for AWS Identity and Access Management
- identitystore String
Override the default endpoint for AWS Single Sign-On (SSO) Identity Store
- imagebuilder String
Override the default endpoint for AWS Image Builder
- inspector String
Override the default endpoint for Amazon Inspector
- iot String
Override the default endpoint for AWS IoT
- iotanalytics String
Override the default endpoint for AWS IoT Analytics
- iotevents String
Override the default endpoint for AWS IoT Events
- kafka String
Override the default endpoint for Amazon Managed Streaming for Apache Kafka (MSK)
- kinesis String
Override the default endpoint for Amazon Kinesis
- kinesisanalytics String
Override the default endpoint for Amazon Kinesis Data Analytics
- kinesisanalyticsv2 String
Override the default endpoint for Amazon Kinesis Data Analytics V2
- kinesisvideo String
Override the default endpoint for Amazon Kinesis Video Streams
- kms String
Override the default endpoint for AWS Key Management Service
- lakeformation String
Override the default endpoint for AWS Lake Formation
- lambda String
Override the default endpoint for AWS Lambda
- lexmodels String
Override the default endpoint for Amazon Lex
- licensemanager String
Override the default endpoint for AWS License Manager
- lightsail String
Override the default endpoint for Amazon Lightsail
- location String
Override the default endpoint for Amazon Location
- macie String
Override the default endpoint for Amazon Macie
- macie2 String
Override the default endpoint for Amazon Macie V2
- managedblockchain String
Override the default endpoint for Amazon Managed Blockchain
- marketplacecatalog String
Override the default endpoint for AWS Marketplace Catalog
- mediaconnect String
Override the default endpoint for AWS MediaConnect
- mediaconvert String
Override the default endpoint for AWS MediaConvert
- medialive String
Override the default endpoint for AWS MediaLive
- mediapackage String
Override the default endpoint for AWS MediaPackage
- mediastore String
Override the default endpoint for AWS Elemental MediaStore container
- mediastoredata String
Override the default endpoint for AWS Elemental MediaStore asset
- memorydb String
Override the default endpoint for AWS MemoryDB for Redis
- mq String
Override the default endpoint for Amazon MQ
- mwaa String
Override the default endpoint for Amazon Managed Workflows for Apache Airflow
- neptune String
Override the default endpoint for Amazon Neptune
- networkfirewall String
Override the default endpoint for AWS Network Firewall
- networkmanager String
Override the default endpoint for AWS Network Manager
- opsworks String
Override the default endpoint for AWS OpsWorks
- organizations String
Override the default endpoint for AWS Organizations
- outposts String
Override the default endpoint for AWS Outposts
- personalize String
Override the default endpoint for Amazon Personalize
- pinpoint String
Override the default endpoint for Amazon Pinpoint
- pricing String
Override the default endpoint for Amazon Web Services Price List Service
- qldb String
Override the default endpoint for Amazon QLDB
- quicksight String
Override the default endpoint for Amazon QuickSight
- ram String
Override the default endpoint for AWS Resource Access Manager
- rds String
Override the default endpoint for Amazon Relational Database Service
- redshift String
Override the default endpoint for Amazon Redshift
- resourcegroups String
Override the default endpoint for AWS Resource Groups
- resourcegroupstaggingapi String
Override the default endpoint for AWS Resource Groups Tagging API
- route53 String
Override the default endpoint for Amazon Route 53
- route53domains String
Override the default endpoint for Amazon Route 53 Domains
- route53recoverycontrolconfig String
Override the default endpoint for Amazon Route 53 Recovery Control
- route53recoveryreadiness String
Override the default endpoint for Amazon Route 53 Recovery Readiness
- route53resolver String
Override the default endpoint for Amazon Route 53 Resolver
- s3 String
Override the default endpoint for Amazon Simple Storage Service (S3)
- s3control String
Override the default endpoint for Amazon Simple Storage Service (S3) Control
- s3outposts String
Override the default endpoint for Amazon S3 on Outposts
- sagemaker String
Override the default endpoint for AWS SageMaker
- schemas String
Override the default endpoint for Amazon EventBridge Schema Registry
- sdb String
Override the default endpoint for Amazon SimpleDB
- secretsmanager String
Override the default endpoint for AWS Secrets Manager
- securityhub String
Override the default endpoint for AWS Security Hub
- serverlessrepo String
Override the default endpoint for AWS Serverless Application Repository
- servicecatalog String
Override the default endpoint for AWS Service Catalog
- servicediscovery String
Override the default endpoint for AWS Cloud Map
- servicequotas String
Override the default endpoint for AWS Service Quotas
- ses String
Override the default endpoint for Amazon Simple Email Service (SES)
- shield String
Override the default endpoint for AWS Shield Advanced API
- signer String
Override the default endpoint for AWS Signer
- sns String
Override the default endpoint for Amazon Simple Notification Service (SNS)
- sqs String
Override the default endpoint for Amazon Simple Queue Service (SQS)
- ssm String
Override the default endpoint for AWS Systems Manager
- ssoadmin String
Override the default endpoint for AWS Single Sign On (SSO)
- stepfunctions String
Override the default endpoint for AWS Step Functions
- storagegateway String
Override the default endpoint for AWS Storage Gateway
- sts String
Override the default endpoint for AWS Security Token Service (STS)
- swf String
Override the default endpoint for Amazon Simple Workflow Service (SWF)
- synthetics String
Override the default endpoint for Amazon CloudWatch Synthetics
- timestreamwrite String
Override the default endpoint for Amazon Timestream
- transfer String
Override the default endpoint for AWS Transfer Family
- waf String
Override the default endpoint for AWS WAF Classic
- wafregional String
Override the default endpoint for AWS WAF Regional Classic
- wafv2 String
Override the default endpoint for AWS WAF V2
- worklink String
Override the default endpoint for Amazon WorkLink
- workmail String
Override the default endpoint for Amazon WorkMail
- workspaces String
Override the default endpoint for Amazon WorkSpaces
- xray String
Override the default endpoint for AWS X-Ray
ProviderIgnoreTags
- Key
Prefixes List<string> List of exact resource tag keys to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any
tags
attributes and displaying any configuration difference for the tag value. If any resource configuration still has this tag key configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.- Keys List<string>
List of resource tag key prefixes to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning any tag key matching the prefixes in any
tags
attributes and displaying any configuration difference for those tag values. If any resource configuration still has a tag matching one of the prefixes configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.
- Key
Prefixes []string List of exact resource tag keys to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any
tags
attributes and displaying any configuration difference for the tag value. If any resource configuration still has this tag key configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.- Keys []string
List of resource tag key prefixes to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning any tag key matching the prefixes in any
tags
attributes and displaying any configuration difference for those tag values. If any resource configuration still has a tag matching one of the prefixes configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.
- key
Prefixes List<String> List of exact resource tag keys to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any
tags
attributes and displaying any configuration difference for the tag value. If any resource configuration still has this tag key configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.- keys List<String>
List of resource tag key prefixes to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning any tag key matching the prefixes in any
tags
attributes and displaying any configuration difference for those tag values. If any resource configuration still has a tag matching one of the prefixes configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.
- key
Prefixes string[] List of exact resource tag keys to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any
tags
attributes and displaying any configuration difference for the tag value. If any resource configuration still has this tag key configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.- keys string[]
List of resource tag key prefixes to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning any tag key matching the prefixes in any
tags
attributes and displaying any configuration difference for those tag values. If any resource configuration still has a tag matching one of the prefixes configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.
- key_
prefixes Sequence[str] List of exact resource tag keys to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any
tags
attributes and displaying any configuration difference for the tag value. If any resource configuration still has this tag key configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.- keys Sequence[str]
List of resource tag key prefixes to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning any tag key matching the prefixes in any
tags
attributes and displaying any configuration difference for those tag values. If any resource configuration still has a tag matching one of the prefixes configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.
- key
Prefixes List<String> List of exact resource tag keys to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any
tags
attributes and displaying any configuration difference for the tag value. If any resource configuration still has this tag key configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.- keys List<String>
List of resource tag key prefixes to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning any tag key matching the prefixes in any
tags
attributes and displaying any configuration difference for those tag values. If any resource configuration still has a tag matching one of the prefixes configured in thetags
argument, it will display a perpetual difference until the tag is removed from the argument orignoreChanges
is also used.
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0