Skip to content

Files

Latest commit

c04acda · Jan 10, 2024

History

History
4690 lines (2887 loc) · 226 KB
·

appsyncDatasource.md

File metadata and controls

4690 lines (2887 loc) · 226 KB
·

appsyncDatasource Submodule

Constructs

AppsyncDatasource

Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource aws_appsync_datasource}.

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasource(scope: Construct, id: string, config: AppsyncDatasourceConfig)
Name Type Description
scope constructs.Construct The scope in which to define this construct.
id string The scoped construct ID.
config AppsyncDatasourceConfig No description.

scopeRequired
  • Type: constructs.Construct

The scope in which to define this construct.


idRequired
  • Type: string

The scoped construct ID.

Must be unique amongst siblings in the same scope


configRequired

Methods

Name Description
toString Returns a string representation of this construct.
addOverride No description.
overrideLogicalId Overrides the auto-generated logical ID with a specific ID.
resetOverrideLogicalId Resets a previously passed logical Id to use the auto-generated logical id again.
toHclTerraform No description.
toMetadata No description.
toTerraform Adds this resource to the terraform JSON output.
addMoveTarget Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
hasResourceMove No description.
importFrom No description.
interpolationForAttribute No description.
moveFromId Move the resource corresponding to "id" to this resource.
moveTo Moves this resource to the target resource given by moveTarget.
moveToId Moves this resource to the resource corresponding to "id".
putDynamodbConfig No description.
putElasticsearchConfig No description.
putHttpConfig No description.
putLambdaConfig No description.
putRelationalDatabaseConfig No description.
resetDescription No description.
resetDynamodbConfig No description.
resetElasticsearchConfig No description.
resetHttpConfig No description.
resetId No description.
resetLambdaConfig No description.
resetRelationalDatabaseConfig No description.
resetServiceRoleArn No description.

toString
public toString(): string

Returns a string representation of this construct.

addOverride
public addOverride(path: string, value: any): void
pathRequired
  • Type: string

valueRequired
  • Type: any

overrideLogicalId
public overrideLogicalId(newLogicalId: string): void

Overrides the auto-generated logical ID with a specific ID.

newLogicalIdRequired
  • Type: string

The new logical ID to use for this stack element.


resetOverrideLogicalId
public resetOverrideLogicalId(): void

Resets a previously passed logical Id to use the auto-generated logical id again.

toHclTerraform
public toHclTerraform(): any
toMetadata
public toMetadata(): any
toTerraform
public toTerraform(): any

Adds this resource to the terraform JSON output.

addMoveTarget
public addMoveTarget(moveTarget: string): void

Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.

moveTargetRequired
  • Type: string

The string move target that will correspond to this resource.


getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

hasResourceMove
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
importFrom
public importFrom(id: string, provider?: TerraformProvider): void
idRequired
  • Type: string

providerOptional
  • Type: cdktf.TerraformProvider

interpolationForAttribute
public interpolationForAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

moveFromId
public moveFromId(id: string): void

Move the resource corresponding to "id" to this resource.

Note that the resource being moved from must be marked as moved using it's instance function.

idRequired
  • Type: string

Full id of resource being moved from, e.g. "aws_s3_bucket.example".


moveTo
public moveTo(moveTarget: string, index?: string | number): void

Moves this resource to the target resource given by moveTarget.

moveTargetRequired
  • Type: string

The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.


indexOptional
  • Type: string | number

Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.


moveToId
public moveToId(id: string): void

Moves this resource to the resource corresponding to "id".

idRequired
  • Type: string

Full id of resource to move to, e.g. "aws_s3_bucket.example".


putDynamodbConfig
public putDynamodbConfig(value: AppsyncDatasourceDynamodbConfig): void
valueRequired

putElasticsearchConfig
public putElasticsearchConfig(value: AppsyncDatasourceElasticsearchConfig): void
valueRequired

putHttpConfig
public putHttpConfig(value: AppsyncDatasourceHttpConfig): void
valueRequired

putLambdaConfig
public putLambdaConfig(value: AppsyncDatasourceLambdaConfig): void
valueRequired

putRelationalDatabaseConfig
public putRelationalDatabaseConfig(value: AppsyncDatasourceRelationalDatabaseConfig): void
valueRequired

resetDescription
public resetDescription(): void
resetDynamodbConfig
public resetDynamodbConfig(): void
resetElasticsearchConfig
public resetElasticsearchConfig(): void
resetHttpConfig
public resetHttpConfig(): void
resetId
public resetId(): void
resetLambdaConfig
public resetLambdaConfig(): void
resetRelationalDatabaseConfig
public resetRelationalDatabaseConfig(): void
resetServiceRoleArn
public resetServiceRoleArn(): void

Static Functions

Name Description
isConstruct Checks if x is a construct.
isTerraformElement No description.
isTerraformResource No description.
generateConfigForImport Generates CDKTF code for importing a AppsyncDatasource resource upon running "cdktf plan ".

isConstruct
import { appsyncDatasource } from '@cdktf/aws-cdk'

appsyncDatasource.AppsyncDatasource.isConstruct(x: any)

Checks if x is a construct.

xRequired
  • Type: any

Any object.


isTerraformElement
import { appsyncDatasource } from '@cdktf/aws-cdk'

appsyncDatasource.AppsyncDatasource.isTerraformElement(x: any)
xRequired
  • Type: any

isTerraformResource
import { appsyncDatasource } from '@cdktf/aws-cdk'

appsyncDatasource.AppsyncDatasource.isTerraformResource(x: any)
xRequired
  • Type: any

generateConfigForImport
import { appsyncDatasource } from '@cdktf/aws-cdk'

appsyncDatasource.AppsyncDatasource.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)

Generates CDKTF code for importing a AppsyncDatasource resource upon running "cdktf plan ".

scopeRequired
  • Type: constructs.Construct

The scope in which to define this construct.


importToIdRequired
  • Type: string

The construct id used in the generated config for the AppsyncDatasource to import.


importFromIdRequired
  • Type: string

The id of the existing AppsyncDatasource that should be imported.

Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#import import section} in the documentation of this resource for the id to use


providerOptional
  • Type: cdktf.TerraformProvider

? Optional instance of the provider where the AppsyncDatasource to import is found.


Properties

Name Type Description
node constructs.Node The tree node.
cdktfStack cdktf.TerraformStack No description.
fqn string No description.
friendlyUniqueId string No description.
terraformMetaArguments {[ key: string ]: any} No description.
terraformResourceType string No description.
terraformGeneratorMetadata cdktf.TerraformProviderGeneratorMetadata No description.
connection cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection No description.
count number | cdktf.TerraformCount No description.
dependsOn string[] No description.
forEach cdktf.ITerraformIterator No description.
lifecycle cdktf.TerraformResourceLifecycle No description.
provider cdktf.TerraformProvider No description.
provisioners cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] No description.
arn string No description.
dynamodbConfig AppsyncDatasourceDynamodbConfigOutputReference No description.
elasticsearchConfig AppsyncDatasourceElasticsearchConfigOutputReference No description.
httpConfig AppsyncDatasourceHttpConfigOutputReference No description.
lambdaConfig AppsyncDatasourceLambdaConfigOutputReference No description.
relationalDatabaseConfig AppsyncDatasourceRelationalDatabaseConfigOutputReference No description.
apiIdInput string No description.
descriptionInput string No description.
dynamodbConfigInput AppsyncDatasourceDynamodbConfig No description.
elasticsearchConfigInput AppsyncDatasourceElasticsearchConfig No description.
httpConfigInput AppsyncDatasourceHttpConfig No description.
idInput string No description.
lambdaConfigInput AppsyncDatasourceLambdaConfig No description.
nameInput string No description.
relationalDatabaseConfigInput AppsyncDatasourceRelationalDatabaseConfig No description.
serviceRoleArnInput string No description.
typeInput string No description.
apiId string No description.
description string No description.
id string No description.
name string No description.
serviceRoleArn string No description.
type string No description.

nodeRequired
public readonly node: Node;
  • Type: constructs.Node

The tree node.


cdktfStackRequired
public readonly cdktfStack: TerraformStack;
  • Type: cdktf.TerraformStack

fqnRequired
public readonly fqn: string;
  • Type: string

friendlyUniqueIdRequired
public readonly friendlyUniqueId: string;
  • Type: string

terraformMetaArgumentsRequired
public readonly terraformMetaArguments: {[ key: string ]: any};
  • Type: {[ key: string ]: any}

terraformResourceTypeRequired
public readonly terraformResourceType: string;
  • Type: string

terraformGeneratorMetadataOptional
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
  • Type: cdktf.TerraformProviderGeneratorMetadata

connectionOptional
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
  • Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection

countOptional
public readonly count: number | TerraformCount;
  • Type: number | cdktf.TerraformCount

dependsOnOptional
public readonly dependsOn: string[];
  • Type: string[]

forEachOptional
public readonly forEach: ITerraformIterator;
  • Type: cdktf.ITerraformIterator

lifecycleOptional
public readonly lifecycle: TerraformResourceLifecycle;
  • Type: cdktf.TerraformResourceLifecycle

providerOptional
public readonly provider: TerraformProvider;
  • Type: cdktf.TerraformProvider

provisionersOptional
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
  • Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]

arnRequired
public readonly arn: string;
  • Type: string

dynamodbConfigRequired
public readonly dynamodbConfig: AppsyncDatasourceDynamodbConfigOutputReference;

elasticsearchConfigRequired
public readonly elasticsearchConfig: AppsyncDatasourceElasticsearchConfigOutputReference;

httpConfigRequired
public readonly httpConfig: AppsyncDatasourceHttpConfigOutputReference;

lambdaConfigRequired
public readonly lambdaConfig: AppsyncDatasourceLambdaConfigOutputReference;

relationalDatabaseConfigRequired
public readonly relationalDatabaseConfig: AppsyncDatasourceRelationalDatabaseConfigOutputReference;

apiIdInputOptional
public readonly apiIdInput: string;
  • Type: string

descriptionInputOptional
public readonly descriptionInput: string;
  • Type: string

dynamodbConfigInputOptional
public readonly dynamodbConfigInput: AppsyncDatasourceDynamodbConfig;

elasticsearchConfigInputOptional
public readonly elasticsearchConfigInput: AppsyncDatasourceElasticsearchConfig;

httpConfigInputOptional
public readonly httpConfigInput: AppsyncDatasourceHttpConfig;

idInputOptional
public readonly idInput: string;
  • Type: string

lambdaConfigInputOptional
public readonly lambdaConfigInput: AppsyncDatasourceLambdaConfig;

nameInputOptional
public readonly nameInput: string;
  • Type: string

relationalDatabaseConfigInputOptional
public readonly relationalDatabaseConfigInput: AppsyncDatasourceRelationalDatabaseConfig;

serviceRoleArnInputOptional
public readonly serviceRoleArnInput: string;
  • Type: string

typeInputOptional
public readonly typeInput: string;
  • Type: string

apiIdRequired
public readonly apiId: string;
  • Type: string

descriptionRequired
public readonly description: string;
  • Type: string

idRequired
public readonly id: string;
  • Type: string

nameRequired
public readonly name: string;
  • Type: string

serviceRoleArnRequired
public readonly serviceRoleArn: string;
  • Type: string

typeRequired
public readonly type: string;
  • Type: string

Constants

Name Type Description
tfResourceType string No description.

tfResourceTypeRequired
public readonly tfResourceType: string;
  • Type: string

Structs

AppsyncDatasourceConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceConfig: appsyncDatasource.AppsyncDatasourceConfig = { ... }

Properties

Name Type Description
connection cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection No description.
count number | cdktf.TerraformCount No description.
dependsOn cdktf.ITerraformDependable[] No description.
forEach cdktf.ITerraformIterator No description.
lifecycle cdktf.TerraformResourceLifecycle No description.
provider cdktf.TerraformProvider No description.
provisioners cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] No description.
apiId string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#api_id AppsyncDatasource#api_id}.
name string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#name AppsyncDatasource#name}.
type string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#type AppsyncDatasource#type}.
description string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#description AppsyncDatasource#description}.
dynamodbConfig AppsyncDatasourceDynamodbConfig dynamodb_config block.
elasticsearchConfig AppsyncDatasourceElasticsearchConfig elasticsearch_config block.
httpConfig AppsyncDatasourceHttpConfig http_config block.
id string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#id AppsyncDatasource#id}.
lambdaConfig AppsyncDatasourceLambdaConfig lambda_config block.
relationalDatabaseConfig AppsyncDatasourceRelationalDatabaseConfig relational_database_config block.
serviceRoleArn string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#service_role_arn AppsyncDatasource#service_role_arn}.

connectionOptional
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
  • Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection

countOptional
public readonly count: number | TerraformCount;
  • Type: number | cdktf.TerraformCount

dependsOnOptional
public readonly dependsOn: ITerraformDependable[];
  • Type: cdktf.ITerraformDependable[]

forEachOptional
public readonly forEach: ITerraformIterator;
  • Type: cdktf.ITerraformIterator

lifecycleOptional
public readonly lifecycle: TerraformResourceLifecycle;
  • Type: cdktf.TerraformResourceLifecycle

providerOptional
public readonly provider: TerraformProvider;
  • Type: cdktf.TerraformProvider

provisionersOptional
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
  • Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]

apiIdRequired
public readonly apiId: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#api_id AppsyncDatasource#api_id}.


nameRequired
public readonly name: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#name AppsyncDatasource#name}.


typeRequired
public readonly type: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#type AppsyncDatasource#type}.


descriptionOptional
public readonly description: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#description AppsyncDatasource#description}.


dynamodbConfigOptional
public readonly dynamodbConfig: AppsyncDatasourceDynamodbConfig;

dynamodb_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#dynamodb_config AppsyncDatasource#dynamodb_config}


elasticsearchConfigOptional
public readonly elasticsearchConfig: AppsyncDatasourceElasticsearchConfig;

elasticsearch_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#elasticsearch_config AppsyncDatasource#elasticsearch_config}


httpConfigOptional
public readonly httpConfig: AppsyncDatasourceHttpConfig;

http_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#http_config AppsyncDatasource#http_config}


idOptional
public readonly id: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#id AppsyncDatasource#id}.

Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.


lambdaConfigOptional
public readonly lambdaConfig: AppsyncDatasourceLambdaConfig;

lambda_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#lambda_config AppsyncDatasource#lambda_config}


relationalDatabaseConfigOptional
public readonly relationalDatabaseConfig: AppsyncDatasourceRelationalDatabaseConfig;

relational_database_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#relational_database_config AppsyncDatasource#relational_database_config}


serviceRoleArnOptional
public readonly serviceRoleArn: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#service_role_arn AppsyncDatasource#service_role_arn}.


AppsyncDatasourceDynamodbConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceDynamodbConfig: appsyncDatasource.AppsyncDatasourceDynamodbConfig = { ... }

Properties

Name Type Description
tableName string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#table_name AppsyncDatasource#table_name}.
deltaSyncConfig AppsyncDatasourceDynamodbConfigDeltaSyncConfig delta_sync_config block.
region string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#region AppsyncDatasource#region}.
useCallerCredentials boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#use_caller_credentials AppsyncDatasource#use_caller_credentials}.
versioned boolean | cdktf.IResolvable Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#versioned AppsyncDatasource#versioned}.

tableNameRequired
public readonly tableName: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#table_name AppsyncDatasource#table_name}.


deltaSyncConfigOptional
public readonly deltaSyncConfig: AppsyncDatasourceDynamodbConfigDeltaSyncConfig;

delta_sync_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#delta_sync_config AppsyncDatasource#delta_sync_config}


regionOptional
public readonly region: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#region AppsyncDatasource#region}.


useCallerCredentialsOptional
public readonly useCallerCredentials: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#use_caller_credentials AppsyncDatasource#use_caller_credentials}.


versionedOptional
public readonly versioned: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#versioned AppsyncDatasource#versioned}.


AppsyncDatasourceDynamodbConfigDeltaSyncConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceDynamodbConfigDeltaSyncConfig: appsyncDatasource.AppsyncDatasourceDynamodbConfigDeltaSyncConfig = { ... }

Properties

Name Type Description
deltaSyncTableName string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#delta_sync_table_name AppsyncDatasource#delta_sync_table_name}.
baseTableTtl number Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#base_table_ttl AppsyncDatasource#base_table_ttl}.
deltaSyncTableTtl number Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#delta_sync_table_ttl AppsyncDatasource#delta_sync_table_ttl}.

deltaSyncTableNameRequired
public readonly deltaSyncTableName: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#delta_sync_table_name AppsyncDatasource#delta_sync_table_name}.


baseTableTtlOptional
public readonly baseTableTtl: number;
  • Type: number

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#base_table_ttl AppsyncDatasource#base_table_ttl}.


deltaSyncTableTtlOptional
public readonly deltaSyncTableTtl: number;
  • Type: number

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#delta_sync_table_ttl AppsyncDatasource#delta_sync_table_ttl}.


AppsyncDatasourceElasticsearchConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceElasticsearchConfig: appsyncDatasource.AppsyncDatasourceElasticsearchConfig = { ... }

Properties

Name Type Description
endpoint string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#endpoint AppsyncDatasource#endpoint}.
region string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#region AppsyncDatasource#region}.

endpointRequired
public readonly endpoint: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#endpoint AppsyncDatasource#endpoint}.


regionOptional
public readonly region: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#region AppsyncDatasource#region}.


AppsyncDatasourceHttpConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceHttpConfig: appsyncDatasource.AppsyncDatasourceHttpConfig = { ... }

Properties

Name Type Description
endpoint string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#endpoint AppsyncDatasource#endpoint}.
authorizationConfig AppsyncDatasourceHttpConfigAuthorizationConfig authorization_config block.

endpointRequired
public readonly endpoint: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#endpoint AppsyncDatasource#endpoint}.


authorizationConfigOptional
public readonly authorizationConfig: AppsyncDatasourceHttpConfigAuthorizationConfig;

authorization_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#authorization_config AppsyncDatasource#authorization_config}


AppsyncDatasourceHttpConfigAuthorizationConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceHttpConfigAuthorizationConfig: appsyncDatasource.AppsyncDatasourceHttpConfigAuthorizationConfig = { ... }

Properties

Name Type Description
authorizationType string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#authorization_type AppsyncDatasource#authorization_type}.
awsIamConfig AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig aws_iam_config block.

authorizationTypeOptional
public readonly authorizationType: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#authorization_type AppsyncDatasource#authorization_type}.


awsIamConfigOptional
public readonly awsIamConfig: AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig;

aws_iam_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#aws_iam_config AppsyncDatasource#aws_iam_config}


AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig: appsyncDatasource.AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig = { ... }

Properties

Name Type Description
signingRegion string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#signing_region AppsyncDatasource#signing_region}.
signingServiceName string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#signing_service_name AppsyncDatasource#signing_service_name}.

signingRegionOptional
public readonly signingRegion: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#signing_region AppsyncDatasource#signing_region}.


signingServiceNameOptional
public readonly signingServiceName: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#signing_service_name AppsyncDatasource#signing_service_name}.


AppsyncDatasourceLambdaConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceLambdaConfig: appsyncDatasource.AppsyncDatasourceLambdaConfig = { ... }

Properties

Name Type Description
functionArn string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#function_arn AppsyncDatasource#function_arn}.

functionArnRequired
public readonly functionArn: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#function_arn AppsyncDatasource#function_arn}.


AppsyncDatasourceRelationalDatabaseConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceRelationalDatabaseConfig: appsyncDatasource.AppsyncDatasourceRelationalDatabaseConfig = { ... }

Properties

Name Type Description
httpEndpointConfig AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig http_endpoint_config block.
sourceType string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#source_type AppsyncDatasource#source_type}.

httpEndpointConfigOptional
public readonly httpEndpointConfig: AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig;

http_endpoint_config block.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#http_endpoint_config AppsyncDatasource#http_endpoint_config}


sourceTypeOptional
public readonly sourceType: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#source_type AppsyncDatasource#source_type}.


AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig

Initializer

import { appsyncDatasource } from '@cdktf/aws-cdk'

const appsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig: appsyncDatasource.AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig = { ... }

Properties

Name Type Description
awsSecretStoreArn string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#aws_secret_store_arn AppsyncDatasource#aws_secret_store_arn}.
dbClusterIdentifier string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#db_cluster_identifier AppsyncDatasource#db_cluster_identifier}.
databaseName string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#database_name AppsyncDatasource#database_name}.
region string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#region AppsyncDatasource#region}.
schema string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#schema AppsyncDatasource#schema}.

awsSecretStoreArnRequired
public readonly awsSecretStoreArn: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#aws_secret_store_arn AppsyncDatasource#aws_secret_store_arn}.


dbClusterIdentifierRequired
public readonly dbClusterIdentifier: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#db_cluster_identifier AppsyncDatasource#db_cluster_identifier}.


databaseNameOptional
public readonly databaseName: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#database_name AppsyncDatasource#database_name}.


regionOptional
public readonly region: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#region AppsyncDatasource#region}.


schemaOptional
public readonly schema: string;
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/appsync_datasource#schema AppsyncDatasource#schema}.


Classes

AppsyncDatasourceDynamodbConfigDeltaSyncConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceDynamodbConfigDeltaSyncConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
resetBaseTableTtl No description.
resetDeltaSyncTableTtl No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

resetBaseTableTtl
public resetBaseTableTtl(): void
resetDeltaSyncTableTtl
public resetDeltaSyncTableTtl(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
baseTableTtlInput number No description.
deltaSyncTableNameInput string No description.
deltaSyncTableTtlInput number No description.
baseTableTtl number No description.
deltaSyncTableName string No description.
deltaSyncTableTtl number No description.
internalValue AppsyncDatasourceDynamodbConfigDeltaSyncConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

baseTableTtlInputOptional
public readonly baseTableTtlInput: number;
  • Type: number

deltaSyncTableNameInputOptional
public readonly deltaSyncTableNameInput: string;
  • Type: string

deltaSyncTableTtlInputOptional
public readonly deltaSyncTableTtlInput: number;
  • Type: number

baseTableTtlRequired
public readonly baseTableTtl: number;
  • Type: number

deltaSyncTableNameRequired
public readonly deltaSyncTableName: string;
  • Type: string

deltaSyncTableTtlRequired
public readonly deltaSyncTableTtl: number;
  • Type: number

internalValueOptional
public readonly internalValue: AppsyncDatasourceDynamodbConfigDeltaSyncConfig;

AppsyncDatasourceDynamodbConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceDynamodbConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
putDeltaSyncConfig No description.
resetDeltaSyncConfig No description.
resetRegion No description.
resetUseCallerCredentials No description.
resetVersioned No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

putDeltaSyncConfig
public putDeltaSyncConfig(value: AppsyncDatasourceDynamodbConfigDeltaSyncConfig): void
valueRequired

resetDeltaSyncConfig
public resetDeltaSyncConfig(): void
resetRegion
public resetRegion(): void
resetUseCallerCredentials
public resetUseCallerCredentials(): void
resetVersioned
public resetVersioned(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
deltaSyncConfig AppsyncDatasourceDynamodbConfigDeltaSyncConfigOutputReference No description.
deltaSyncConfigInput AppsyncDatasourceDynamodbConfigDeltaSyncConfig No description.
regionInput string No description.
tableNameInput string No description.
useCallerCredentialsInput boolean | cdktf.IResolvable No description.
versionedInput boolean | cdktf.IResolvable No description.
region string No description.
tableName string No description.
useCallerCredentials boolean | cdktf.IResolvable No description.
versioned boolean | cdktf.IResolvable No description.
internalValue AppsyncDatasourceDynamodbConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

deltaSyncConfigRequired
public readonly deltaSyncConfig: AppsyncDatasourceDynamodbConfigDeltaSyncConfigOutputReference;

deltaSyncConfigInputOptional
public readonly deltaSyncConfigInput: AppsyncDatasourceDynamodbConfigDeltaSyncConfig;

regionInputOptional
public readonly regionInput: string;
  • Type: string

tableNameInputOptional
public readonly tableNameInput: string;
  • Type: string

useCallerCredentialsInputOptional
public readonly useCallerCredentialsInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

versionedInputOptional
public readonly versionedInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

regionRequired
public readonly region: string;
  • Type: string

tableNameRequired
public readonly tableName: string;
  • Type: string

useCallerCredentialsRequired
public readonly useCallerCredentials: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

versionedRequired
public readonly versioned: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

internalValueOptional
public readonly internalValue: AppsyncDatasourceDynamodbConfig;

AppsyncDatasourceElasticsearchConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceElasticsearchConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
resetRegion No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

resetRegion
public resetRegion(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
endpointInput string No description.
regionInput string No description.
endpoint string No description.
region string No description.
internalValue AppsyncDatasourceElasticsearchConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

endpointInputOptional
public readonly endpointInput: string;
  • Type: string

regionInputOptional
public readonly regionInput: string;
  • Type: string

endpointRequired
public readonly endpoint: string;
  • Type: string

regionRequired
public readonly region: string;
  • Type: string

internalValueOptional
public readonly internalValue: AppsyncDatasourceElasticsearchConfig;

AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
resetSigningRegion No description.
resetSigningServiceName No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

resetSigningRegion
public resetSigningRegion(): void
resetSigningServiceName
public resetSigningServiceName(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
signingRegionInput string No description.
signingServiceNameInput string No description.
signingRegion string No description.
signingServiceName string No description.
internalValue AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

signingRegionInputOptional
public readonly signingRegionInput: string;
  • Type: string

signingServiceNameInputOptional
public readonly signingServiceNameInput: string;
  • Type: string

signingRegionRequired
public readonly signingRegion: string;
  • Type: string

signingServiceNameRequired
public readonly signingServiceName: string;
  • Type: string

internalValueOptional
public readonly internalValue: AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig;

AppsyncDatasourceHttpConfigAuthorizationConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceHttpConfigAuthorizationConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
putAwsIamConfig No description.
resetAuthorizationType No description.
resetAwsIamConfig No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

putAwsIamConfig
public putAwsIamConfig(value: AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig): void
valueRequired

resetAuthorizationType
public resetAuthorizationType(): void
resetAwsIamConfig
public resetAwsIamConfig(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
awsIamConfig AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfigOutputReference No description.
authorizationTypeInput string No description.
awsIamConfigInput AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig No description.
authorizationType string No description.
internalValue AppsyncDatasourceHttpConfigAuthorizationConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

awsIamConfigRequired
public readonly awsIamConfig: AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfigOutputReference;

authorizationTypeInputOptional
public readonly authorizationTypeInput: string;
  • Type: string

awsIamConfigInputOptional
public readonly awsIamConfigInput: AppsyncDatasourceHttpConfigAuthorizationConfigAwsIamConfig;

authorizationTypeRequired
public readonly authorizationType: string;
  • Type: string

internalValueOptional
public readonly internalValue: AppsyncDatasourceHttpConfigAuthorizationConfig;

AppsyncDatasourceHttpConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceHttpConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
putAuthorizationConfig No description.
resetAuthorizationConfig No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

putAuthorizationConfig
public putAuthorizationConfig(value: AppsyncDatasourceHttpConfigAuthorizationConfig): void
valueRequired

resetAuthorizationConfig
public resetAuthorizationConfig(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
authorizationConfig AppsyncDatasourceHttpConfigAuthorizationConfigOutputReference No description.
authorizationConfigInput AppsyncDatasourceHttpConfigAuthorizationConfig No description.
endpointInput string No description.
endpoint string No description.
internalValue AppsyncDatasourceHttpConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

authorizationConfigRequired
public readonly authorizationConfig: AppsyncDatasourceHttpConfigAuthorizationConfigOutputReference;

authorizationConfigInputOptional
public readonly authorizationConfigInput: AppsyncDatasourceHttpConfigAuthorizationConfig;

endpointInputOptional
public readonly endpointInput: string;
  • Type: string

endpointRequired
public readonly endpoint: string;
  • Type: string

internalValueOptional
public readonly internalValue: AppsyncDatasourceHttpConfig;

AppsyncDatasourceLambdaConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceLambdaConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
functionArnInput string No description.
functionArn string No description.
internalValue AppsyncDatasourceLambdaConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

functionArnInputOptional
public readonly functionArnInput: string;
  • Type: string

functionArnRequired
public readonly functionArn: string;
  • Type: string

internalValueOptional
public readonly internalValue: AppsyncDatasourceLambdaConfig;

AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
resetDatabaseName No description.
resetRegion No description.
resetSchema No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

resetDatabaseName
public resetDatabaseName(): void
resetRegion
public resetRegion(): void
resetSchema
public resetSchema(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
awsSecretStoreArnInput string No description.
databaseNameInput string No description.
dbClusterIdentifierInput string No description.
regionInput string No description.
schemaInput string No description.
awsSecretStoreArn string No description.
databaseName string No description.
dbClusterIdentifier string No description.
region string No description.
schema string No description.
internalValue AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

awsSecretStoreArnInputOptional
public readonly awsSecretStoreArnInput: string;
  • Type: string

databaseNameInputOptional
public readonly databaseNameInput: string;
  • Type: string

dbClusterIdentifierInputOptional
public readonly dbClusterIdentifierInput: string;
  • Type: string

regionInputOptional
public readonly regionInput: string;
  • Type: string

schemaInputOptional
public readonly schemaInput: string;
  • Type: string

awsSecretStoreArnRequired
public readonly awsSecretStoreArn: string;
  • Type: string

databaseNameRequired
public readonly databaseName: string;
  • Type: string

dbClusterIdentifierRequired
public readonly dbClusterIdentifier: string;
  • Type: string

regionRequired
public readonly region: string;
  • Type: string

schemaRequired
public readonly schema: string;
  • Type: string

internalValueOptional
public readonly internalValue: AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig;

AppsyncDatasourceRelationalDatabaseConfigOutputReference

Initializers

import { appsyncDatasource } from '@cdktf/aws-cdk'

new appsyncDatasource.AppsyncDatasourceRelationalDatabaseConfigOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name Type Description
terraformResource cdktf.IInterpolatingParent The parent resource.
terraformAttribute string The attribute on the parent resource this class is referencing.

terraformResourceRequired
  • Type: cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: string

The attribute on the parent resource this class is referencing.


Methods

Name Description
computeFqn No description.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
interpolationForAttribute No description.
resolve Produce the Token's value at resolution time.
toString Return a string representation of this resolvable object.
putHttpEndpointConfig No description.
resetHttpEndpointConfig No description.
resetSourceType No description.

computeFqn
public computeFqn(): string
getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

interpolationForAttribute
public interpolationForAttribute(property: string): IResolvable
propertyRequired
  • Type: string

resolve
public resolve(_context: IResolveContext): any

Produce the Token's value at resolution time.

_contextRequired
  • Type: cdktf.IResolveContext

toString
public toString(): string

Return a string representation of this resolvable object.

Returns a reversible string representation.

putHttpEndpointConfig
public putHttpEndpointConfig(value: AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig): void
valueRequired

resetHttpEndpointConfig
public resetHttpEndpointConfig(): void
resetSourceType
public resetSourceType(): void

Properties

Name Type Description
creationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.
fqn string No description.
httpEndpointConfig AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfigOutputReference No description.
httpEndpointConfigInput AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig No description.
sourceTypeInput string No description.
sourceType string No description.
internalValue AppsyncDatasourceRelationalDatabaseConfig No description.

creationStackRequired
public readonly creationStack: string[];
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


fqnRequired
public readonly fqn: string;
  • Type: string

httpEndpointConfigRequired
public readonly httpEndpointConfig: AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfigOutputReference;

httpEndpointConfigInputOptional
public readonly httpEndpointConfigInput: AppsyncDatasourceRelationalDatabaseConfigHttpEndpointConfig;

sourceTypeInputOptional
public readonly sourceTypeInput: string;
  • Type: string

sourceTypeRequired
public readonly sourceType: string;
  • Type: string

internalValueOptional
public readonly internalValue: AppsyncDatasourceRelationalDatabaseConfig;