Documentation Index
Fetch the complete documentation index at: https://cdktn.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Initializer
using Io.Cdktn;
new S3BackendEndpointConfig {
string Dynamodb = null,
string Iam = null,
string S3 = null,
string Sso = null,
string Sts = null
};
Properties
| Name | Type | Description |
|---|
Dynamodb | string | (Optional) Custom endpoint URL for the AWS DynamoDB API. |
Iam | string | (Optional) Custom endpoint URL for the AWS IAM API. |
S3 | string | (Optional) Custom endpoint URL for the AWS S3 API. |
Sso | string | (Optional) Custom endpoint URL for the AWS IAM Identity Center (formerly known as AWS SSO) API. |
Sts | string | (Optional) Custom endpoint URL for the AWS STS API. |
DynamodbOptional
public string Dynamodb { get; set; }
(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
public string Iam { get; set; }
(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
public string S3 { get; set; }
(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
public string Sso { get; set; }
(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
public string Sts { get; set; }
(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.