Try AWS Native preview for resources not in the classic version.
aws.Provider
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
The provider type for the aws package. By default, resources use package-wide configuration
settings, however an explicit Provider
instance may be created and passed during resource
construction to achieve fine-grained programmatic control over provider settings. See the
documentation for more information.
Create Provider Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Provider(name: string, args?: ProviderArgs, opts?: CustomResourceOptions);
@overload
def Provider(resource_name: str,
args: Optional[ProviderArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Provider(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_key: Optional[str] = None,
allowed_account_ids: Optional[Sequence[str]] = None,
assume_role: Optional[ProviderAssumeRoleArgs] = None,
assume_role_with_web_identity: Optional[ProviderAssumeRoleWithWebIdentityArgs] = None,
custom_ca_bundle: Optional[str] = None,
default_tags: Optional[ProviderDefaultTagsArgs] = None,
ec2_metadata_service_endpoint: Optional[str] = None,
ec2_metadata_service_endpoint_mode: Optional[str] = None,
endpoints: Optional[Sequence[ProviderEndpointArgs]] = None,
forbidden_account_ids: Optional[Sequence[str]] = None,
http_proxy: Optional[str] = None,
https_proxy: Optional[str] = None,
ignore_tags: Optional[ProviderIgnoreTagsArgs] = None,
insecure: Optional[bool] = None,
max_retries: Optional[int] = None,
no_proxy: Optional[str] = None,
profile: Optional[str] = None,
region: Optional[str] = None,
retry_mode: Optional[str] = None,
s3_us_east1_regional_endpoint: Optional[str] = None,
s3_use_path_style: Optional[bool] = None,
secret_key: Optional[str] = None,
shared_config_files: Optional[Sequence[str]] = None,
shared_credentials_files: Optional[Sequence[str]] = None,
skip_credentials_validation: Optional[bool] = None,
skip_metadata_api_check: Optional[bool] = None,
skip_region_validation: Optional[bool] = None,
skip_requesting_account_id: Optional[bool] = None,
sts_region: Optional[str] = None,
token: Optional[str] = None,
token_bucket_rate_limiter_capacity: Optional[int] = None,
use_dualstack_endpoint: Optional[bool] = None,
use_fips_endpoint: Optional[bool] = None)
func NewProvider(ctx *Context, name string, args *ProviderArgs, opts ...ResourceOption) (*Provider, error)
public Provider(string name, ProviderArgs? args = null, CustomResourceOptions? opts = null)
public Provider(String name, ProviderArgs args)
public Provider(String name, ProviderArgs args, CustomResourceOptions options)
type: pulumi:providers:aws
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Provider Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Provider resource accepts the following input properties:
- Access
Key string - The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- Allowed
Account List<string>Ids - Assume
Role ProviderAssume Role - Assume
Role ProviderWith Web Identity Assume Role With Web Identity - Custom
Ca stringBundle - File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.) - Provider
Default Tags - Configuration block with settings to default resource tags across all resources.
- Ec2Metadata
Service stringEndpoint - Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable. - Ec2Metadata
Service stringEndpoint Mode - Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable. - Endpoints
List<Provider
Endpoint> - Forbidden
Account List<string>Ids - Http
Proxy string - URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the
HTTP_PROXY
orhttp_proxy
environment variables. - Https
Proxy string - URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the
HTTPS_PROXY
orhttps_proxy
environment variables. - Provider
Ignore Tags - Configuration block with settings to ignore resource tags across all resources.
- Insecure bool
- Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is
false
- Max
Retries int - The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
- No
Proxy string - Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the
NO_PROXY
orno_proxy
environment variables. - Profile string
- The profile for API operations. If not set, the default profile created with
aws configure
will be used. - Region string
- The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
It can also be sourced from the following environment variables:
AWS_REGION
,AWS_DEFAULT_REGION
- Retry
Mode string - Specifies how retries are attempted. Valid values are
standard
andadaptive
. Can also be configured using theAWS_RETRY_MODE
environment variable. - S3Us
East1Regional stringEndpoint - Specifies whether S3 API calls in the
us-east-1
region use the legacy global endpoint or a regional endpoint. Valid values arelegacy
orregional
. Can also be configured using theAWS_S3_US_EAST_1_REGIONAL_ENDPOINT
environment variable or thes3_us_east_1_regional_endpoint
shared config file parameter - S3Use
Path boolStyle - Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.
- Secret
Key string - The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- List<string>
- List of paths to shared config files. If not set, defaults to [~/.aws/config].
- List<string>
- List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- Skip
Credentials boolValidation - Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- Skip
Metadata boolApi Check - Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- Skip
Region boolValidation - Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).
- Skip
Requesting boolAccount Id - Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- Sts
Region string - The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.
- Token string
- session token. A session token is only required if you are using temporary security credentials.
- Token
Bucket intRate Limiter Capacity - The capacity of the AWS SDK's token bucket rate limiter.
- Use
Dualstack boolEndpoint - Resolve an endpoint with DualStack capability
- Use
Fips boolEndpoint - Resolve an endpoint with FIPS capability
- Access
Key string - The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- Allowed
Account []stringIds - Assume
Role ProviderAssume Role Args - Assume
Role ProviderWith Web Identity Assume Role With Web Identity Args - Custom
Ca stringBundle - File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.) - Provider
Default Tags Args - Configuration block with settings to default resource tags across all resources.
- Ec2Metadata
Service stringEndpoint - Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable. - Ec2Metadata
Service stringEndpoint Mode - Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable. - Endpoints
[]Provider
Endpoint Args - Forbidden
Account []stringIds - Http
Proxy string - URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the
HTTP_PROXY
orhttp_proxy
environment variables. - Https
Proxy string - URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the
HTTPS_PROXY
orhttps_proxy
environment variables. - Provider
Ignore Tags Args - Configuration block with settings to ignore resource tags across all resources.
- Insecure bool
- Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is
false
- Max
Retries int - The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
- No
Proxy string - Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the
NO_PROXY
orno_proxy
environment variables. - Profile string
- The profile for API operations. If not set, the default profile created with
aws configure
will be used. - Region string
- The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
It can also be sourced from the following environment variables:
AWS_REGION
,AWS_DEFAULT_REGION
- Retry
Mode string - Specifies how retries are attempted. Valid values are
standard
andadaptive
. Can also be configured using theAWS_RETRY_MODE
environment variable. - S3Us
East1Regional stringEndpoint - Specifies whether S3 API calls in the
us-east-1
region use the legacy global endpoint or a regional endpoint. Valid values arelegacy
orregional
. Can also be configured using theAWS_S3_US_EAST_1_REGIONAL_ENDPOINT
environment variable or thes3_us_east_1_regional_endpoint
shared config file parameter - S3Use
Path boolStyle - Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.
- Secret
Key string - The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- []string
- List of paths to shared config files. If not set, defaults to [~/.aws/config].
- []string
- List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- Skip
Credentials boolValidation - Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- Skip
Metadata boolApi Check - Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- Skip
Region boolValidation - Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).
- Skip
Requesting boolAccount Id - Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- Sts
Region string - The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.
- Token string
- session token. A session token is only required if you are using temporary security credentials.
- Token
Bucket intRate Limiter Capacity - The capacity of the AWS SDK's token bucket rate limiter.
- Use
Dualstack boolEndpoint - Resolve an endpoint with DualStack capability
- Use
Fips boolEndpoint - Resolve an endpoint with FIPS capability
- access
Key String - The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- allowed
Account List<String>Ids - assume
Role ProviderAssume Role - assume
Role ProviderWith Web Identity Assume Role With Web Identity - custom
Ca StringBundle - File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.) - Provider
Default Tags - Configuration block with settings to default resource tags across all resources.
- ec2Metadata
Service StringEndpoint - Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable. - ec2Metadata
Service StringEndpoint Mode - Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable. - endpoints
List<Provider
Endpoint> - forbidden
Account List<String>Ids - http
Proxy String - URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the
HTTP_PROXY
orhttp_proxy
environment variables. - https
Proxy String - URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the
HTTPS_PROXY
orhttps_proxy
environment variables. - Provider
Ignore Tags - Configuration block with settings to ignore resource tags across all resources.
- insecure Boolean
- Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is
false
- max
Retries Integer - The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
- no
Proxy String - Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the
NO_PROXY
orno_proxy
environment variables. - profile String
- The profile for API operations. If not set, the default profile created with
aws configure
will be used. - region String
- The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
It can also be sourced from the following environment variables:
AWS_REGION
,AWS_DEFAULT_REGION
- retry
Mode String - Specifies how retries are attempted. Valid values are
standard
andadaptive
. Can also be configured using theAWS_RETRY_MODE
environment variable. - s3Us
East1Regional StringEndpoint - Specifies whether S3 API calls in the
us-east-1
region use the legacy global endpoint or a regional endpoint. Valid values arelegacy
orregional
. Can also be configured using theAWS_S3_US_EAST_1_REGIONAL_ENDPOINT
environment variable or thes3_us_east_1_regional_endpoint
shared config file parameter - s3Use
Path BooleanStyle - Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.
- secret
Key String - The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- List<String>
- List of paths to shared config files. If not set, defaults to [~/.aws/config].
- List<String>
- List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip
Credentials BooleanValidation - Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip
Metadata BooleanApi Check - Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip
Region BooleanValidation - Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).
- skip
Requesting BooleanAccount Id - Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- sts
Region String - The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.
- token String
- session token. A session token is only required if you are using temporary security credentials.
- token
Bucket IntegerRate Limiter Capacity - The capacity of the AWS SDK's token bucket rate limiter.
- use
Dualstack BooleanEndpoint - Resolve an endpoint with DualStack capability
- use
Fips BooleanEndpoint - Resolve an endpoint with FIPS capability
- access
Key string - The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- allowed
Account string[]Ids - assume
Role ProviderAssume Role - assume
Role ProviderWith Web Identity Assume Role With Web Identity - custom
Ca stringBundle - File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.) - Provider
Default Tags - Configuration block with settings to default resource tags across all resources.
- ec2Metadata
Service stringEndpoint - Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable. - ec2Metadata
Service stringEndpoint Mode - Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable. - endpoints
Provider
Endpoint[] - forbidden
Account string[]Ids - http
Proxy string - URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the
HTTP_PROXY
orhttp_proxy
environment variables. - https
Proxy string - URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the
HTTPS_PROXY
orhttps_proxy
environment variables. - Provider
Ignore Tags - Configuration block with settings to ignore resource tags across all resources.
- insecure boolean
- Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is
false
- max
Retries number - The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
- no
Proxy string - Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the
NO_PROXY
orno_proxy
environment variables. - profile string
- The profile for API operations. If not set, the default profile created with
aws configure
will be used. - region Region
- The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
It can also be sourced from the following environment variables:
AWS_REGION
,AWS_DEFAULT_REGION
- retry
Mode string - Specifies how retries are attempted. Valid values are
standard
andadaptive
. Can also be configured using theAWS_RETRY_MODE
environment variable. - s3Us
East1Regional stringEndpoint - Specifies whether S3 API calls in the
us-east-1
region use the legacy global endpoint or a regional endpoint. Valid values arelegacy
orregional
. Can also be configured using theAWS_S3_US_EAST_1_REGIONAL_ENDPOINT
environment variable or thes3_us_east_1_regional_endpoint
shared config file parameter - s3Use
Path booleanStyle - Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.
- secret
Key string - The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- string[]
- List of paths to shared config files. If not set, defaults to [~/.aws/config].
- string[]
- List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip
Credentials booleanValidation - Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip
Metadata booleanApi Check - Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip
Region booleanValidation - Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).
- skip
Requesting booleanAccount Id - Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- sts
Region string - The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.
- token string
- session token. A session token is only required if you are using temporary security credentials.
- token
Bucket numberRate Limiter Capacity - The capacity of the AWS SDK's token bucket rate limiter.
- use
Dualstack booleanEndpoint - Resolve an endpoint with DualStack capability
- use
Fips booleanEndpoint - Resolve an endpoint with FIPS capability
- access_
key str - The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- allowed_
account_ Sequence[str]ids - assume_
role ProviderAssume Role Args - assume_
role_ Providerwith_ web_ identity Assume Role With Web Identity Args - custom_
ca_ strbundle - File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.) - Provider
Default Tags Args - Configuration block with settings to default resource tags across all resources.
- ec2_
metadata_ strservice_ endpoint - Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable. - ec2_
metadata_ strservice_ endpoint_ mode - Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable. - endpoints
Sequence[Provider
Endpoint Args] - forbidden_
account_ Sequence[str]ids - http_
proxy str - URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the
HTTP_PROXY
orhttp_proxy
environment variables. - https_
proxy str - URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the
HTTPS_PROXY
orhttps_proxy
environment variables. - Provider
Ignore Tags Args - Configuration block with settings to ignore resource tags across all resources.
- insecure bool
- Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is
false
- max_
retries int - The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
- no_
proxy str - Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the
NO_PROXY
orno_proxy
environment variables. - profile str
- The profile for API operations. If not set, the default profile created with
aws configure
will be used. - region str
- The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
It can also be sourced from the following environment variables:
AWS_REGION
,AWS_DEFAULT_REGION
- retry_
mode str - Specifies how retries are attempted. Valid values are
standard
andadaptive
. Can also be configured using theAWS_RETRY_MODE
environment variable. - s3_
us_ streast1_ regional_ endpoint - Specifies whether S3 API calls in the
us-east-1
region use the legacy global endpoint or a regional endpoint. Valid values arelegacy
orregional
. Can also be configured using theAWS_S3_US_EAST_1_REGIONAL_ENDPOINT
environment variable or thes3_us_east_1_regional_endpoint
shared config file parameter - s3_
use_ boolpath_ style - Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.
- secret_
key str - The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- Sequence[str]
- List of paths to shared config files. If not set, defaults to [~/.aws/config].
- Sequence[str]
- List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip_
credentials_ boolvalidation - Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip_
metadata_ boolapi_ check - Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip_
region_ boolvalidation - Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).
- skip_
requesting_ boolaccount_ id - Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- sts_
region str - The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.
- token str
- session token. A session token is only required if you are using temporary security credentials.
- token_
bucket_ intrate_ limiter_ capacity - The capacity of the AWS SDK's token bucket rate limiter.
- use_
dualstack_ boolendpoint - Resolve an endpoint with DualStack capability
- use_
fips_ boolendpoint - Resolve an endpoint with FIPS capability
- access
Key String - The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- allowed
Account List<String>Ids - assume
Role Property Map - assume
Role Property MapWith Web Identity - custom
Ca StringBundle - File containing custom root and intermediate certificates. Can also be configured using the
AWS_CA_BUNDLE
environment variable. (Settingca_bundle
in the shared config file is not supported.) - Property Map
- Configuration block with settings to default resource tags across all resources.
- ec2Metadata
Service StringEndpoint - Address of the EC2 metadata service endpoint to use. Can also be configured using the
AWS_EC2_METADATA_SERVICE_ENDPOINT
environment variable. - ec2Metadata
Service StringEndpoint Mode - Protocol to use with EC2 metadata service endpoint.Valid values are
IPv4
andIPv6
. Can also be configured using theAWS_EC2_METADATA_SERVICE_ENDPOINT_MODE
environment variable. - endpoints List<Property Map>
- forbidden
Account List<String>Ids - http
Proxy String - URL of a proxy to use for HTTP requests when accessing the AWS API. Can also be set using the
HTTP_PROXY
orhttp_proxy
environment variables. - https
Proxy String - URL of a proxy to use for HTTPS requests when accessing the AWS API. Can also be set using the
HTTPS_PROXY
orhttps_proxy
environment variables. - Property Map
- Configuration block with settings to ignore resource tags across all resources.
- insecure Boolean
- Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value is
false
- max
Retries Number - The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
- no
Proxy String - Comma-separated list of hosts that should not use HTTP or HTTPS proxies. Can also be set using the
NO_PROXY
orno_proxy
environment variables. - profile String
- The profile for API operations. If not set, the default profile created with
aws configure
will be used. - region
- The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
It can also be sourced from the following environment variables:
AWS_REGION
,AWS_DEFAULT_REGION
- retry
Mode String - Specifies how retries are attempted. Valid values are
standard
andadaptive
. Can also be configured using theAWS_RETRY_MODE
environment variable. - s3Us
East1Regional StringEndpoint - Specifies whether S3 API calls in the
us-east-1
region use the legacy global endpoint or a regional endpoint. Valid values arelegacy
orregional
. Can also be configured using theAWS_S3_US_EAST_1_REGIONAL_ENDPOINT
environment variable or thes3_us_east_1_regional_endpoint
shared config file parameter - s3Use
Path BooleanStyle - Set this to true to enable the request to use path-style addressing, i.e., https://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (https://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.
- secret
Key String - The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
- List<String>
- List of paths to shared config files. If not set, defaults to [~/.aws/config].
- List<String>
- List of paths to shared credentials files. If not set, defaults to [~/.aws/credentials].
- skip
Credentials BooleanValidation - Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
- skip
Metadata BooleanApi Check - Skip the AWS Metadata API check. Used for AWS API implementations that do not have a metadata api endpoint.
- skip
Region BooleanValidation - Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).
- skip
Requesting BooleanAccount Id - Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
- sts
Region String - The region where AWS STS operations will take place. Examples are us-east-1 and us-west-2.
- token String
- session token. A session token is only required if you are using temporary security credentials.
- token
Bucket NumberRate Limiter Capacity - The capacity of the AWS SDK's token bucket rate limiter.
- use
Dualstack BooleanEndpoint - Resolve an endpoint with DualStack capability
- use
Fips BooleanEndpoint - Resolve an endpoint with FIPS capability
Outputs
All input properties are implicitly available as output properties. Additionally, the Provider resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
ProviderAssumeRole, ProviderAssumeRoleArgs
- Duration string
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- External
Id string - A unique identifier that might be required when you assume a role in another account.
- Policy string
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- Policy
Arns List<string> - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- Role
Arn string - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- Session
Name string - An identifier for the assumed role session.
- Source
Identity string - Source identity specified by the principal assuming the role.
- Dictionary<string, string>
- Assume role session tags.
- Transitive
Tag List<string>Keys - Assume role session tag keys to pass to any subsequent sessions.
- Duration string
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- External
Id string - A unique identifier that might be required when you assume a role in another account.
- Policy string
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- Policy
Arns []string - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- Role
Arn string - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- Session
Name string - An identifier for the assumed role session.
- Source
Identity string - Source identity specified by the principal assuming the role.
- map[string]string
- Assume role session tags.
- Transitive
Tag []stringKeys - Assume role session tag keys to pass to any subsequent sessions.
- duration String
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- external
Id String - A unique identifier that might be required when you assume a role in another account.
- policy String
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns List<String> - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role
Arn String - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session
Name String - An identifier for the assumed role session.
- source
Identity String - Source identity specified by the principal assuming the role.
- Map<String,String>
- Assume role session tags.
- transitive
Tag List<String>Keys - Assume role session tag keys to pass to any subsequent sessions.
- duration string
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- external
Id string - A unique identifier that might be required when you assume a role in another account.
- policy string
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns string[] - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role
Arn string - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session
Name string - An identifier for the assumed role session.
- source
Identity string - Source identity specified by the principal assuming the role.
- {[key: string]: string}
- Assume role session tags.
- transitive
Tag string[]Keys - Assume role session tag keys to pass to any subsequent sessions.
- duration str
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- external_
id str - A unique identifier that might be required when you assume a role in another account.
- policy str
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy_
arns Sequence[str] - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role_
arn str - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session_
name str - An identifier for the assumed role session.
- source_
identity str - Source identity specified by the principal assuming the role.
- Mapping[str, str]
- Assume role session tags.
- transitive_
tag_ Sequence[str]keys - Assume role session tag keys to pass to any subsequent sessions.
- duration String
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- external
Id String - A unique identifier that might be required when you assume a role in another account.
- policy String
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns List<String> - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role
Arn String - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session
Name String - An identifier for the assumed role session.
- source
Identity String - Source identity specified by the principal assuming the role.
- Map<String>
- Assume role session tags.
- transitive
Tag List<String>Keys - Assume role session tag keys to pass to any subsequent sessions.
ProviderAssumeRoleWithWebIdentity, ProviderAssumeRoleWithWebIdentityArgs
- Duration string
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- Policy string
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- Policy
Arns List<string> - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- Role
Arn string - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- Session
Name string - An identifier for the assumed role session.
- Web
Identity stringToken - Web
Identity stringToken File
- Duration string
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- Policy string
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- Policy
Arns []string - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- Role
Arn string - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- Session
Name string - An identifier for the assumed role session.
- Web
Identity stringToken - Web
Identity stringToken File
- duration String
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- policy String
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns List<String> - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role
Arn String - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session
Name String - An identifier for the assumed role session.
- web
Identity StringToken - web
Identity StringToken File
- duration string
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- policy string
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns string[] - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role
Arn string - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session
Name string - An identifier for the assumed role session.
- web
Identity stringToken - web
Identity stringToken File
- duration str
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- policy str
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy_
arns Sequence[str] - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role_
arn str - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session_
name str - An identifier for the assumed role session.
- web_
identity_ strtoken - web_
identity_ strtoken_ file
- duration String
- The duration, between 15 minutes and 12 hours, of the role session. Valid time units are ns, us (or µs), ms, s, h, or m.
- policy String
- IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
- policy
Arns List<String> - Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
- role
Arn String - Amazon Resource Name (ARN) of an IAM Role to assume prior to making API calls.
- session
Name String - An identifier for the assumed role session.
- web
Identity StringToken - web
Identity StringToken File
ProviderDefaultTags, ProviderDefaultTagsArgs
- Dictionary<string, string>
- Resource tags to default across all resources
- map[string]string
- Resource tags to default across all resources
- Map<String,String>
- Resource tags to default across all resources
- {[key: string]: string}
- Resource tags to default across all resources
- Mapping[str, str]
- Resource tags to default across all resources
- Map<String>
- Resource tags to default across all resources
ProviderEndpoint, ProviderEndpointArgs
- Accessanalyzer string
- Use this to override the default service endpoint URL
- Account string
- Use this to override the default service endpoint URL
- Acm string
- Use this to override the default service endpoint URL
- Acmpca string
- Use this to override the default service endpoint URL
- Amg string
- Use this to override the default service endpoint URL
- Amp string
- Use this to override the default service endpoint URL
- Amplify string
- Use this to override the default service endpoint URL
- Apigateway string
- Use this to override the default service endpoint URL
- Apigatewayv2 string
- Use this to override the default service endpoint URL
- Appautoscaling string
- Use this to override the default service endpoint URL
- Appconfig string
- Use this to override the default service endpoint URL
- Appfabric string
- Use this to override the default service endpoint URL
- Appflow string
- Use this to override the default service endpoint URL
- Appintegrations string
- Use this to override the default service endpoint URL
- Appintegrationsservice string
- Use this to override the default service endpoint URL
- Applicationautoscaling string
- Use this to override the default service endpoint URL
- Applicationinsights string
- Use this to override the default service endpoint URL
- Applicationsignals string
- Use this to override the default service endpoint URL
- Appmesh string
- Use this to override the default service endpoint URL
- Appregistry string
- Use this to override the default service endpoint URL
- Apprunner string
- Use this to override the default service endpoint URL
- Appstream string
- Use this to override the default service endpoint URL
- Appsync string
- Use this to override the default service endpoint URL
- Athena string
- Use this to override the default service endpoint URL
- Auditmanager string
- Use this to override the default service endpoint URL
- Autoscaling string
- Use this to override the default service endpoint URL
- Autoscalingplans string
- Use this to override the default service endpoint URL
- Backup string
- Use this to override the default service endpoint URL
- Batch string
- Use this to override the default service endpoint URL
- Bcmdataexports string
- Use this to override the default service endpoint URL
- Beanstalk string
- Use this to override the default service endpoint URL
- Bedrock string
- Use this to override the default service endpoint URL
- Bedrockagent string
- Use this to override the default service endpoint URL
- Budgets string
- Use this to override the default service endpoint URL
- Ce string
- Use this to override the default service endpoint URL
- Chatbot string
- Use this to override the default service endpoint URL
- Chime string
- Use this to override the default service endpoint URL
- Chimesdkmediapipelines string
- Use this to override the default service endpoint URL
- Chimesdkvoice string
- Use this to override the default service endpoint URL
- Cleanrooms string
- Use this to override the default service endpoint URL
- Cloud9 string
- Use this to override the default service endpoint URL
- Cloudcontrol string
- Use this to override the default service endpoint URL
- Cloudcontrolapi string
- Use this to override the default service endpoint URL
- Cloudformation string
- Use this to override the default service endpoint URL
- Cloudfront string
- Use this to override the default service endpoint URL
- Cloudfrontkeyvaluestore string
- Use this to override the default service endpoint URL
- Cloudhsm string
- Use this to override the default service endpoint URL
- Cloudhsmv2 string
- Use this to override the default service endpoint URL
- Cloudsearch string
- Use this to override the default service endpoint URL
- Cloudtrail string
- Use this to override the default service endpoint URL
- Cloudwatch string
- Use this to override the default service endpoint URL
- Cloudwatchevents string
- Use this to override the default service endpoint URL
- Cloudwatchevidently string
- Use this to override the default service endpoint URL
- Cloudwatchlog string
- Use this to override the default service endpoint URL
- Cloudwatchlogs string
- Use this to override the default service endpoint URL
- Cloudwatchobservabilityaccessmanager string
- Use this to override the default service endpoint URL
- Cloudwatchrum string
- Use this to override the default service endpoint URL
- Codeartifact string
- Use this to override the default service endpoint URL
- Codebuild string
- Use this to override the default service endpoint URL
- Codecatalyst string
- Use this to override the default service endpoint URL
- Codecommit string
- Use this to override the default service endpoint URL
- Codedeploy string
- Use this to override the default service endpoint URL
- Codeguruprofiler string
- Use this to override the default service endpoint URL
- Codegurureviewer string
- Use this to override the default service endpoint URL
- Codepipeline string
- Use this to override the default service endpoint URL
- Codestarconnections string
- Use this to override the default service endpoint URL
- Codestarnotifications string
- Use this to override the default service endpoint URL
- Cognitoidentity string
- Use this to override the default service endpoint URL
- Cognitoidentityprovider string
- Use this to override the default service endpoint URL
- Cognitoidp string
- Use this to override the default service endpoint URL
- Comprehend string
- Use this to override the default service endpoint URL
- Computeoptimizer string
- Use this to override the default service endpoint URL
- Config string
- Use this to override the default service endpoint URL
- Configservice string
- Use this to override the default service endpoint URL
- Connect string
- Use this to override the default service endpoint URL
- Connectcases string
- Use this to override the default service endpoint URL
- Controltower string
- Use this to override the default service endpoint URL
- Costandusagereportservice string
- Use this to override the default service endpoint URL
- Costexplorer string
- Use this to override the default service endpoint URL
- Costoptimizationhub string
- Use this to override the default service endpoint URL
- Cur string
- Use this to override the default service endpoint URL
- Customerprofiles string
- Use this to override the default service endpoint URL
- Databasemigration string
- Use this to override the default service endpoint URL
- Databasemigrationservice string
- Use this to override the default service endpoint URL
- Dataexchange string
- Use this to override the default service endpoint URL
- Datapipeline string
- Use this to override the default service endpoint URL
- Datasync string
- Use this to override the default service endpoint URL
- Datazone string
- Use this to override the default service endpoint URL
- Dax string
- Use this to override the default service endpoint URL
- Deploy string
- Use this to override the default service endpoint URL
- Detective string
- Use this to override the default service endpoint URL
- Devicefarm string
- Use this to override the default service endpoint URL
- Devopsguru string
- Use this to override the default service endpoint URL
- Directconnect string
- Use this to override the default service endpoint URL
- Directoryservice string
- Use this to override the default service endpoint URL
- Dlm string
- Use this to override the default service endpoint URL
- Dms string
- Use this to override the default service endpoint URL
- Docdb string
- Use this to override the default service endpoint URL
- Docdbelastic string
- Use this to override the default service endpoint URL
- Drs string
- Use this to override the default service endpoint URL
- Ds string
- Use this to override the default service endpoint URL
- Dynamodb string
- Use this to override the default service endpoint URL
- Ec2 string
- Use this to override the default service endpoint URL
- Ecr string
- Use this to override the default service endpoint URL
- Ecrpublic string
- Use this to override the default service endpoint URL
- Ecs string
- Use this to override the default service endpoint URL
- Efs string
- Use this to override the default service endpoint URL
- Eks string
- Use this to override the default service endpoint URL
- Elasticache string
- Use this to override the default service endpoint URL
- Elasticbeanstalk string
- Use this to override the default service endpoint URL
- Elasticloadbalancing string
- Use this to override the default service endpoint URL
- Elasticloadbalancingv2 string
- Use this to override the default service endpoint URL
- Elasticsearch string
- Use this to override the default service endpoint URL
- Elasticsearchservice string
- Use this to override the default service endpoint URL
- Elastictranscoder string
- Use this to override the default service endpoint URL
- Elb string
- Use this to override the default service endpoint URL
- Elbv2 string
- Use this to override the default service endpoint URL
- Emr string
- Use this to override the default service endpoint URL
- Emrcontainers string
- Use this to override the default service endpoint URL
- Emrserverless string
- Use this to override the default service endpoint URL
- Es string
- Use this to override the default service endpoint URL
- Eventbridge string
- Use this to override the default service endpoint URL
- Events string
- Use this to override the default service endpoint URL
- Evidently string
- Use this to override the default service endpoint URL
- Finspace string
- Use this to override the default service endpoint URL
- Firehose string
- Use this to override the default service endpoint URL
- Fis string
- Use this to override the default service endpoint URL
- Fms string
- Use this to override the default service endpoint URL
- Fsx string
- Use this to override the default service endpoint URL
- Gamelift string
- Use this to override the default service endpoint URL
- Glacier string
- Use this to override the default service endpoint URL
- Globalaccelerator string
- Use this to override the default service endpoint URL
- Glue string
- Use this to override the default service endpoint URL
- Grafana string
- Use this to override the default service endpoint URL
- Greengrass string
- Use this to override the default service endpoint URL
- Groundstation string
- Use this to override the default service endpoint URL
- Guardduty string
- Use this to override the default service endpoint URL
- Healthlake string
- Use this to override the default service endpoint URL
- Iam string
- Use this to override the default service endpoint URL
- Identitystore string
- Use this to override the default service endpoint URL
- Imagebuilder string
- Use this to override the default service endpoint URL
- Inspector string
- Use this to override the default service endpoint URL
- Inspector2 string
- Use this to override the default service endpoint URL
- Inspectorv2 string
- Use this to override the default service endpoint URL
- Internetmonitor string
- Use this to override the default service endpoint URL
- Iot string
- Use this to override the default service endpoint URL
- Iotanalytics string
- Use this to override the default service endpoint URL
- Iotevents string
- Use this to override the default service endpoint URL
- Ivs string
- Use this to override the default service endpoint URL
- Ivschat string
- Use this to override the default service endpoint URL
- Kafka string
- Use this to override the default service endpoint URL
- Kafkaconnect string
- Use this to override the default service endpoint URL
- Kendra string
- Use this to override the default service endpoint URL
- Keyspaces string
- Use this to override the default service endpoint URL
- Kinesis string
- Use this to override the default service endpoint URL
- Kinesisanalytics string
- Use this to override the default service endpoint URL
- Kinesisanalyticsv2 string
- Use this to override the default service endpoint URL
- Kinesisvideo string
- Use this to override the default service endpoint URL
- Kms string
- Use this to override the default service endpoint URL
- Lakeformation string
- Use this to override the default service endpoint URL
- Lambda string
- Use this to override the default service endpoint URL
- Launchwizard string
- Use this to override the default service endpoint URL
- Lex string
- Use this to override the default service endpoint URL
- Lexmodelbuilding string
- Use this to override the default service endpoint URL
- Lexmodelbuildingservice string
- Use this to override the default service endpoint URL
- Lexmodels string
- Use this to override the default service endpoint URL
- Lexmodelsv2 string
- Use this to override the default service endpoint URL
- Lexv2models string
- Use this to override the default service endpoint URL
- Licensemanager string
- Use this to override the default service endpoint URL
- Lightsail string
- Use this to override the default service endpoint URL
- Location string
- Use this to override the default service endpoint URL
- Locationservice string
- Use this to override the default service endpoint URL
- Logs string
- Use this to override the default service endpoint URL
- Lookoutmetrics string
- Use this to override the default service endpoint URL
- M2 string
- Use this to override the default service endpoint URL
- Macie2 string
- Use this to override the default service endpoint URL
- Managedgrafana string
- Use this to override the default service endpoint URL
- Mediaconnect string
- Use this to override the default service endpoint URL
- Mediaconvert string
- Use this to override the default service endpoint URL
- Medialive string
- Use this to override the default service endpoint URL
- Mediapackage string
- Use this to override the default service endpoint URL
- Mediapackagev2 string
- Use this to override the default service endpoint URL
- Mediastore string
- Use this to override the default service endpoint URL
- Memorydb string
- Use this to override the default service endpoint URL
- Mq string
- Use this to override the default service endpoint URL
- Msk string
- Use this to override the default service endpoint URL
- Mwaa string
- Use this to override the default service endpoint URL
- Neptune string
- Use this to override the default service endpoint URL
- Neptunegraph string
- Use this to override the default service endpoint URL
- Networkfirewall string
- Use this to override the default service endpoint URL
- Networkmanager string
- Use this to override the default service endpoint URL
- Oam string
- Use this to override the default service endpoint URL
- Opensearch string
- Use this to override the default service endpoint URL
- Opensearchingestion string
- Use this to override the default service endpoint URL
- Opensearchserverless string
- Use this to override the default service endpoint URL
- Opensearchservice string
- Use this to override the default service endpoint URL
- Opsworks string
- Use this to override the default service endpoint URL
- Organizations string
- Use this to override the default service endpoint URL
- Osis string
- Use this to override the default service endpoint URL
- Outposts string
- Use this to override the default service endpoint URL
- Paymentcryptography string
- Use this to override the default service endpoint URL
- Pcaconnectorad string
- Use this to override the default service endpoint URL
- Pinpoint string
- Use this to override the default service endpoint URL
- Pipes string
- Use this to override the default service endpoint URL
- Polly string
- Use this to override the default service endpoint URL
- Pricing string
- Use this to override the default service endpoint URL
- Prometheus string
- Use this to override the default service endpoint URL
- Prometheusservice string
- Use this to override the default service endpoint URL
- Qbusiness string
- Use this to override the default service endpoint URL
- Qldb string
- Use this to override the default service endpoint URL
- Quicksight string
- Use this to override the default service endpoint URL
- Ram string
- Use this to override the default service endpoint URL
- Rbin string
- Use this to override the default service endpoint URL
- Rds string
- Use this to override the default service endpoint URL
- Recyclebin string
- Use this to override the default service endpoint URL
- Redshift string
- Use this to override the default service endpoint URL
- Redshiftdata string
- Use this to override the default service endpoint URL
- Redshiftdataapiservice string
- Use this to override the default service endpoint URL
- Redshiftserverless string
- Use this to override the default service endpoint URL
- Rekognition string
- Use this to override the default service endpoint URL
- Resourceexplorer2 string
- Use this to override the default service endpoint URL
- Resourcegroups string
- Use this to override the default service endpoint URL
- Resourcegroupstagging string
- Use this to override the default service endpoint URL
- Resourcegroupstaggingapi string
- Use this to override the default service endpoint URL
- Rolesanywhere string
- Use this to override the default service endpoint URL
- Route53 string
- Use this to override the default service endpoint URL
- Route53domains string
- Use this to override the default service endpoint URL
- Route53profiles string
- Use this to override the default service endpoint URL
- Route53recoverycontrolconfig string
- Use this to override the default service endpoint URL
- Route53recoveryreadiness string
- Use this to override the default service endpoint URL
- Route53resolver string
- Use this to override the default service endpoint URL
- Rum string
- Use this to override the default service endpoint URL
- S3 string
- Use this to override the default service endpoint URL
- S3api string
- Use this to override the default service endpoint URL
- S3control string
- Use this to override the default service endpoint URL
- S3outposts string
- Use this to override the default service endpoint URL
- Sagemaker string
- Use this to override the default service endpoint URL
- Scheduler string
- Use this to override the default service endpoint URL
- Schemas string
- Use this to override the default service endpoint URL
- Sdb string
- Use this to override the default service endpoint URL
- Secretsmanager string
- Use this to override the default service endpoint URL
- Securityhub string
- Use this to override the default service endpoint URL
- Securitylake string
- Use this to override the default service endpoint URL
- Serverlessapplicationrepository string
- Use this to override the default service endpoint URL
- Serverlessapprepo string
- Use this to override the default service endpoint URL
- Serverlessrepo string
- Use this to override the default service endpoint URL
- Servicecatalog string
- Use this to override the default service endpoint URL
- Servicecatalogappregistry string
- Use this to override the default service endpoint URL
- Servicediscovery string
- Use this to override the default service endpoint URL
- Servicequotas string
- Use this to override the default service endpoint URL
- Ses string
- Use this to override the default service endpoint URL
- Sesv2 string
- Use this to override the default service endpoint URL
- Sfn string
- Use this to override the default service endpoint URL
- Shield string
- Use this to override the default service endpoint URL
- Signer string
- Use this to override the default service endpoint URL
- Simpledb string
- Use this to override the default service endpoint URL
- Sns string
- Use this to override the default service endpoint URL
- Sqs string
- Use this to override the default service endpoint URL
- Ssm string
- Use this to override the default service endpoint URL
- Ssmcontacts string
- Use this to override the default service endpoint URL
- Ssmincidents string
- Use this to override the default service endpoint URL
- Ssmsap string
- Use this to override the default service endpoint URL
- Sso string
- Use this to override the default service endpoint URL
- Ssoadmin string
- Use this to override the default service endpoint URL
- Stepfunctions string
- Use this to override the default service endpoint URL
- Storagegateway string
- Use this to override the default service endpoint URL
- Sts string
- Use this to override the default service endpoint URL
- Swf string
- Use this to override the default service endpoint URL
- Synthetics string
- Use this to override the default service endpoint URL
- Timestreaminfluxdb string
- Use this to override the default service endpoint URL
- Timestreamwrite string
- Use this to override the default service endpoint URL
- Transcribe string
- Use this to override the default service endpoint URL
- Transcribeservice string
- Use this to override the default service endpoint URL
- Transfer string
- Use this to override the default service endpoint URL
- Verifiedpermissions string
- Use this to override the default service endpoint URL
- Vpclattice string
- Use this to override the default service endpoint URL
- Waf string
- Use this to override the default service endpoint URL
- Wafregional string
- Use this to override the default service endpoint URL
- Wafv2 string
- Use this to override the default service endpoint URL
- Wellarchitected string
- Use this to override the default service endpoint URL
- Worklink string
- Use this to override the default service endpoint URL
- Workspaces string
- Use this to override the default service endpoint URL
- Workspacesweb string
- Use this to override the default service endpoint URL
- Xray string
- Use this to override the default service endpoint URL
- Accessanalyzer string
- Use this to override the default service endpoint URL
- Account string
- Use this to override the default service endpoint URL
- Acm string
- Use this to override the default service endpoint URL
- Acmpca string
- Use this to override the default service endpoint URL
- Amg string
- Use this to override the default service endpoint URL
- Amp string
- Use this to override the default service endpoint URL
- Amplify string
- Use this to override the default service endpoint URL
- Apigateway string
- Use this to override the default service endpoint URL
- Apigatewayv2 string
- Use this to override the default service endpoint URL
- Appautoscaling string
- Use this to override the default service endpoint URL
- Appconfig string
- Use this to override the default service endpoint URL
- Appfabric string
- Use this to override the default service endpoint URL
- Appflow string
- Use this to override the default service endpoint URL
- Appintegrations string
- Use this to override the default service endpoint URL
- Appintegrationsservice string
- Use this to override the default service endpoint URL
- Applicationautoscaling string
- Use this to override the default service endpoint URL
- Applicationinsights string
- Use this to override the default service endpoint URL
- Applicationsignals string
- Use this to override the default service endpoint URL
- Appmesh string
- Use this to override the default service endpoint URL
- Appregistry string
- Use this to override the default service endpoint URL
- Apprunner string
- Use this to override the default service endpoint URL
- Appstream string
- Use this to override the default service endpoint URL
- Appsync string
- Use this to override the default service endpoint URL
- Athena string
- Use this to override the default service endpoint URL
- Auditmanager string
- Use this to override the default service endpoint URL
- Autoscaling string
- Use this to override the default service endpoint URL
- Autoscalingplans string
- Use this to override the default service endpoint URL
- Backup string
- Use this to override the default service endpoint URL
- Batch string
- Use this to override the default service endpoint URL
- Bcmdataexports string
- Use this to override the default service endpoint URL
- Beanstalk string
- Use this to override the default service endpoint URL
- Bedrock string
- Use this to override the default service endpoint URL
- Bedrockagent string
- Use this to override the default service endpoint URL
- Budgets string
- Use this to override the default service endpoint URL
- Ce string
- Use this to override the default service endpoint URL
- Chatbot string
- Use this to override the default service endpoint URL
- Chime string
- Use this to override the default service endpoint URL
- Chimesdkmediapipelines string
- Use this to override the default service endpoint URL
- Chimesdkvoice string
- Use this to override the default service endpoint URL
- Cleanrooms string
- Use this to override the default service endpoint URL
- Cloud9 string
- Use this to override the default service endpoint URL
- Cloudcontrol string
- Use this to override the default service endpoint URL
- Cloudcontrolapi string
- Use this to override the default service endpoint URL
- Cloudformation string
- Use this to override the default service endpoint URL
- Cloudfront string
- Use this to override the default service endpoint URL
- Cloudfrontkeyvaluestore string
- Use this to override the default service endpoint URL
- Cloudhsm string
- Use this to override the default service endpoint URL
- Cloudhsmv2 string
- Use this to override the default service endpoint URL
- Cloudsearch string
- Use this to override the default service endpoint URL
- Cloudtrail string
- Use this to override the default service endpoint URL
- Cloudwatch string
- Use this to override the default service endpoint URL
- Cloudwatchevents string
- Use this to override the default service endpoint URL
- Cloudwatchevidently string
- Use this to override the default service endpoint URL
- Cloudwatchlog string
- Use this to override the default service endpoint URL
- Cloudwatchlogs string
- Use this to override the default service endpoint URL
- Cloudwatchobservabilityaccessmanager string
- Use this to override the default service endpoint URL
- Cloudwatchrum string
- Use this to override the default service endpoint URL
- Codeartifact string
- Use this to override the default service endpoint URL
- Codebuild string
- Use this to override the default service endpoint URL
- Codecatalyst string
- Use this to override the default service endpoint URL
- Codecommit string
- Use this to override the default service endpoint URL
- Codedeploy string
- Use this to override the default service endpoint URL
- Codeguruprofiler string
- Use this to override the default service endpoint URL
- Codegurureviewer string
- Use this to override the default service endpoint URL
- Codepipeline string
- Use this to override the default service endpoint URL
- Codestarconnections string
- Use this to override the default service endpoint URL
- Codestarnotifications string
- Use this to override the default service endpoint URL
- Cognitoidentity string
- Use this to override the default service endpoint URL
- Cognitoidentityprovider string
- Use this to override the default service endpoint URL
- Cognitoidp string
- Use this to override the default service endpoint URL
- Comprehend string
- Use this to override the default service endpoint URL
- Computeoptimizer string
- Use this to override the default service endpoint URL
- Config string
- Use this to override the default service endpoint URL
- Configservice string
- Use this to override the default service endpoint URL
- Connect string
- Use this to override the default service endpoint URL
- Connectcases string
- Use this to override the default service endpoint URL
- Controltower string
- Use this to override the default service endpoint URL
- Costandusagereportservice string
- Use this to override the default service endpoint URL
- Costexplorer string
- Use this to override the default service endpoint URL
- Costoptimizationhub string
- Use this to override the default service endpoint URL
- Cur string
- Use this to override the default service endpoint URL
- Customerprofiles string
- Use this to override the default service endpoint URL
- Databasemigration string
- Use this to override the default service endpoint URL
- Databasemigrationservice string
- Use this to override the default service endpoint URL
- Dataexchange string
- Use this to override the default service endpoint URL
- Datapipeline string
- Use this to override the default service endpoint URL
- Datasync string
- Use this to override the default service endpoint URL
- Datazone string
- Use this to override the default service endpoint URL
- Dax string
- Use this to override the default service endpoint URL
- Deploy string
- Use this to override the default service endpoint URL
- Detective string
- Use this to override the default service endpoint URL
- Devicefarm string
- Use this to override the default service endpoint URL
- Devopsguru string
- Use this to override the default service endpoint URL
- Directconnect string
- Use this to override the default service endpoint URL
- Directoryservice string
- Use this to override the default service endpoint URL
- Dlm string
- Use this to override the default service endpoint URL
- Dms string
- Use this to override the default service endpoint URL
- Docdb string
- Use this to override the default service endpoint URL
- Docdbelastic string
- Use this to override the default service endpoint URL
- Drs string
- Use this to override the default service endpoint URL
- Ds string
- Use this to override the default service endpoint URL
- Dynamodb string
- Use this to override the default service endpoint URL
- Ec2 string
- Use this to override the default service endpoint URL
- Ecr string
- Use this to override the default service endpoint URL
- Ecrpublic string
- Use this to override the default service endpoint URL
- Ecs string
- Use this to override the default service endpoint URL
- Efs string
- Use this to override the default service endpoint URL
- Eks string
- Use this to override the default service endpoint URL
- Elasticache string
- Use this to override the default service endpoint URL
- Elasticbeanstalk string
- Use this to override the default service endpoint URL
- Elasticloadbalancing string
- Use this to override the default service endpoint URL
- Elasticloadbalancingv2 string
- Use this to override the default service endpoint URL
- Elasticsearch string
- Use this to override the default service endpoint URL
- Elasticsearchservice string
- Use this to override the default service endpoint URL
- Elastictranscoder string
- Use this to override the default service endpoint URL
- Elb string
- Use this to override the default service endpoint URL
- Elbv2 string
- Use this to override the default service endpoint URL
- Emr string
- Use this to override the default service endpoint URL
- Emrcontainers string
- Use this to override the default service endpoint URL
- Emrserverless string
- Use this to override the default service endpoint URL
- Es string
- Use this to override the default service endpoint URL
- Eventbridge string
- Use this to override the default service endpoint URL
- Events string
- Use this to override the default service endpoint URL
- Evidently string
- Use this to override the default service endpoint URL
- Finspace string
- Use this to override the default service endpoint URL
- Firehose string
- Use this to override the default service endpoint URL
- Fis string
- Use this to override the default service endpoint URL
- Fms string
- Use this to override the default service endpoint URL
- Fsx string
- Use this to override the default service endpoint URL
- Gamelift string
- Use this to override the default service endpoint URL
- Glacier string
- Use this to override the default service endpoint URL
- Globalaccelerator string
- Use this to override the default service endpoint URL
- Glue string
- Use this to override the default service endpoint URL
- Grafana string
- Use this to override the default service endpoint URL
- Greengrass string
- Use this to override the default service endpoint URL
- Groundstation string
- Use this to override the default service endpoint URL
- Guardduty string
- Use this to override the default service endpoint URL
- Healthlake string
- Use this to override the default service endpoint URL
- Iam string
- Use this to override the default service endpoint URL
- Identitystore string
- Use this to override the default service endpoint URL
- Imagebuilder string
- Use this to override the default service endpoint URL
- Inspector string
- Use this to override the default service endpoint URL
- Inspector2 string
- Use this to override the default service endpoint URL
- Inspectorv2 string
- Use this to override the default service endpoint URL
- Internetmonitor string
- Use this to override the default service endpoint URL
- Iot string
- Use this to override the default service endpoint URL
- Iotanalytics string
- Use this to override the default service endpoint URL
- Iotevents string
- Use this to override the default service endpoint URL
- Ivs string
- Use this to override the default service endpoint URL
- Ivschat string
- Use this to override the default service endpoint URL
- Kafka string
- Use this to override the default service endpoint URL
- Kafkaconnect string
- Use this to override the default service endpoint URL
- Kendra string
- Use this to override the default service endpoint URL
- Keyspaces string
- Use this to override the default service endpoint URL
- Kinesis string
- Use this to override the default service endpoint URL
- Kinesisanalytics string
- Use this to override the default service endpoint URL
- Kinesisanalyticsv2 string
- Use this to override the default service endpoint URL
- Kinesisvideo string
- Use this to override the default service endpoint URL
- Kms string
- Use this to override the default service endpoint URL
- Lakeformation string
- Use this to override the default service endpoint URL
- Lambda string
- Use this to override the default service endpoint URL
- Launchwizard string
- Use this to override the default service endpoint URL
- Lex string
- Use this to override the default service endpoint URL
- Lexmodelbuilding string
- Use this to override the default service endpoint URL
- Lexmodelbuildingservice string
- Use this to override the default service endpoint URL
- Lexmodels string
- Use this to override the default service endpoint URL
- Lexmodelsv2 string
- Use this to override the default service endpoint URL
- Lexv2models string
- Use this to override the default service endpoint URL
- Licensemanager string
- Use this to override the default service endpoint URL
- Lightsail string
- Use this to override the default service endpoint URL
- Location string
- Use this to override the default service endpoint URL
- Locationservice string
- Use this to override the default service endpoint URL
- Logs string
- Use this to override the default service endpoint URL
- Lookoutmetrics string
- Use this to override the default service endpoint URL
- M2 string
- Use this to override the default service endpoint URL
- Macie2 string
- Use this to override the default service endpoint URL
- Managedgrafana string
- Use this to override the default service endpoint URL
- Mediaconnect string
- Use this to override the default service endpoint URL
- Mediaconvert string
- Use this to override the default service endpoint URL
- Medialive string
- Use this to override the default service endpoint URL
- Mediapackage string
- Use this to override the default service endpoint URL
- Mediapackagev2 string
- Use this to override the default service endpoint URL
- Mediastore string
- Use this to override the default service endpoint URL
- Memorydb string
- Use this to override the default service endpoint URL
- Mq string
- Use this to override the default service endpoint URL
- Msk string
- Use this to override the default service endpoint URL
- Mwaa string
- Use this to override the default service endpoint URL
- Neptune string
- Use this to override the default service endpoint URL
- Neptunegraph string
- Use this to override the default service endpoint URL
- Networkfirewall string
- Use this to override the default service endpoint URL
- Networkmanager string
- Use this to override the default service endpoint URL
- Oam string
- Use this to override the default service endpoint URL
- Opensearch string
- Use this to override the default service endpoint URL
- Opensearchingestion string
- Use this to override the default service endpoint URL
- Opensearchserverless string
- Use this to override the default service endpoint URL
- Opensearchservice string
- Use this to override the default service endpoint URL
- Opsworks string
- Use this to override the default service endpoint URL
- Organizations string
- Use this to override the default service endpoint URL
- Osis string
- Use this to override the default service endpoint URL
- Outposts string
- Use this to override the default service endpoint URL
- Paymentcryptography string
- Use this to override the default service endpoint URL
- Pcaconnectorad string
- Use this to override the default service endpoint URL
- Pinpoint string
- Use this to override the default service endpoint URL
- Pipes string
- Use this to override the default service endpoint URL
- Polly string
- Use this to override the default service endpoint URL
- Pricing string
- Use this to override the default service endpoint URL
- Prometheus string
- Use this to override the default service endpoint URL
- Prometheusservice string
- Use this to override the default service endpoint URL
- Qbusiness string
- Use this to override the default service endpoint URL
- Qldb string
- Use this to override the default service endpoint URL
- Quicksight string
- Use this to override the default service endpoint URL
- Ram string
- Use this to override the default service endpoint URL
- Rbin string
- Use this to override the default service endpoint URL
- Rds string
- Use this to override the default service endpoint URL
- Recyclebin string
- Use this to override the default service endpoint URL
- Redshift string
- Use this to override the default service endpoint URL
- Redshiftdata string
- Use this to override the default service endpoint URL
- Redshiftdataapiservice string
- Use this to override the default service endpoint URL
- Redshiftserverless string
- Use this to override the default service endpoint URL
- Rekognition string
- Use this to override the default service endpoint URL
- Resourceexplorer2 string
- Use this to override the default service endpoint URL
- Resourcegroups string
- Use this to override the default service endpoint URL
- Resourcegroupstagging string
- Use this to override the default service endpoint URL
- Resourcegroupstaggingapi string
- Use this to override the default service endpoint URL
- Rolesanywhere string
- Use this to override the default service endpoint URL
- Route53 string
- Use this to override the default service endpoint URL
- Route53domains string
- Use this to override the default service endpoint URL
- Route53profiles string
- Use this to override the default service endpoint URL
- Route53recoverycontrolconfig string
- Use this to override the default service endpoint URL
- Route53recoveryreadiness string
- Use this to override the default service endpoint URL
- Route53resolver string
- Use this to override the default service endpoint URL
- Rum string
- Use this to override the default service endpoint URL
- S3 string
- Use this to override the default service endpoint URL
- S3api string
- Use this to override the default service endpoint URL
- S3control string
- Use this to override the default service endpoint URL
- S3outposts string
- Use this to override the default service endpoint URL
- Sagemaker string
- Use this to override the default service endpoint URL
- Scheduler string
- Use this to override the default service endpoint URL
- Schemas string
- Use this to override the default service endpoint URL
- Sdb string
- Use this to override the default service endpoint URL
- Secretsmanager string
- Use this to override the default service endpoint URL
- Securityhub string
- Use this to override the default service endpoint URL
- Securitylake string
- Use this to override the default service endpoint URL
- Serverlessapplicationrepository string
- Use this to override the default service endpoint URL
- Serverlessapprepo string
- Use this to override the default service endpoint URL
- Serverlessrepo string
- Use this to override the default service endpoint URL
- Servicecatalog string
- Use this to override the default service endpoint URL
- Servicecatalogappregistry string
- Use this to override the default service endpoint URL
- Servicediscovery string
- Use this to override the default service endpoint URL
- Servicequotas string
- Use this to override the default service endpoint URL
- Ses string
- Use this to override the default service endpoint URL
- Sesv2 string
- Use this to override the default service endpoint URL
- Sfn string
- Use this to override the default service endpoint URL
- Shield string
- Use this to override the default service endpoint URL
- Signer string
- Use this to override the default service endpoint URL
- Simpledb string
- Use this to override the default service endpoint URL
- Sns string
- Use this to override the default service endpoint URL
- Sqs string
- Use this to override the default service endpoint URL
- Ssm string
- Use this to override the default service endpoint URL
- Ssmcontacts string
- Use this to override the default service endpoint URL
- Ssmincidents string
- Use this to override the default service endpoint URL
- Ssmsap string
- Use this to override the default service endpoint URL
- Sso string
- Use this to override the default service endpoint URL
- Ssoadmin string
- Use this to override the default service endpoint URL
- Stepfunctions string
- Use this to override the default service endpoint URL
- Storagegateway string
- Use this to override the default service endpoint URL
- Sts string
- Use this to override the default service endpoint URL
- Swf string
- Use this to override the default service endpoint URL
- Synthetics string
- Use this to override the default service endpoint URL
- Timestreaminfluxdb string
- Use this to override the default service endpoint URL
- Timestreamwrite string
- Use this to override the default service endpoint URL
- Transcribe string
- Use this to override the default service endpoint URL
- Transcribeservice string
- Use this to override the default service endpoint URL
- Transfer string
- Use this to override the default service endpoint URL
- Verifiedpermissions string
- Use this to override the default service endpoint URL
- Vpclattice string
- Use this to override the default service endpoint URL
- Waf string
- Use this to override the default service endpoint URL
- Wafregional string
- Use this to override the default service endpoint URL
- Wafv2 string
- Use this to override the default service endpoint URL
- Wellarchitected string
- Use this to override the default service endpoint URL
- Worklink string
- Use this to override the default service endpoint URL
- Workspaces string
- Use this to override the default service endpoint URL
- Workspacesweb string
- Use this to override the default service endpoint URL
- Xray string
- Use this to override the default service endpoint URL
- accessanalyzer String
- Use this to override the default service endpoint URL
- account String
- Use this to override the default service endpoint URL
- acm String
- Use this to override the default service endpoint URL
- acmpca String
- Use this to override the default service endpoint URL
- amg String
- Use this to override the default service endpoint URL
- amp String
- Use this to override the default service endpoint URL
- amplify String
- Use this to override the default service endpoint URL
- apigateway String
- Use this to override the default service endpoint URL
- apigatewayv2 String
- Use this to override the default service endpoint URL
- appautoscaling String
- Use this to override the default service endpoint URL
- appconfig String
- Use this to override the default service endpoint URL
- appfabric String
- Use this to override the default service endpoint URL
- appflow String
- Use this to override the default service endpoint URL
- appintegrations String
- Use this to override the default service endpoint URL
- appintegrationsservice String
- Use this to override the default service endpoint URL
- applicationautoscaling String
- Use this to override the default service endpoint URL
- applicationinsights String
- Use this to override the default service endpoint URL
- applicationsignals String
- Use this to override the default service endpoint URL
- appmesh String
- Use this to override the default service endpoint URL
- appregistry String
- Use this to override the default service endpoint URL
- apprunner String
- Use this to override the default service endpoint URL
- appstream String
- Use this to override the default service endpoint URL
- appsync String
- Use this to override the default service endpoint URL
- athena String
- Use this to override the default service endpoint URL
- auditmanager String
- Use this to override the default service endpoint URL
- autoscaling String
- Use this to override the default service endpoint URL
- autoscalingplans String
- Use this to override the default service endpoint URL
- backup String
- Use this to override the default service endpoint URL
- batch String
- Use this to override the default service endpoint URL
- bcmdataexports String
- Use this to override the default service endpoint URL
- beanstalk String
- Use this to override the default service endpoint URL
- bedrock String
- Use this to override the default service endpoint URL
- bedrockagent String
- Use this to override the default service endpoint URL
- budgets String
- Use this to override the default service endpoint URL
- ce String
- Use this to override the default service endpoint URL
- chatbot String
- Use this to override the default service endpoint URL
- chime String
- Use this to override the default service endpoint URL
- chimesdkmediapipelines String
- Use this to override the default service endpoint URL
- chimesdkvoice String
- Use this to override the default service endpoint URL
- cleanrooms String
- Use this to override the default service endpoint URL
- cloud9 String
- Use this to override the default service endpoint URL
- cloudcontrol String
- Use this to override the default service endpoint URL
- cloudcontrolapi String
- Use this to override the default service endpoint URL
- cloudformation String
- Use this to override the default service endpoint URL
- cloudfront String
- Use this to override the default service endpoint URL
- cloudfrontkeyvaluestore String
- Use this to override the default service endpoint URL
- cloudhsm String
- Use this to override the default service endpoint URL
- cloudhsmv2 String
- Use this to override the default service endpoint URL
- cloudsearch String
- Use this to override the default service endpoint URL
- cloudtrail String
- Use this to override the default service endpoint URL
- cloudwatch String
- Use this to override the default service endpoint URL
- cloudwatchevents String
- Use this to override the default service endpoint URL
- cloudwatchevidently String
- Use this to override the default service endpoint URL
- cloudwatchlog String
- Use this to override the default service endpoint URL
- cloudwatchlogs String
- Use this to override the default service endpoint URL
- cloudwatchobservabilityaccessmanager String
- Use this to override the default service endpoint URL
- cloudwatchrum String
- Use this to override the default service endpoint URL
- codeartifact String
- Use this to override the default service endpoint URL
- codebuild String
- Use this to override the default service endpoint URL
- codecatalyst String
- Use this to override the default service endpoint URL
- codecommit String
- Use this to override the default service endpoint URL
- codedeploy String
- Use this to override the default service endpoint URL
- codeguruprofiler String
- Use this to override the default service endpoint URL
- codegurureviewer String
- Use this to override the default service endpoint URL
- codepipeline String
- Use this to override the default service endpoint URL
- codestarconnections String
- Use this to override the default service endpoint URL
- codestarnotifications String
- Use this to override the default service endpoint URL
- cognitoidentity String
- Use this to override the default service endpoint URL
- cognitoidentityprovider String
- Use this to override the default service endpoint URL
- cognitoidp String
- Use this to override the default service endpoint URL
- comprehend String
- Use this to override the default service endpoint URL
- computeoptimizer String
- Use this to override the default service endpoint URL
- config String
- Use this to override the default service endpoint URL
- configservice String
- Use this to override the default service endpoint URL
- connect String
- Use this to override the default service endpoint URL
- connectcases String
- Use this to override the default service endpoint URL
- controltower String
- Use this to override the default service endpoint URL
- costandusagereportservice String
- Use this to override the default service endpoint URL
- costexplorer String
- Use this to override the default service endpoint URL
- costoptimizationhub String
- Use this to override the default service endpoint URL
- cur String
- Use this to override the default service endpoint URL
- customerprofiles String
- Use this to override the default service endpoint URL
- databasemigration String
- Use this to override the default service endpoint URL
- databasemigrationservice String
- Use this to override the default service endpoint URL
- dataexchange String
- Use this to override the default service endpoint URL
- datapipeline String
- Use this to override the default service endpoint URL
- datasync String
- Use this to override the default service endpoint URL
- datazone String
- Use this to override the default service endpoint URL
- dax String
- Use this to override the default service endpoint URL
- deploy String
- Use this to override the default service endpoint URL
- detective String
- Use this to override the default service endpoint URL
- devicefarm String
- Use this to override the default service endpoint URL
- devopsguru String
- Use this to override the default service endpoint URL
- directconnect String
- Use this to override the default service endpoint URL
- directoryservice String
- Use this to override the default service endpoint URL
- dlm String
- Use this to override the default service endpoint URL
- dms String
- Use this to override the default service endpoint URL
- docdb String
- Use this to override the default service endpoint URL
- docdbelastic String
- Use this to override the default service endpoint URL
- drs String
- Use this to override the default service endpoint URL
- ds String
- Use this to override the default service endpoint URL
- dynamodb String
- Use this to override the default service endpoint URL
- ec2 String
- Use this to override the default service endpoint URL
- ecr String
- Use this to override the default service endpoint URL
- ecrpublic String
- Use this to override the default service endpoint URL
- ecs String
- Use this to override the default service endpoint URL
- efs String
- Use this to override the default service endpoint URL
- eks String
- Use this to override the default service endpoint URL
- elasticache String
- Use this to override the default service endpoint URL
- elasticbeanstalk String
- Use this to override the default service endpoint URL
- elasticloadbalancing String
- Use this to override the default service endpoint URL
- elasticloadbalancingv2 String
- Use this to override the default service endpoint URL
- elasticsearch String
- Use this to override the default service endpoint URL
- elasticsearchservice String
- Use this to override the default service endpoint URL
- elastictranscoder String
- Use this to override the default service endpoint URL
- elb String
- Use this to override the default service endpoint URL
- elbv2 String
- Use this to override the default service endpoint URL
- emr String
- Use this to override the default service endpoint URL
- emrcontainers String
- Use this to override the default service endpoint URL
- emrserverless String
- Use this to override the default service endpoint URL
- es String
- Use this to override the default service endpoint URL
- eventbridge String
- Use this to override the default service endpoint URL
- events String
- Use this to override the default service endpoint URL
- evidently String
- Use this to override the default service endpoint URL
- finspace String
- Use this to override the default service endpoint URL
- firehose String
- Use this to override the default service endpoint URL
- fis String
- Use this to override the default service endpoint URL
- fms String
- Use this to override the default service endpoint URL
- fsx String
- Use this to override the default service endpoint URL
- gamelift String
- Use this to override the default service endpoint URL
- glacier String
- Use this to override the default service endpoint URL
- globalaccelerator String
- Use this to override the default service endpoint URL
- glue String
- Use this to override the default service endpoint URL
- grafana String
- Use this to override the default service endpoint URL
- greengrass String
- Use this to override the default service endpoint URL
- groundstation String
- Use this to override the default service endpoint URL
- guardduty String
- Use this to override the default service endpoint URL
- healthlake String
- Use this to override the default service endpoint URL
- iam String
- Use this to override the default service endpoint URL
- identitystore String
- Use this to override the default service endpoint URL
- imagebuilder String
- Use this to override the default service endpoint URL
- inspector String
- Use this to override the default service endpoint URL
- inspector2 String
- Use this to override the default service endpoint URL
- inspectorv2 String
- Use this to override the default service endpoint URL
- internetmonitor String
- Use this to override the default service endpoint URL
- iot String
- Use this to override the default service endpoint URL
- iotanalytics String
- Use this to override the default service endpoint URL
- iotevents String
- Use this to override the default service endpoint URL
- ivs String
- Use this to override the default service endpoint URL
- ivschat String
- Use this to override the default service endpoint URL
- kafka String
- Use this to override the default service endpoint URL
- kafkaconnect String
- Use this to override the default service endpoint URL
- kendra String
- Use this to override the default service endpoint URL
- keyspaces String
- Use this to override the default service endpoint URL
- kinesis String
- Use this to override the default service endpoint URL
- kinesisanalytics String
- Use this to override the default service endpoint URL
- kinesisanalyticsv2 String
- Use this to override the default service endpoint URL
- kinesisvideo String
- Use this to override the default service endpoint URL
- kms String
- Use this to override the default service endpoint URL
- lakeformation String
- Use this to override the default service endpoint URL
- lambda String
- Use this to override the default service endpoint URL
- launchwizard String
- Use this to override the default service endpoint URL
- lex String
- Use this to override the default service endpoint URL
- lexmodelbuilding String
- Use this to override the default service endpoint URL
- lexmodelbuildingservice String
- Use this to override the default service endpoint URL
- lexmodels String
- Use this to override the default service endpoint URL
- lexmodelsv2 String
- Use this to override the default service endpoint URL
- lexv2models String
- Use this to override the default service endpoint URL
- licensemanager String
- Use this to override the default service endpoint URL
- lightsail String
- Use this to override the default service endpoint URL
- location String
- Use this to override the default service endpoint URL
- locationservice String
- Use this to override the default service endpoint URL
- logs String
- Use this to override the default service endpoint URL
- lookoutmetrics String
- Use this to override the default service endpoint URL
- m2 String
- Use this to override the default service endpoint URL
- macie2 String
- Use this to override the default service endpoint URL
- managedgrafana String
- Use this to override the default service endpoint URL
- mediaconnect String
- Use this to override the default service endpoint URL
- mediaconvert String
- Use this to override the default service endpoint URL
- medialive String
- Use this to override the default service endpoint URL
- mediapackage String
- Use this to override the default service endpoint URL
- mediapackagev2 String
- Use this to override the default service endpoint URL
- mediastore String
- Use this to override the default service endpoint URL
- memorydb String
- Use this to override the default service endpoint URL
- mq String
- Use this to override the default service endpoint URL
- msk String
- Use this to override the default service endpoint URL
- mwaa String
- Use this to override the default service endpoint URL
- neptune String
- Use this to override the default service endpoint URL
- neptunegraph String
- Use this to override the default service endpoint URL
- networkfirewall String
- Use this to override the default service endpoint URL
- networkmanager String
- Use this to override the default service endpoint URL
- oam String
- Use this to override the default service endpoint URL
- opensearch String
- Use this to override the default service endpoint URL
- opensearchingestion String
- Use this to override the default service endpoint URL
- opensearchserverless String
- Use this to override the default service endpoint URL
- opensearchservice String
- Use this to override the default service endpoint URL
- opsworks String
- Use this to override the default service endpoint URL
- organizations String
- Use this to override the default service endpoint URL
- osis String
- Use this to override the default service endpoint URL
- outposts String
- Use this to override the default service endpoint URL
- paymentcryptography String
- Use this to override the default service endpoint URL
- pcaconnectorad String
- Use this to override the default service endpoint URL
- pinpoint String
- Use this to override the default service endpoint URL
- pipes String
- Use this to override the default service endpoint URL
- polly String
- Use this to override the default service endpoint URL
- pricing String
- Use this to override the default service endpoint URL
- prometheus String
- Use this to override the default service endpoint URL
- prometheusservice String
- Use this to override the default service endpoint URL
- qbusiness String
- Use this to override the default service endpoint URL
- qldb String
- Use this to override the default service endpoint URL
- quicksight String
- Use this to override the default service endpoint URL
- ram String
- Use this to override the default service endpoint URL
- rbin String
- Use this to override the default service endpoint URL
- rds String
- Use this to override the default service endpoint URL
- recyclebin String
- Use this to override the default service endpoint URL
- redshift String
- Use this to override the default service endpoint URL
- redshiftdata String
- Use this to override the default service endpoint URL
- redshiftdataapiservice String
- Use this to override the default service endpoint URL
- redshiftserverless String
- Use this to override the default service endpoint URL
- rekognition String
- Use this to override the default service endpoint URL
- resourceexplorer2 String
- Use this to override the default service endpoint URL
- resourcegroups String
- Use this to override the default service endpoint URL
- resourcegroupstagging String
- Use this to override the default service endpoint URL
- resourcegroupstaggingapi String
- Use this to override the default service endpoint URL
- rolesanywhere String
- Use this to override the default service endpoint URL
- route53 String
- Use this to override the default service endpoint URL
- route53domains String
- Use this to override the default service endpoint URL
- route53profiles String
- Use this to override the default service endpoint URL
- route53recoverycontrolconfig String
- Use this to override the default service endpoint URL
- route53recoveryreadiness String
- Use this to override the default service endpoint URL
- route53resolver String
- Use this to override the default service endpoint URL
- rum String
- Use this to override the default service endpoint URL
- s3 String
- Use this to override the default service endpoint URL
- s3api String
- Use this to override the default service endpoint URL
- s3control String
- Use this to override the default service endpoint URL
- s3outposts String
- Use this to override the default service endpoint URL
- sagemaker String
- Use this to override the default service endpoint URL
- scheduler String
- Use this to override the default service endpoint URL
- schemas String
- Use this to override the default service endpoint URL
- sdb String
- Use this to override the default service endpoint URL
- secretsmanager String
- Use this to override the default service endpoint URL
- securityhub String
- Use this to override the default service endpoint URL
- securitylake String
- Use this to override the default service endpoint URL
- serverlessapplicationrepository String
- Use this to override the default service endpoint URL
- serverlessapprepo String
- Use this to override the default service endpoint URL
- serverlessrepo String
- Use this to override the default service endpoint URL
- servicecatalog String
- Use this to override the default service endpoint URL
- servicecatalogappregistry String
- Use this to override the default service endpoint URL
- servicediscovery String
- Use this to override the default service endpoint URL
- servicequotas String
- Use this to override the default service endpoint URL
- ses String
- Use this to override the default service endpoint URL
- sesv2 String
- Use this to override the default service endpoint URL
- sfn String
- Use this to override the default service endpoint URL
- shield String
- Use this to override the default service endpoint URL
- signer String
- Use this to override the default service endpoint URL
- simpledb String
- Use this to override the default service endpoint URL
- sns String
- Use this to override the default service endpoint URL
- sqs String
- Use this to override the default service endpoint URL
- ssm String
- Use this to override the default service endpoint URL
- ssmcontacts String
- Use this to override the default service endpoint URL
- ssmincidents String
- Use this to override the default service endpoint URL
- ssmsap String
- Use this to override the default service endpoint URL
- sso String
- Use this to override the default service endpoint URL
- ssoadmin String
- Use this to override the default service endpoint URL
- stepfunctions String
- Use this to override the default service endpoint URL
- storagegateway String
- Use this to override the default service endpoint URL
- sts String
- Use this to override the default service endpoint URL
- swf String
- Use this to override the default service endpoint URL
- synthetics String
- Use this to override the default service endpoint URL
- timestreaminfluxdb String
- Use this to override the default service endpoint URL
- timestreamwrite String
- Use this to override the default service endpoint URL
- transcribe String
- Use this to override the default service endpoint URL
- transcribeservice String
- Use this to override the default service endpoint URL
- transfer String
- Use this to override the default service endpoint URL
- verifiedpermissions String
- Use this to override the default service endpoint URL
- vpclattice String
- Use this to override the default service endpoint URL
- waf String
- Use this to override the default service endpoint URL
- wafregional String
- Use this to override the default service endpoint URL
- wafv2 String
- Use this to override the default service endpoint URL
- wellarchitected String
- Use this to override the default service endpoint URL
- worklink String
- Use this to override the default service endpoint URL
- workspaces String
- Use this to override the default service endpoint URL
- workspacesweb String
- Use this to override the default service endpoint URL
- xray String
- Use this to override the default service endpoint URL
- accessanalyzer string
- Use this to override the default service endpoint URL
- account string
- Use this to override the default service endpoint URL
- acm string
- Use this to override the default service endpoint URL
- acmpca string
- Use this to override the default service endpoint URL
- amg string
- Use this to override the default service endpoint URL
- amp string
- Use this to override the default service endpoint URL
- amplify string
- Use this to override the default service endpoint URL
- apigateway string
- Use this to override the default service endpoint URL
- apigatewayv2 string
- Use this to override the default service endpoint URL
- appautoscaling string
- Use this to override the default service endpoint URL
- appconfig string
- Use this to override the default service endpoint URL
- appfabric string
- Use this to override the default service endpoint URL
- appflow string
- Use this to override the default service endpoint URL
- appintegrations string
- Use this to override the default service endpoint URL
- appintegrationsservice string
- Use this to override the default service endpoint URL
- applicationautoscaling string
- Use this to override the default service endpoint URL
- applicationinsights string
- Use this to override the default service endpoint URL
- applicationsignals string
- Use this to override the default service endpoint URL
- appmesh string
- Use this to override the default service endpoint URL
- appregistry string
- Use this to override the default service endpoint URL
- apprunner string
- Use this to override the default service endpoint URL
- appstream string
- Use this to override the default service endpoint URL
- appsync string
- Use this to override the default service endpoint URL
- athena string
- Use this to override the default service endpoint URL
- auditmanager string
- Use this to override the default service endpoint URL
- autoscaling string
- Use this to override the default service endpoint URL
- autoscalingplans string
- Use this to override the default service endpoint URL
- backup string
- Use this to override the default service endpoint URL
- batch string
- Use this to override the default service endpoint URL
- bcmdataexports string
- Use this to override the default service endpoint URL
- beanstalk string
- Use this to override the default service endpoint URL
- bedrock string
- Use this to override the default service endpoint URL
- bedrockagent string
- Use this to override the default service endpoint URL
- budgets string
- Use this to override the default service endpoint URL
- ce string
- Use this to override the default service endpoint URL
- chatbot string
- Use this to override the default service endpoint URL
- chime string
- Use this to override the default service endpoint URL
- chimesdkmediapipelines string
- Use this to override the default service endpoint URL
- chimesdkvoice string
- Use this to override the default service endpoint URL
- cleanrooms string
- Use this to override the default service endpoint URL
- cloud9 string
- Use this to override the default service endpoint URL
- cloudcontrol string
- Use this to override the default service endpoint URL
- cloudcontrolapi string
- Use this to override the default service endpoint URL
- cloudformation string
- Use this to override the default service endpoint URL
- cloudfront string
- Use this to override the default service endpoint URL
- cloudfrontkeyvaluestore string
- Use this to override the default service endpoint URL
- cloudhsm string
- Use this to override the default service endpoint URL
- cloudhsmv2 string
- Use this to override the default service endpoint URL
- cloudsearch string
- Use this to override the default service endpoint URL
- cloudtrail string
- Use this to override the default service endpoint URL
- cloudwatch string
- Use this to override the default service endpoint URL
- cloudwatchevents string
- Use this to override the default service endpoint URL
- cloudwatchevidently string
- Use this to override the default service endpoint URL
- cloudwatchlog string
- Use this to override the default service endpoint URL
- cloudwatchlogs string
- Use this to override the default service endpoint URL
- cloudwatchobservabilityaccessmanager string
- Use this to override the default service endpoint URL
- cloudwatchrum string
- Use this to override the default service endpoint URL
- codeartifact string
- Use this to override the default service endpoint URL
- codebuild string
- Use this to override the default service endpoint URL
- codecatalyst string
- Use this to override the default service endpoint URL
- codecommit string
- Use this to override the default service endpoint URL
- codedeploy string
- Use this to override the default service endpoint URL
- codeguruprofiler string
- Use this to override the default service endpoint URL
- codegurureviewer string
- Use this to override the default service endpoint URL
- codepipeline string
- Use this to override the default service endpoint URL
- codestarconnections string
- Use this to override the default service endpoint URL
- codestarnotifications string
- Use this to override the default service endpoint URL
- cognitoidentity string
- Use this to override the default service endpoint URL
- cognitoidentityprovider string
- Use this to override the default service endpoint URL
- cognitoidp string
- Use this to override the default service endpoint URL
- comprehend string
- Use this to override the default service endpoint URL
- computeoptimizer string
- Use this to override the default service endpoint URL
- config string
- Use this to override the default service endpoint URL
- configservice string
- Use this to override the default service endpoint URL
- connect string
- Use this to override the default service endpoint URL
- connectcases string
- Use this to override the default service endpoint URL
- controltower string
- Use this to override the default service endpoint URL
- costandusagereportservice string
- Use this to override the default service endpoint URL
- costexplorer string
- Use this to override the default service endpoint URL
- costoptimizationhub string
- Use this to override the default service endpoint URL
- cur string
- Use this to override the default service endpoint URL
- customerprofiles string
- Use this to override the default service endpoint URL
- databasemigration string
- Use this to override the default service endpoint URL
- databasemigrationservice string
- Use this to override the default service endpoint URL
- dataexchange string
- Use this to override the default service endpoint URL
- datapipeline string
- Use this to override the default service endpoint URL
- datasync string
- Use this to override the default service endpoint URL
- datazone string
- Use this to override the default service endpoint URL
- dax string
- Use this to override the default service endpoint URL
- deploy string
- Use this to override the default service endpoint URL
- detective string
- Use this to override the default service endpoint URL
- devicefarm string
- Use this to override the default service endpoint URL
- devopsguru string
- Use this to override the default service endpoint URL
- directconnect string
- Use this to override the default service endpoint URL
- directoryservice string
- Use this to override the default service endpoint URL
- dlm string
- Use this to override the default service endpoint URL
- dms string
- Use this to override the default service endpoint URL
- docdb string
- Use this to override the default service endpoint URL
- docdbelastic string
- Use this to override the default service endpoint URL
- drs string
- Use this to override the default service endpoint URL
- ds string
- Use this to override the default service endpoint URL
- dynamodb string
- Use this to override the default service endpoint URL
- ec2 string
- Use this to override the default service endpoint URL
- ecr string
- Use this to override the default service endpoint URL
- ecrpublic string
- Use this to override the default service endpoint URL
- ecs string
- Use this to override the default service endpoint URL
- efs string
- Use this to override the default service endpoint URL
- eks string
- Use this to override the default service endpoint URL
- elasticache string
- Use this to override the default service endpoint URL
- elasticbeanstalk string
- Use this to override the default service endpoint URL
- elasticloadbalancing string
- Use this to override the default service endpoint URL
- elasticloadbalancingv2 string
- Use this to override the default service endpoint URL
- elasticsearch string
- Use this to override the default service endpoint URL
- elasticsearchservice string
- Use this to override the default service endpoint URL
- elastictranscoder string
- Use this to override the default service endpoint URL
- elb string
- Use this to override the default service endpoint URL
- elbv2 string
- Use this to override the default service endpoint URL
- emr string
- Use this to override the default service endpoint URL
- emrcontainers string
- Use this to override the default service endpoint URL
- emrserverless string
- Use this to override the default service endpoint URL
- es string
- Use this to override the default service endpoint URL
- eventbridge string
- Use this to override the default service endpoint URL
- events string
- Use this to override the default service endpoint URL
- evidently string
- Use this to override the default service endpoint URL
- finspace string
- Use this to override the default service endpoint URL
- firehose string
- Use this to override the default service endpoint URL
- fis string
- Use this to override the default service endpoint URL
- fms string
- Use this to override the default service endpoint URL
- fsx string
- Use this to override the default service endpoint URL
- gamelift string
- Use this to override the default service endpoint URL
- glacier string
- Use this to override the default service endpoint URL
- globalaccelerator string
- Use this to override the default service endpoint URL
- glue string
- Use this to override the default service endpoint URL
- grafana string
- Use this to override the default service endpoint URL
- greengrass string
- Use this to override the default service endpoint URL
- groundstation string
- Use this to override the default service endpoint URL
- guardduty string
- Use this to override the default service endpoint URL
- healthlake string
- Use this to override the default service endpoint URL
- iam string
- Use this to override the default service endpoint URL
- identitystore string
- Use this to override the default service endpoint URL
- imagebuilder string
- Use this to override the default service endpoint URL
- inspector string
- Use this to override the default service endpoint URL
- inspector2 string
- Use this to override the default service endpoint URL
- inspectorv2 string
- Use this to override the default service endpoint URL
- internetmonitor string
- Use this to override the default service endpoint URL
- iot string
- Use this to override the default service endpoint URL
- iotanalytics string
- Use this to override the default service endpoint URL
- iotevents string
- Use this to override the default service endpoint URL
- ivs string
- Use this to override the default service endpoint URL
- ivschat string
- Use this to override the default service endpoint URL
- kafka string
- Use this to override the default service endpoint URL
- kafkaconnect string
- Use this to override the default service endpoint URL
- kendra string
- Use this to override the default service endpoint URL
- keyspaces string
- Use this to override the default service endpoint URL
- kinesis string
- Use this to override the default service endpoint URL
- kinesisanalytics string
- Use this to override the default service endpoint URL
- kinesisanalyticsv2 string
- Use this to override the default service endpoint URL
- kinesisvideo string
- Use this to override the default service endpoint URL
- kms string
- Use this to override the default service endpoint URL
- lakeformation string
- Use this to override the default service endpoint URL
- lambda string
- Use this to override the default service endpoint URL
- launchwizard string
- Use this to override the default service endpoint URL
- lex string
- Use this to override the default service endpoint URL
- lexmodelbuilding string
- Use this to override the default service endpoint URL
- lexmodelbuildingservice string
- Use this to override the default service endpoint URL
- lexmodels string
- Use this to override the default service endpoint URL
- lexmodelsv2 string
- Use this to override the default service endpoint URL
- lexv2models string
- Use this to override the default service endpoint URL
- licensemanager string
- Use this to override the default service endpoint URL
- lightsail string
- Use this to override the default service endpoint URL
- location string
- Use this to override the default service endpoint URL
- locationservice string
- Use this to override the default service endpoint URL
- logs string
- Use this to override the default service endpoint URL
- lookoutmetrics string
- Use this to override the default service endpoint URL
- m2 string
- Use this to override the default service endpoint URL
- macie2 string
- Use this to override the default service endpoint URL
- managedgrafana string
- Use this to override the default service endpoint URL
- mediaconnect string
- Use this to override the default service endpoint URL
- mediaconvert string
- Use this to override the default service endpoint URL
- medialive string
- Use this to override the default service endpoint URL
- mediapackage string
- Use this to override the default service endpoint URL
- mediapackagev2 string
- Use this to override the default service endpoint URL
- mediastore string
- Use this to override the default service endpoint URL
- memorydb string
- Use this to override the default service endpoint URL
- mq string
- Use this to override the default service endpoint URL
- msk string
- Use this to override the default service endpoint URL
- mwaa string
- Use this to override the default service endpoint URL
- neptune string
- Use this to override the default service endpoint URL
- neptunegraph string
- Use this to override the default service endpoint URL
- networkfirewall string
- Use this to override the default service endpoint URL
- networkmanager string
- Use this to override the default service endpoint URL
- oam string
- Use this to override the default service endpoint URL
- opensearch string
- Use this to override the default service endpoint URL
- opensearchingestion string
- Use this to override the default service endpoint URL
- opensearchserverless string
- Use this to override the default service endpoint URL
- opensearchservice string
- Use this to override the default service endpoint URL
- opsworks string
- Use this to override the default service endpoint URL
- organizations string
- Use this to override the default service endpoint URL
- osis string
- Use this to override the default service endpoint URL
- outposts string
- Use this to override the default service endpoint URL
- paymentcryptography string
- Use this to override the default service endpoint URL
- pcaconnectorad string
- Use this to override the default service endpoint URL
- pinpoint string
- Use this to override the default service endpoint URL
- pipes string
- Use this to override the default service endpoint URL
- polly string
- Use this to override the default service endpoint URL
- pricing string
- Use this to override the default service endpoint URL
- prometheus string
- Use this to override the default service endpoint URL
- prometheusservice string
- Use this to override the default service endpoint URL
- qbusiness string
- Use this to override the default service endpoint URL
- qldb string
- Use this to override the default service endpoint URL
- quicksight string
- Use this to override the default service endpoint URL
- ram string
- Use this to override the default service endpoint URL
- rbin string
- Use this to override the default service endpoint URL
- rds string
- Use this to override the default service endpoint URL
- recyclebin string
- Use this to override the default service endpoint URL
- redshift string
- Use this to override the default service endpoint URL
- redshiftdata string
- Use this to override the default service endpoint URL
- redshiftdataapiservice string
- Use this to override the default service endpoint URL
- redshiftserverless string
- Use this to override the default service endpoint URL
- rekognition string
- Use this to override the default service endpoint URL
- resourceexplorer2 string
- Use this to override the default service endpoint URL
- resourcegroups string
- Use this to override the default service endpoint URL
- resourcegroupstagging string
- Use this to override the default service endpoint URL
- resourcegroupstaggingapi string
- Use this to override the default service endpoint URL
- rolesanywhere string
- Use this to override the default service endpoint URL
- route53 string
- Use this to override the default service endpoint URL
- route53domains string
- Use this to override the default service endpoint URL
- route53profiles string
- Use this to override the default service endpoint URL
- route53recoverycontrolconfig string
- Use this to override the default service endpoint URL
- route53recoveryreadiness string
- Use this to override the default service endpoint URL
- route53resolver string
- Use this to override the default service endpoint URL
- rum string
- Use this to override the default service endpoint URL
- s3 string
- Use this to override the default service endpoint URL
- s3api string
- Use this to override the default service endpoint URL
- s3control string
- Use this to override the default service endpoint URL
- s3outposts string
- Use this to override the default service endpoint URL
- sagemaker string
- Use this to override the default service endpoint URL
- scheduler string
- Use this to override the default service endpoint URL
- schemas string
- Use this to override the default service endpoint URL
- sdb string
- Use this to override the default service endpoint URL
- secretsmanager string
- Use this to override the default service endpoint URL
- securityhub string
- Use this to override the default service endpoint URL
- securitylake string
- Use this to override the default service endpoint URL
- serverlessapplicationrepository string
- Use this to override the default service endpoint URL
- serverlessapprepo string
- Use this to override the default service endpoint URL
- serverlessrepo string
- Use this to override the default service endpoint URL
- servicecatalog string
- Use this to override the default service endpoint URL
- servicecatalogappregistry string
- Use this to override the default service endpoint URL
- servicediscovery string
- Use this to override the default service endpoint URL
- servicequotas string
- Use this to override the default service endpoint URL
- ses string
- Use this to override the default service endpoint URL
- sesv2 string
- Use this to override the default service endpoint URL
- sfn string
- Use this to override the default service endpoint URL
- shield string
- Use this to override the default service endpoint URL
- signer string
- Use this to override the default service endpoint URL
- simpledb string
- Use this to override the default service endpoint URL
- sns string
- Use this to override the default service endpoint URL
- sqs string
- Use this to override the default service endpoint URL
- ssm string
- Use this to override the default service endpoint URL
- ssmcontacts string
- Use this to override the default service endpoint URL
- ssmincidents string
- Use this to override the default service endpoint URL
- ssmsap string
- Use this to override the default service endpoint URL
- sso string
- Use this to override the default service endpoint URL
- ssoadmin string
- Use this to override the default service endpoint URL
- stepfunctions string
- Use this to override the default service endpoint URL
- storagegateway string
- Use this to override the default service endpoint URL
- sts string
- Use this to override the default service endpoint URL
- swf string
- Use this to override the default service endpoint URL
- synthetics string
- Use this to override the default service endpoint URL
- timestreaminfluxdb string
- Use this to override the default service endpoint URL
- timestreamwrite string
- Use this to override the default service endpoint URL
- transcribe string
- Use this to override the default service endpoint URL
- transcribeservice string
- Use this to override the default service endpoint URL
- transfer string
- Use this to override the default service endpoint URL
- verifiedpermissions string
- Use this to override the default service endpoint URL
- vpclattice string
- Use this to override the default service endpoint URL
- waf string
- Use this to override the default service endpoint URL
- wafregional string
- Use this to override the default service endpoint URL
- wafv2 string
- Use this to override the default service endpoint URL
- wellarchitected string
- Use this to override the default service endpoint URL
- worklink string
- Use this to override the default service endpoint URL
- workspaces string
- Use this to override the default service endpoint URL
- workspacesweb string
- Use this to override the default service endpoint URL
- xray string
- Use this to override the default service endpoint URL
- accessanalyzer str
- Use this to override the default service endpoint URL
- account str
- Use this to override the default service endpoint URL
- acm str
- Use this to override the default service endpoint URL
- acmpca str
- Use this to override the default service endpoint URL
- amg str
- Use this to override the default service endpoint URL
- amp str
- Use this to override the default service endpoint URL
- amplify str
- Use this to override the default service endpoint URL
- apigateway str
- Use this to override the default service endpoint URL
- apigatewayv2 str
- Use this to override the default service endpoint URL
- appautoscaling str
- Use this to override the default service endpoint URL
- appconfig str
- Use this to override the default service endpoint URL
- appfabric str
- Use this to override the default service endpoint URL
- appflow str
- Use this to override the default service endpoint URL
- appintegrations str
- Use this to override the default service endpoint URL
- appintegrationsservice str
- Use this to override the default service endpoint URL
- applicationautoscaling str
- Use this to override the default service endpoint URL
- applicationinsights str
- Use this to override the default service endpoint URL
- applicationsignals str
- Use this to override the default service endpoint URL
- appmesh str
- Use this to override the default service endpoint URL
- appregistry str
- Use this to override the default service endpoint URL
- apprunner str
- Use this to override the default service endpoint URL
- appstream str
- Use this to override the default service endpoint URL
- appsync str
- Use this to override the default service endpoint URL
- athena str
- Use this to override the default service endpoint URL
- auditmanager str
- Use this to override the default service endpoint URL
- autoscaling str
- Use this to override the default service endpoint URL
- autoscalingplans str
- Use this to override the default service endpoint URL
- backup str
- Use this to override the default service endpoint URL
- batch str
- Use this to override the default service endpoint URL
- bcmdataexports str
- Use this to override the default service endpoint URL
- beanstalk str
- Use this to override the default service endpoint URL
- bedrock str
- Use this to override the default service endpoint URL
- bedrockagent str
- Use this to override the default service endpoint URL
- budgets str
- Use this to override the default service endpoint URL
- ce str
- Use this to override the default service endpoint URL
- chatbot str
- Use this to override the default service endpoint URL
- chime str
- Use this to override the default service endpoint URL
- chimesdkmediapipelines str
- Use this to override the default service endpoint URL
- chimesdkvoice str
- Use this to override the default service endpoint URL
- cleanrooms str
- Use this to override the default service endpoint URL
- cloud9 str
- Use this to override the default service endpoint URL
- cloudcontrol str
- Use this to override the default service endpoint URL
- cloudcontrolapi str
- Use this to override the default service endpoint URL
- cloudformation str
- Use this to override the default service endpoint URL
- cloudfront str
- Use this to override the default service endpoint URL
- cloudfrontkeyvaluestore str
- Use this to override the default service endpoint URL
- cloudhsm str
- Use this to override the default service endpoint URL
- cloudhsmv2 str
- Use this to override the default service endpoint URL
- cloudsearch str
- Use this to override the default service endpoint URL
- cloudtrail str
- Use this to override the default service endpoint URL
- cloudwatch str
- Use this to override the default service endpoint URL
- cloudwatchevents str
- Use this to override the default service endpoint URL
- cloudwatchevidently str
- Use this to override the default service endpoint URL
- cloudwatchlog str
- Use this to override the default service endpoint URL
- cloudwatchlogs str
- Use this to override the default service endpoint URL
- cloudwatchobservabilityaccessmanager str
- Use this to override the default service endpoint URL
- cloudwatchrum str
- Use this to override the default service endpoint URL
- codeartifact str
- Use this to override the default service endpoint URL
- codebuild str
- Use this to override the default service endpoint URL
- codecatalyst str
- Use this to override the default service endpoint URL
- codecommit str
- Use this to override the default service endpoint URL
- codedeploy str
- Use this to override the default service endpoint URL
- codeguruprofiler str
- Use this to override the default service endpoint URL
- codegurureviewer str
- Use this to override the default service endpoint URL
- codepipeline str
- Use this to override the default service endpoint URL
- codestarconnections str
- Use this to override the default service endpoint URL
- codestarnotifications str
- Use this to override the default service endpoint URL
- cognitoidentity str
- Use this to override the default service endpoint URL
- cognitoidentityprovider str
- Use this to override the default service endpoint URL
- cognitoidp str
- Use this to override the default service endpoint URL
- comprehend str
- Use this to override the default service endpoint URL
- computeoptimizer str
- Use this to override the default service endpoint URL
- config str
- Use this to override the default service endpoint URL
- configservice str
- Use this to override the default service endpoint URL
- connect str
- Use this to override the default service endpoint URL
- connectcases str
- Use this to override the default service endpoint URL
- controltower str
- Use this to override the default service endpoint URL
- costandusagereportservice str
- Use this to override the default service endpoint URL
- costexplorer str
- Use this to override the default service endpoint URL
- costoptimizationhub str
- Use this to override the default service endpoint URL
- cur str
- Use this to override the default service endpoint URL
- customerprofiles str
- Use this to override the default service endpoint URL
- databasemigration str
- Use this to override the default service endpoint URL
- databasemigrationservice str
- Use this to override the default service endpoint URL
- dataexchange str
- Use this to override the default service endpoint URL
- datapipeline str
- Use this to override the default service endpoint URL
- datasync str
- Use this to override the default service endpoint URL
- datazone str
- Use this to override the default service endpoint URL
- dax str
- Use this to override the default service endpoint URL
- deploy str
- Use this to override the default service endpoint URL
- detective str
- Use this to override the default service endpoint URL
- devicefarm str
- Use this to override the default service endpoint URL
- devopsguru str
- Use this to override the default service endpoint URL
- directconnect str
- Use this to override the default service endpoint URL
- directoryservice str
- Use this to override the default service endpoint URL
- dlm str
- Use this to override the default service endpoint URL
- dms str
- Use this to override the default service endpoint URL
- docdb str
- Use this to override the default service endpoint URL
- docdbelastic str
- Use this to override the default service endpoint URL
- drs str
- Use this to override the default service endpoint URL
- ds str
- Use this to override the default service endpoint URL
- dynamodb str
- Use this to override the default service endpoint URL
- ec2 str
- Use this to override the default service endpoint URL
- ecr str
- Use this to override the default service endpoint URL
- ecrpublic str
- Use this to override the default service endpoint URL
- ecs str
- Use this to override the default service endpoint URL
- efs str
- Use this to override the default service endpoint URL
- eks str
- Use this to override the default service endpoint URL
- elasticache str
- Use this to override the default service endpoint URL
- elasticbeanstalk str
- Use this to override the default service endpoint URL
- elasticloadbalancing str
- Use this to override the default service endpoint URL
- elasticloadbalancingv2 str
- Use this to override the default service endpoint URL
- elasticsearch str
- Use this to override the default service endpoint URL
- elasticsearchservice str
- Use this to override the default service endpoint URL
- elastictranscoder str
- Use this to override the default service endpoint URL
- elb str
- Use this to override the default service endpoint URL
- elbv2 str
- Use this to override the default service endpoint URL
- emr str
- Use this to override the default service endpoint URL
- emrcontainers str
- Use this to override the default service endpoint URL
- emrserverless str
- Use this to override the default service endpoint URL
- es str
- Use this to override the default service endpoint URL
- eventbridge str
- Use this to override the default service endpoint URL
- events str
- Use this to override the default service endpoint URL
- evidently str
- Use this to override the default service endpoint URL
- finspace str
- Use this to override the default service endpoint URL
- firehose str
- Use this to override the default service endpoint URL
- fis str
- Use this to override the default service endpoint URL
- fms str
- Use this to override the default service endpoint URL
- fsx str
- Use this to override the default service endpoint URL
- gamelift str
- Use this to override the default service endpoint URL
- glacier str
- Use this to override the default service endpoint URL
- globalaccelerator str
- Use this to override the default service endpoint URL
- glue str
- Use this to override the default service endpoint URL
- grafana str
- Use this to override the default service endpoint URL
- greengrass str
- Use this to override the default service endpoint URL
- groundstation str
- Use this to override the default service endpoint URL
- guardduty str
- Use this to override the default service endpoint URL
- healthlake str
- Use this to override the default service endpoint URL
- iam str
- Use this to override the default service endpoint URL
- identitystore str
- Use this to override the default service endpoint URL
- imagebuilder str
- Use this to override the default service endpoint URL
- inspector str
- Use this to override the default service endpoint URL
- inspector2 str
- Use this to override the default service endpoint URL
- inspectorv2 str
- Use this to override the default service endpoint URL
- internetmonitor str
- Use this to override the default service endpoint URL
- iot str
- Use this to override the default service endpoint URL
- iotanalytics str
- Use this to override the default service endpoint URL
- iotevents str
- Use this to override the default service endpoint URL
- ivs str
- Use this to override the default service endpoint URL
- ivschat str
- Use this to override the default service endpoint URL
- kafka str
- Use this to override the default service endpoint URL
- kafkaconnect str
- Use this to override the default service endpoint URL
- kendra str
- Use this to override the default service endpoint URL
- keyspaces str
- Use this to override the default service endpoint URL
- kinesis str
- Use this to override the default service endpoint URL
- kinesisanalytics str
- Use this to override the default service endpoint URL
- kinesisanalyticsv2 str
- Use this to override the default service endpoint URL
- kinesisvideo str
- Use this to override the default service endpoint URL
- kms str
- Use this to override the default service endpoint URL
- lakeformation str
- Use this to override the default service endpoint URL
- lambda_ str
- Use this to override the default service endpoint URL
- launchwizard str
- Use this to override the default service endpoint URL
- lex str
- Use this to override the default service endpoint URL
- lexmodelbuilding str
- Use this to override the default service endpoint URL
- lexmodelbuildingservice str
- Use this to override the default service endpoint URL
- lexmodels str
- Use this to override the default service endpoint URL
- lexmodelsv2 str
- Use this to override the default service endpoint URL
- lexv2models str
- Use this to override the default service endpoint URL
- licensemanager str
- Use this to override the default service endpoint URL
- lightsail str
- Use this to override the default service endpoint URL
- location str
- Use this to override the default service endpoint URL
- locationservice str
- Use this to override the default service endpoint URL
- logs str
- Use this to override the default service endpoint URL
- lookoutmetrics str
- Use this to override the default service endpoint URL
- m2 str
- Use this to override the default service endpoint URL
- macie2 str
- Use this to override the default service endpoint URL
- managedgrafana str
- Use this to override the default service endpoint URL
- mediaconnect str
- Use this to override the default service endpoint URL
- mediaconvert str
- Use this to override the default service endpoint URL
- medialive str
- Use this to override the default service endpoint URL
- mediapackage str
- Use this to override the default service endpoint URL
- mediapackagev2 str
- Use this to override the default service endpoint URL
- mediastore str
- Use this to override the default service endpoint URL
- memorydb str
- Use this to override the default service endpoint URL
- mq str
- Use this to override the default service endpoint URL
- msk str
- Use this to override the default service endpoint URL
- mwaa str
- Use this to override the default service endpoint URL
- neptune str
- Use this to override the default service endpoint URL
- neptunegraph str
- Use this to override the default service endpoint URL
- networkfirewall str
- Use this to override the default service endpoint URL
- networkmanager str
- Use this to override the default service endpoint URL
- oam str
- Use this to override the default service endpoint URL
- opensearch str
- Use this to override the default service endpoint URL
- opensearchingestion str
- Use this to override the default service endpoint URL
- opensearchserverless str
- Use this to override the default service endpoint URL
- opensearchservice str
- Use this to override the default service endpoint URL
- opsworks str
- Use this to override the default service endpoint URL
- organizations str
- Use this to override the default service endpoint URL
- osis str
- Use this to override the default service endpoint URL
- outposts str
- Use this to override the default service endpoint URL
- paymentcryptography str
- Use this to override the default service endpoint URL
- pcaconnectorad str
- Use this to override the default service endpoint URL
- pinpoint str
- Use this to override the default service endpoint URL
- pipes str
- Use this to override the default service endpoint URL
- polly str
- Use this to override the default service endpoint URL
- pricing str
- Use this to override the default service endpoint URL
- prometheus str
- Use this to override the default service endpoint URL
- prometheusservice str
- Use this to override the default service endpoint URL
- qbusiness str
- Use this to override the default service endpoint URL
- qldb str
- Use this to override the default service endpoint URL
- quicksight str
- Use this to override the default service endpoint URL
- ram str
- Use this to override the default service endpoint URL
- rbin str
- Use this to override the default service endpoint URL
- rds str
- Use this to override the default service endpoint URL
- recyclebin str
- Use this to override the default service endpoint URL
- redshift str
- Use this to override the default service endpoint URL
- redshiftdata str
- Use this to override the default service endpoint URL
- redshiftdataapiservice str
- Use this to override the default service endpoint URL
- redshiftserverless str
- Use this to override the default service endpoint URL
- rekognition str
- Use this to override the default service endpoint URL
- resourceexplorer2 str
- Use this to override the default service endpoint URL
- resourcegroups str
- Use this to override the default service endpoint URL
- resourcegroupstagging str
- Use this to override the default service endpoint URL
- resourcegroupstaggingapi str
- Use this to override the default service endpoint URL
- rolesanywhere str
- Use this to override the default service endpoint URL
- route53 str
- Use this to override the default service endpoint URL
- route53domains str
- Use this to override the default service endpoint URL
- route53profiles str
- Use this to override the default service endpoint URL
- route53recoverycontrolconfig str
- Use this to override the default service endpoint URL
- route53recoveryreadiness str
- Use this to override the default service endpoint URL
- route53resolver str
- Use this to override the default service endpoint URL
- rum str
- Use this to override the default service endpoint URL
- s3 str
- Use this to override the default service endpoint URL
- s3api str
- Use this to override the default service endpoint URL
- s3control str
- Use this to override the default service endpoint URL
- s3outposts str
- Use this to override the default service endpoint URL
- sagemaker str
- Use this to override the default service endpoint URL
- scheduler str
- Use this to override the default service endpoint URL
- schemas str
- Use this to override the default service endpoint URL
- sdb str
- Use this to override the default service endpoint URL
- secretsmanager str
- Use this to override the default service endpoint URL
- securityhub str
- Use this to override the default service endpoint URL
- securitylake str
- Use this to override the default service endpoint URL
- serverlessapplicationrepository str
- Use this to override the default service endpoint URL
- serverlessapprepo str
- Use this to override the default service endpoint URL
- serverlessrepo str
- Use this to override the default service endpoint URL
- servicecatalog str
- Use this to override the default service endpoint URL
- servicecatalogappregistry str
- Use this to override the default service endpoint URL
- servicediscovery str
- Use this to override the default service endpoint URL
- servicequotas str
- Use this to override the default service endpoint URL
- ses str
- Use this to override the default service endpoint URL
- sesv2 str
- Use this to override the default service endpoint URL
- sfn str
- Use this to override the default service endpoint URL
- shield str
- Use this to override the default service endpoint URL
- signer str
- Use this to override the default service endpoint URL
- simpledb str
- Use this to override the default service endpoint URL
- sns str
- Use this to override the default service endpoint URL
- sqs str
- Use this to override the default service endpoint URL
- ssm str
- Use this to override the default service endpoint URL
- ssmcontacts str
- Use this to override the default service endpoint URL
- ssmincidents str
- Use this to override the default service endpoint URL
- ssmsap str
- Use this to override the default service endpoint URL
- sso str
- Use this to override the default service endpoint URL
- ssoadmin str
- Use this to override the default service endpoint URL
- stepfunctions str
- Use this to override the default service endpoint URL
- storagegateway str
- Use this to override the default service endpoint URL
- sts str
- Use this to override the default service endpoint URL
- swf str
- Use this to override the default service endpoint URL
- synthetics str
- Use this to override the default service endpoint URL
- timestreaminfluxdb str
- Use this to override the default service endpoint URL
- timestreamwrite str
- Use this to override the default service endpoint URL
- transcribe str
- Use this to override the default service endpoint URL
- transcribeservice str
- Use this to override the default service endpoint URL
- transfer str
- Use this to override the default service endpoint URL
- verifiedpermissions str
- Use this to override the default service endpoint URL
- vpclattice str
- Use this to override the default service endpoint URL
- waf str
- Use this to override the default service endpoint URL
- wafregional str
- Use this to override the default service endpoint URL
- wafv2 str
- Use this to override the default service endpoint URL
- wellarchitected str
- Use this to override the default service endpoint URL
- worklink str
- Use this to override the default service endpoint URL
- workspaces str
- Use this to override the default service endpoint URL
- workspacesweb str
- Use this to override the default service endpoint URL
- xray str
- Use this to override the default service endpoint URL
- accessanalyzer String
- Use this to override the default service endpoint URL
- account String
- Use this to override the default service endpoint URL
- acm String
- Use this to override the default service endpoint URL
- acmpca String
- Use this to override the default service endpoint URL
- amg String
- Use this to override the default service endpoint URL
- amp String
- Use this to override the default service endpoint URL
- amplify String
- Use this to override the default service endpoint URL
- apigateway String
- Use this to override the default service endpoint URL
- apigatewayv2 String
- Use this to override the default service endpoint URL
- appautoscaling String
- Use this to override the default service endpoint URL
- appconfig String
- Use this to override the default service endpoint URL
- appfabric String
- Use this to override the default service endpoint URL
- appflow String
- Use this to override the default service endpoint URL
- appintegrations String
- Use this to override the default service endpoint URL
- appintegrationsservice String
- Use this to override the default service endpoint URL
- applicationautoscaling String
- Use this to override the default service endpoint URL
- applicationinsights String
- Use this to override the default service endpoint URL
- applicationsignals String
- Use this to override the default service endpoint URL
- appmesh String
- Use this to override the default service endpoint URL
- appregistry String
- Use this to override the default service endpoint URL
- apprunner String
- Use this to override the default service endpoint URL
- appstream String
- Use this to override the default service endpoint URL
- appsync String
- Use this to override the default service endpoint URL
- athena String
- Use this to override the default service endpoint URL
- auditmanager String
- Use this to override the default service endpoint URL
- autoscaling String
- Use this to override the default service endpoint URL
- autoscalingplans String
- Use this to override the default service endpoint URL
- backup String
- Use this to override the default service endpoint URL
- batch String
- Use this to override the default service endpoint URL
- bcmdataexports String
- Use this to override the default service endpoint URL
- beanstalk String
- Use this to override the default service endpoint URL
- bedrock String
- Use this to override the default service endpoint URL
- bedrockagent String
- Use this to override the default service endpoint URL
- budgets String
- Use this to override the default service endpoint URL
- ce String
- Use this to override the default service endpoint URL
- chatbot String
- Use this to override the default service endpoint URL
- chime String
- Use this to override the default service endpoint URL
- chimesdkmediapipelines String
- Use this to override the default service endpoint URL
- chimesdkvoice String
- Use this to override the default service endpoint URL
- cleanrooms String
- Use this to override the default service endpoint URL
- cloud9 String
- Use this to override the default service endpoint URL
- cloudcontrol String
- Use this to override the default service endpoint URL
- cloudcontrolapi String
- Use this to override the default service endpoint URL
- cloudformation String
- Use this to override the default service endpoint URL
- cloudfront String
- Use this to override the default service endpoint URL
- cloudfrontkeyvaluestore String
- Use this to override the default service endpoint URL
- cloudhsm String
- Use this to override the default service endpoint URL
- cloudhsmv2 String
- Use this to override the default service endpoint URL
- cloudsearch String
- Use this to override the default service endpoint URL
- cloudtrail String
- Use this to override the default service endpoint URL
- cloudwatch String
- Use this to override the default service endpoint URL
- cloudwatchevents String
- Use this to override the default service endpoint URL
- cloudwatchevidently String
- Use this to override the default service endpoint URL
- cloudwatchlog String
- Use this to override the default service endpoint URL
- cloudwatchlogs String
- Use this to override the default service endpoint URL
- cloudwatchobservabilityaccessmanager String
- Use this to override the default service endpoint URL
- cloudwatchrum String
- Use this to override the default service endpoint URL
- codeartifact String
- Use this to override the default service endpoint URL
- codebuild String
- Use this to override the default service endpoint URL
- codecatalyst String
- Use this to override the default service endpoint URL
- codecommit String
- Use this to override the default service endpoint URL
- codedeploy String
- Use this to override the default service endpoint URL
- codeguruprofiler String
- Use this to override the default service endpoint URL
- codegurureviewer String
- Use this to override the default service endpoint URL
- codepipeline String
- Use this to override the default service endpoint URL
- codestarconnections String
- Use this to override the default service endpoint URL
- codestarnotifications String
- Use this to override the default service endpoint URL
- cognitoidentity String
- Use this to override the default service endpoint URL
- cognitoidentityprovider String
- Use this to override the default service endpoint URL
- cognitoidp String
- Use this to override the default service endpoint URL
- comprehend String
- Use this to override the default service endpoint URL
- computeoptimizer String
- Use this to override the default service endpoint URL
- config String
- Use this to override the default service endpoint URL
- configservice String
- Use this to override the default service endpoint URL
- connect String
- Use this to override the default service endpoint URL
- connectcases String
- Use this to override the default service endpoint URL
- controltower String
- Use this to override the default service endpoint URL
- costandusagereportservice String
- Use this to override the default service endpoint URL
- costexplorer String
- Use this to override the default service endpoint URL
- costoptimizationhub String
- Use this to override the default service endpoint URL
- cur String
- Use this to override the default service endpoint URL
- customerprofiles String
- Use this to override the default service endpoint URL
- databasemigration String
- Use this to override the default service endpoint URL
- databasemigrationservice String
- Use this to override the default service endpoint URL
- dataexchange String
- Use this to override the default service endpoint URL
- datapipeline String
- Use this to override the default service endpoint URL
- datasync String
- Use this to override the default service endpoint URL
- datazone String
- Use this to override the default service endpoint URL
- dax String
- Use this to override the default service endpoint URL
- deploy String
- Use this to override the default service endpoint URL
- detective String
- Use this to override the default service endpoint URL
- devicefarm String
- Use this to override the default service endpoint URL
- devopsguru String
- Use this to override the default service endpoint URL
- directconnect String
- Use this to override the default service endpoint URL
- directoryservice String
- Use this to override the default service endpoint URL
- dlm String
- Use this to override the default service endpoint URL
- dms String
- Use this to override the default service endpoint URL
- docdb String
- Use this to override the default service endpoint URL
- docdbelastic String
- Use this to override the default service endpoint URL
- drs String
- Use this to override the default service endpoint URL
- ds String
- Use this to override the default service endpoint URL
- dynamodb String
- Use this to override the default service endpoint URL
- ec2 String
- Use this to override the default service endpoint URL
- ecr String
- Use this to override the default service endpoint URL
- ecrpublic String
- Use this to override the default service endpoint URL
- ecs String
- Use this to override the default service endpoint URL
- efs String
- Use this to override the default service endpoint URL
- eks String
- Use this to override the default service endpoint URL
- elasticache String
- Use this to override the default service endpoint URL
- elasticbeanstalk String
- Use this to override the default service endpoint URL
- elasticloadbalancing String
- Use this to override the default service endpoint URL
- elasticloadbalancingv2 String
- Use this to override the default service endpoint URL
- elasticsearch String
- Use this to override the default service endpoint URL
- elasticsearchservice String
- Use this to override the default service endpoint URL
- elastictranscoder String
- Use this to override the default service endpoint URL
- elb String
- Use this to override the default service endpoint URL
- elbv2 String
- Use this to override the default service endpoint URL
- emr String
- Use this to override the default service endpoint URL
- emrcontainers String
- Use this to override the default service endpoint URL
- emrserverless String
- Use this to override the default service endpoint URL
- es String
- Use this to override the default service endpoint URL
- eventbridge String
- Use this to override the default service endpoint URL
- events String
- Use this to override the default service endpoint URL
- evidently String
- Use this to override the default service endpoint URL
- finspace String
- Use this to override the default service endpoint URL
- firehose String
- Use this to override the default service endpoint URL
- fis String
- Use this to override the default service endpoint URL
- fms String
- Use this to override the default service endpoint URL
- fsx String
- Use this to override the default service endpoint URL
- gamelift String
- Use this to override the default service endpoint URL
- glacier String
- Use this to override the default service endpoint URL
- globalaccelerator String
- Use this to override the default service endpoint URL
- glue String
- Use this to override the default service endpoint URL
- grafana String
- Use this to override the default service endpoint URL
- greengrass String
- Use this to override the default service endpoint URL
- groundstation String
- Use this to override the default service endpoint URL
- guardduty String
- Use this to override the default service endpoint URL
- healthlake String
- Use this to override the default service endpoint URL
- iam String
- Use this to override the default service endpoint URL
- identitystore String
- Use this to override the default service endpoint URL
- imagebuilder String
- Use this to override the default service endpoint URL
- inspector String
- Use this to override the default service endpoint URL
- inspector2 String
- Use this to override the default service endpoint URL
- inspectorv2 String
- Use this to override the default service endpoint URL
- internetmonitor String
- Use this to override the default service endpoint URL
- iot String
- Use this to override the default service endpoint URL
- iotanalytics String
- Use this to override the default service endpoint URL
- iotevents String
- Use this to override the default service endpoint URL
- ivs String
- Use this to override the default service endpoint URL
- ivschat String
- Use this to override the default service endpoint URL
- kafka String
- Use this to override the default service endpoint URL
- kafkaconnect String
- Use this to override the default service endpoint URL
- kendra String
- Use this to override the default service endpoint URL
- keyspaces String
- Use this to override the default service endpoint URL
- kinesis String
- Use this to override the default service endpoint URL
- kinesisanalytics String
- Use this to override the default service endpoint URL
- kinesisanalyticsv2 String
- Use this to override the default service endpoint URL
- kinesisvideo String
- Use this to override the default service endpoint URL
- kms String
- Use this to override the default service endpoint URL
- lakeformation String
- Use this to override the default service endpoint URL
- lambda String
- Use this to override the default service endpoint URL
- launchwizard String
- Use this to override the default service endpoint URL
- lex String
- Use this to override the default service endpoint URL
- lexmodelbuilding String
- Use this to override the default service endpoint URL
- lexmodelbuildingservice String
- Use this to override the default service endpoint URL
- lexmodels String
- Use this to override the default service endpoint URL
- lexmodelsv2 String
- Use this to override the default service endpoint URL
- lexv2models String
- Use this to override the default service endpoint URL
- licensemanager String
- Use this to override the default service endpoint URL
- lightsail String
- Use this to override the default service endpoint URL
- location String
- Use this to override the default service endpoint URL
- locationservice String
- Use this to override the default service endpoint URL
- logs String
- Use this to override the default service endpoint URL
- lookoutmetrics String
- Use this to override the default service endpoint URL
- m2 String
- Use this to override the default service endpoint URL
- macie2 String
- Use this to override the default service endpoint URL
- managedgrafana String
- Use this to override the default service endpoint URL
- mediaconnect String
- Use this to override the default service endpoint URL
- mediaconvert String
- Use this to override the default service endpoint URL
- medialive String
- Use this to override the default service endpoint URL
- mediapackage String
- Use this to override the default service endpoint URL
- mediapackagev2 String
- Use this to override the default service endpoint URL
- mediastore String
- Use this to override the default service endpoint URL
- memorydb String
- Use this to override the default service endpoint URL
- mq String
- Use this to override the default service endpoint URL
- msk String
- Use this to override the default service endpoint URL
- mwaa String
- Use this to override the default service endpoint URL
- neptune String
- Use this to override the default service endpoint URL
- neptunegraph String
- Use this to override the default service endpoint URL
- networkfirewall String
- Use this to override the default service endpoint URL
- networkmanager String
- Use this to override the default service endpoint URL
- oam String
- Use this to override the default service endpoint URL
- opensearch String
- Use this to override the default service endpoint URL
- opensearchingestion String
- Use this to override the default service endpoint URL
- opensearchserverless String
- Use this to override the default service endpoint URL
- opensearchservice String
- Use this to override the default service endpoint URL
- opsworks String
- Use this to override the default service endpoint URL
- organizations String
- Use this to override the default service endpoint URL
- osis String
- Use this to override the default service endpoint URL
- outposts String
- Use this to override the default service endpoint URL
- paymentcryptography String
- Use this to override the default service endpoint URL
- pcaconnectorad String
- Use this to override the default service endpoint URL
- pinpoint String
- Use this to override the default service endpoint URL
- pipes String
- Use this to override the default service endpoint URL
- polly String
- Use this to override the default service endpoint URL
- pricing String
- Use this to override the default service endpoint URL
- prometheus String
- Use this to override the default service endpoint URL
- prometheusservice String
- Use this to override the default service endpoint URL
- qbusiness String
- Use this to override the default service endpoint URL
- qldb String
- Use this to override the default service endpoint URL
- quicksight String
- Use this to override the default service endpoint URL
- ram String
- Use this to override the default service endpoint URL
- rbin String
- Use this to override the default service endpoint URL
- rds String
- Use this to override the default service endpoint URL
- recyclebin String
- Use this to override the default service endpoint URL
- redshift String
- Use this to override the default service endpoint URL
- redshiftdata String
- Use this to override the default service endpoint URL
- redshiftdataapiservice String
- Use this to override the default service endpoint URL
- redshiftserverless String
- Use this to override the default service endpoint URL
- rekognition String
- Use this to override the default service endpoint URL
- resourceexplorer2 String
- Use this to override the default service endpoint URL
- resourcegroups String
- Use this to override the default service endpoint URL
- resourcegroupstagging String
- Use this to override the default service endpoint URL
- resourcegroupstaggingapi String
- Use this to override the default service endpoint URL
- rolesanywhere String
- Use this to override the default service endpoint URL
- route53 String
- Use this to override the default service endpoint URL
- route53domains String
- Use this to override the default service endpoint URL
- route53profiles String
- Use this to override the default service endpoint URL
- route53recoverycontrolconfig String
- Use this to override the default service endpoint URL
- route53recoveryreadiness String
- Use this to override the default service endpoint URL
- route53resolver String
- Use this to override the default service endpoint URL
- rum String
- Use this to override the default service endpoint URL
- s3 String
- Use this to override the default service endpoint URL
- s3api String
- Use this to override the default service endpoint URL
- s3control String
- Use this to override the default service endpoint URL
- s3outposts String
- Use this to override the default service endpoint URL
- sagemaker String
- Use this to override the default service endpoint URL
- scheduler String
- Use this to override the default service endpoint URL
- schemas String
- Use this to override the default service endpoint URL
- sdb String
- Use this to override the default service endpoint URL
- secretsmanager String
- Use this to override the default service endpoint URL
- securityhub String
- Use this to override the default service endpoint URL
- securitylake String
- Use this to override the default service endpoint URL
- serverlessapplicationrepository String
- Use this to override the default service endpoint URL
- serverlessapprepo String
- Use this to override the default service endpoint URL
- serverlessrepo String
- Use this to override the default service endpoint URL
- servicecatalog String
- Use this to override the default service endpoint URL
- servicecatalogappregistry String
- Use this to override the default service endpoint URL
- servicediscovery String
- Use this to override the default service endpoint URL
- servicequotas String
- Use this to override the default service endpoint URL
- ses String
- Use this to override the default service endpoint URL
- sesv2 String
- Use this to override the default service endpoint URL
- sfn String
- Use this to override the default service endpoint URL
- shield String
- Use this to override the default service endpoint URL
- signer String
- Use this to override the default service endpoint URL
- simpledb String
- Use this to override the default service endpoint URL
- sns String
- Use this to override the default service endpoint URL
- sqs String
- Use this to override the default service endpoint URL
- ssm String
- Use this to override the default service endpoint URL
- ssmcontacts String
- Use this to override the default service endpoint URL
- ssmincidents String
- Use this to override the default service endpoint URL
- ssmsap String
- Use this to override the default service endpoint URL
- sso String
- Use this to override the default service endpoint URL
- ssoadmin String
- Use this to override the default service endpoint URL
- stepfunctions String
- Use this to override the default service endpoint URL
- storagegateway String
- Use this to override the default service endpoint URL
- sts String
- Use this to override the default service endpoint URL
- swf String
- Use this to override the default service endpoint URL
- synthetics String
- Use this to override the default service endpoint URL
- timestreaminfluxdb String
- Use this to override the default service endpoint URL
- timestreamwrite String
- Use this to override the default service endpoint URL
- transcribe String
- Use this to override the default service endpoint URL
- transcribeservice String
- Use this to override the default service endpoint URL
- transfer String
- Use this to override the default service endpoint URL
- verifiedpermissions String
- Use this to override the default service endpoint URL
- vpclattice String
- Use this to override the default service endpoint URL
- waf String
- Use this to override the default service endpoint URL
- wafregional String
- Use this to override the default service endpoint URL
- wafv2 String
- Use this to override the default service endpoint URL
- wellarchitected String
- Use this to override the default service endpoint URL
- worklink String
- Use this to override the default service endpoint URL
- workspaces String
- Use this to override the default service endpoint URL
- workspacesweb String
- Use this to override the default service endpoint URL
- xray String
- Use this to override the default service endpoint URL
ProviderIgnoreTags, ProviderIgnoreTagsArgs
- Key
Prefixes List<string> - Resource tag key prefixes to ignore across all resources.
- Keys List<string>
- Resource tag keys to ignore across all resources.
- Key
Prefixes []string - Resource tag key prefixes to ignore across all resources.
- Keys []string
- Resource tag keys to ignore across all resources.
- key
Prefixes List<String> - Resource tag key prefixes to ignore across all resources.
- keys List<String>
- Resource tag keys to ignore across all resources.
- key
Prefixes string[] - Resource tag key prefixes to ignore across all resources.
- keys string[]
- Resource tag keys to ignore across all resources.
- key_
prefixes Sequence[str] - Resource tag key prefixes to ignore across all resources.
- keys Sequence[str]
- Resource tag keys to ignore across all resources.
- key
Prefixes List<String> - Resource tag key prefixes to ignore across all resources.
- keys List<String>
- Resource tag keys to ignore across all resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.