Skip to main content

Initializer

import cdktn

cdktn.S3BackendEndpointConfig(
  dynamodb: str = None,
  iam: str = None,
  s3: str = None,
  sso: str = None,
  sts: str = None
)

Properties

NameTypeDescription
dynamodbstr(Optional) Custom endpoint URL for the AWS DynamoDB API.
iamstr(Optional) Custom endpoint URL for the AWS IAM API.
s3str(Optional) Custom endpoint URL for the AWS S3 API.
ssostr(Optional) Custom endpoint URL for the AWS IAM Identity Center (formerly known as AWS SSO) API.
stsstr(Optional) Custom endpoint URL for the AWS STS API.

dynamodbOptional

dynamodb: str
  • Type: str
(Optional) Custom endpoint URL for the AWS DynamoDB API. This can also be sourced from the environment variable AWS_ENDPOINT_URL_DYNAMODB or the deprecated environment variable AWS_DYNAMODB_ENDPOINT.

iamOptional

iam: str
  • Type: str
(Optional) Custom endpoint URL for the AWS IAM API. This can also be sourced from the environment variable AWS_ENDPOINT_URL_IAM or the deprecated environment variable AWS_IAM_ENDPOINT.

s3Optional

s3: str
  • Type: str
(Optional) Custom endpoint URL for the AWS S3 API. This can also be sourced from the environment variable AWS_ENDPOINT_URL_S3 or the deprecated environment variable AWS_S3_ENDPOINT.

ssoOptional

sso: str
  • Type: str
(Optional) Custom endpoint URL for the AWS IAM Identity Center (formerly known as AWS SSO) API. This can also be sourced from the environment variable AWS_ENDPOINT_URL_SSO.

stsOptional

sts: str
  • Type: str
(Optional) Custom endpoint URL for the AWS STS API. This can also be sourced from the environment variable AWS_ENDPOINT_URL_STS or the deprecated environment variable AWS_STS_ENDPOINT.