Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target aws_cloudwatch_event_target}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTarget(scope: Construct, id: string, config: CloudwatchEventTargetConfig)
Name | Type | Description |
---|---|---|
scope |
constructs.Construct |
The scope in which to define this construct. |
id |
string |
The scoped construct ID. |
config |
CloudwatchEventTargetConfig |
No description. |
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
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". |
putBatchTarget |
No description. |
putDeadLetterConfig |
No description. |
putEcsTarget |
No description. |
putHttpTarget |
No description. |
putInputTransformer |
No description. |
putKinesisTarget |
No description. |
putRedshiftTarget |
No description. |
putRetryPolicy |
No description. |
putRunCommandTargets |
No description. |
putSqsTarget |
No description. |
resetBatchTarget |
No description. |
resetDeadLetterConfig |
No description. |
resetEcsTarget |
No description. |
resetEventBusName |
No description. |
resetHttpTarget |
No description. |
resetId |
No description. |
resetInput |
No description. |
resetInputPath |
No description. |
resetInputTransformer |
No description. |
resetKinesisTarget |
No description. |
resetRedshiftTarget |
No description. |
resetRetryPolicy |
No description. |
resetRoleArn |
No description. |
resetRunCommandTargets |
No description. |
resetSqsTarget |
No description. |
resetTargetId |
No description. |
public toString(): string
Returns a string representation of this construct.
public addOverride(path: string, value: any): void
- Type: string
- Type: any
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
public resetOverrideLogicalId(): void
Resets a previously passed logical Id to use the auto-generated logical id again.
public toHclTerraform(): any
public toMetadata(): any
public toTerraform(): any
Adds this resource to the terraform JSON output.
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.
- Type: string
The string move target that will correspond to this resource.
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
public importFrom(id: string, provider?: TerraformProvider): void
- Type: string
- Type: cdktf.TerraformProvider
public interpolationForAttribute(terraformAttribute: string): IResolvable
- Type: string
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.
- Type: string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
public moveTo(moveTarget: string, index?: string | number): void
Moves this resource to the target resource given by moveTarget.
- Type: string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: string | number
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
public moveToId(id: string): void
Moves this resource to the resource corresponding to "id".
- Type: string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
public putBatchTarget(value: CloudwatchEventTargetBatchTarget): void
public putDeadLetterConfig(value: CloudwatchEventTargetDeadLetterConfig): void
public putEcsTarget(value: CloudwatchEventTargetEcsTarget): void
public putHttpTarget(value: CloudwatchEventTargetHttpTarget): void
public putInputTransformer(value: CloudwatchEventTargetInputTransformer): void
public putKinesisTarget(value: CloudwatchEventTargetKinesisTarget): void
public putRedshiftTarget(value: CloudwatchEventTargetRedshiftTarget): void
public putRetryPolicy(value: CloudwatchEventTargetRetryPolicy): void
public putRunCommandTargets(value: IResolvable | CloudwatchEventTargetRunCommandTargets[]): void
- Type: cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets[]
public putSqsTarget(value: CloudwatchEventTargetSqsTarget): void
public resetBatchTarget(): void
public resetDeadLetterConfig(): void
public resetEcsTarget(): void
public resetEventBusName(): void
public resetHttpTarget(): void
public resetId(): void
public resetInput(): void
public resetInputPath(): void
public resetInputTransformer(): void
public resetKinesisTarget(): void
public resetRedshiftTarget(): void
public resetRetryPolicy(): void
public resetRoleArn(): void
public resetRunCommandTargets(): void
public resetSqsTarget(): void
public resetTargetId(): void
Name | Description |
---|---|
isConstruct |
Checks if x is a construct. |
isTerraformElement |
No description. |
isTerraformResource |
No description. |
generateConfigForImport |
Generates CDKTF code for importing a CloudwatchEventTarget resource upon running "cdktf plan ". |
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
cloudwatchEventTarget.CloudwatchEventTarget.isConstruct(x: any)
Checks if x
is a construct.
- Type: any
Any object.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
cloudwatchEventTarget.CloudwatchEventTarget.isTerraformElement(x: any)
- Type: any
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
cloudwatchEventTarget.CloudwatchEventTarget.isTerraformResource(x: any)
- Type: any
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
cloudwatchEventTarget.CloudwatchEventTarget.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
Generates CDKTF code for importing a CloudwatchEventTarget resource upon running "cdktf plan ".
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The construct id used in the generated config for the CloudwatchEventTarget to import.
- Type: string
The id of the existing CloudwatchEventTarget that should be imported.
Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#import import section} in the documentation of this resource for the id to use
- Type: cdktf.TerraformProvider
? Optional instance of the provider where the CloudwatchEventTarget to import is found.
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. |
batchTarget |
CloudwatchEventTargetBatchTargetOutputReference |
No description. |
deadLetterConfig |
CloudwatchEventTargetDeadLetterConfigOutputReference |
No description. |
ecsTarget |
CloudwatchEventTargetEcsTargetOutputReference |
No description. |
httpTarget |
CloudwatchEventTargetHttpTargetOutputReference |
No description. |
inputTransformer |
CloudwatchEventTargetInputTransformerOutputReference |
No description. |
kinesisTarget |
CloudwatchEventTargetKinesisTargetOutputReference |
No description. |
redshiftTarget |
CloudwatchEventTargetRedshiftTargetOutputReference |
No description. |
retryPolicy |
CloudwatchEventTargetRetryPolicyOutputReference |
No description. |
runCommandTargets |
CloudwatchEventTargetRunCommandTargetsList |
No description. |
sqsTarget |
CloudwatchEventTargetSqsTargetOutputReference |
No description. |
arnInput |
string |
No description. |
batchTargetInput |
CloudwatchEventTargetBatchTarget |
No description. |
deadLetterConfigInput |
CloudwatchEventTargetDeadLetterConfig |
No description. |
ecsTargetInput |
CloudwatchEventTargetEcsTarget |
No description. |
eventBusNameInput |
string |
No description. |
httpTargetInput |
CloudwatchEventTargetHttpTarget |
No description. |
idInput |
string |
No description. |
inputInput |
string |
No description. |
inputPathInput |
string |
No description. |
inputTransformerInput |
CloudwatchEventTargetInputTransformer |
No description. |
kinesisTargetInput |
CloudwatchEventTargetKinesisTarget |
No description. |
redshiftTargetInput |
CloudwatchEventTargetRedshiftTarget |
No description. |
retryPolicyInput |
CloudwatchEventTargetRetryPolicy |
No description. |
roleArnInput |
string |
No description. |
ruleInput |
string |
No description. |
runCommandTargetsInput |
cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets[] |
No description. |
sqsTargetInput |
CloudwatchEventTargetSqsTarget |
No description. |
targetIdInput |
string |
No description. |
arn |
string |
No description. |
eventBusName |
string |
No description. |
id |
string |
No description. |
input |
string |
No description. |
inputPath |
string |
No description. |
roleArn |
string |
No description. |
rule |
string |
No description. |
targetId |
string |
No description. |
public readonly node: Node;
- Type: constructs.Node
The tree node.
public readonly cdktfStack: TerraformStack;
- Type: cdktf.TerraformStack
public readonly fqn: string;
- Type: string
public readonly friendlyUniqueId: string;
- Type: string
public readonly terraformMetaArguments: {[ key: string ]: any};
- Type: {[ key: string ]: any}
public readonly terraformResourceType: string;
- Type: string
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
- Type: cdktf.TerraformProviderGeneratorMetadata
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: string[];
- Type: string[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly batchTarget: CloudwatchEventTargetBatchTargetOutputReference;
public readonly deadLetterConfig: CloudwatchEventTargetDeadLetterConfigOutputReference;
public readonly ecsTarget: CloudwatchEventTargetEcsTargetOutputReference;
public readonly httpTarget: CloudwatchEventTargetHttpTargetOutputReference;
public readonly inputTransformer: CloudwatchEventTargetInputTransformerOutputReference;
public readonly kinesisTarget: CloudwatchEventTargetKinesisTargetOutputReference;
public readonly redshiftTarget: CloudwatchEventTargetRedshiftTargetOutputReference;
public readonly retryPolicy: CloudwatchEventTargetRetryPolicyOutputReference;
public readonly runCommandTargets: CloudwatchEventTargetRunCommandTargetsList;
public readonly sqsTarget: CloudwatchEventTargetSqsTargetOutputReference;
public readonly arnInput: string;
- Type: string
public readonly batchTargetInput: CloudwatchEventTargetBatchTarget;
public readonly deadLetterConfigInput: CloudwatchEventTargetDeadLetterConfig;
public readonly ecsTargetInput: CloudwatchEventTargetEcsTarget;
public readonly eventBusNameInput: string;
- Type: string
public readonly httpTargetInput: CloudwatchEventTargetHttpTarget;
public readonly idInput: string;
- Type: string
public readonly inputInput: string;
- Type: string
public readonly inputPathInput: string;
- Type: string
public readonly inputTransformerInput: CloudwatchEventTargetInputTransformer;
public readonly kinesisTargetInput: CloudwatchEventTargetKinesisTarget;
public readonly redshiftTargetInput: CloudwatchEventTargetRedshiftTarget;
public readonly retryPolicyInput: CloudwatchEventTargetRetryPolicy;
public readonly roleArnInput: string;
- Type: string
public readonly ruleInput: string;
- Type: string
public readonly runCommandTargetsInput: IResolvable | CloudwatchEventTargetRunCommandTargets[];
- Type: cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets[]
public readonly sqsTargetInput: CloudwatchEventTargetSqsTarget;
public readonly targetIdInput: string;
- Type: string
public readonly arn: string;
- Type: string
public readonly eventBusName: string;
- Type: string
public readonly id: string;
- Type: string
public readonly input: string;
- Type: string
public readonly inputPath: string;
- Type: string
public readonly roleArn: string;
- Type: string
public readonly rule: string;
- Type: string
public readonly targetId: string;
- Type: string
Name | Type | Description |
---|---|---|
tfResourceType |
string |
No description. |
public readonly tfResourceType: string;
- Type: string
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetBatchTarget: cloudwatchEventTarget.CloudwatchEventTargetBatchTarget = { ... }
Name | Type | Description |
---|---|---|
jobDefinition |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#job_definition CloudwatchEventTarget#job_definition}. |
jobName |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#job_name CloudwatchEventTarget#job_name}. |
arraySize |
number |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#array_size CloudwatchEventTarget#array_size}. |
jobAttempts |
number |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#job_attempts CloudwatchEventTarget#job_attempts}. |
public readonly jobDefinition: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#job_definition CloudwatchEventTarget#job_definition}.
public readonly jobName: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#job_name CloudwatchEventTarget#job_name}.
public readonly arraySize: number;
- Type: number
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#array_size CloudwatchEventTarget#array_size}.
public readonly jobAttempts: number;
- Type: number
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#job_attempts CloudwatchEventTarget#job_attempts}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetConfig: cloudwatchEventTarget.CloudwatchEventTargetConfig = { ... }
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: ITerraformDependable[];
- Type: cdktf.ITerraformDependable[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly arn: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#arn CloudwatchEventTarget#arn}.
public readonly rule: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#rule CloudwatchEventTarget#rule}.
public readonly batchTarget: CloudwatchEventTargetBatchTarget;
batch_target block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#batch_target CloudwatchEventTarget#batch_target}
public readonly deadLetterConfig: CloudwatchEventTargetDeadLetterConfig;
dead_letter_config block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#dead_letter_config CloudwatchEventTarget#dead_letter_config}
public readonly ecsTarget: CloudwatchEventTargetEcsTarget;
ecs_target block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#ecs_target CloudwatchEventTarget#ecs_target}
public readonly eventBusName: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#event_bus_name CloudwatchEventTarget#event_bus_name}.
public readonly httpTarget: CloudwatchEventTargetHttpTarget;
http_target block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#http_target CloudwatchEventTarget#http_target}
public readonly id: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#id CloudwatchEventTarget#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.
public readonly input: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#input CloudwatchEventTarget#input}.
public readonly inputPath: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#input_path CloudwatchEventTarget#input_path}.
public readonly inputTransformer: CloudwatchEventTargetInputTransformer;
input_transformer block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#input_transformer CloudwatchEventTarget#input_transformer}
public readonly kinesisTarget: CloudwatchEventTargetKinesisTarget;
kinesis_target block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#kinesis_target CloudwatchEventTarget#kinesis_target}
public readonly redshiftTarget: CloudwatchEventTargetRedshiftTarget;
redshift_target block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#redshift_target CloudwatchEventTarget#redshift_target}
public readonly retryPolicy: CloudwatchEventTargetRetryPolicy;
retry_policy block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#retry_policy CloudwatchEventTarget#retry_policy}
public readonly roleArn: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#role_arn CloudwatchEventTarget#role_arn}.
public readonly runCommandTargets: IResolvable | CloudwatchEventTargetRunCommandTargets[];
- Type: cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets[]
run_command_targets block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#run_command_targets CloudwatchEventTarget#run_command_targets}
public readonly sqsTarget: CloudwatchEventTargetSqsTarget;
sqs_target block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#sqs_target CloudwatchEventTarget#sqs_target}
public readonly targetId: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#target_id CloudwatchEventTarget#target_id}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetDeadLetterConfig: cloudwatchEventTarget.CloudwatchEventTargetDeadLetterConfig = { ... }
Name | Type | Description |
---|---|---|
arn |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#arn CloudwatchEventTarget#arn}. |
public readonly arn: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#arn CloudwatchEventTarget#arn}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetEcsTarget: cloudwatchEventTarget.CloudwatchEventTargetEcsTarget = { ... }
public readonly taskDefinitionArn: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#task_definition_arn CloudwatchEventTarget#task_definition_arn}.
public readonly enableEcsManagedTags: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#enable_ecs_managed_tags CloudwatchEventTarget#enable_ecs_managed_tags}.
public readonly enableExecuteCommand: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#enable_execute_command CloudwatchEventTarget#enable_execute_command}.
public readonly group: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#group CloudwatchEventTarget#group}.
public readonly launchType: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#launch_type CloudwatchEventTarget#launch_type}.
public readonly networkConfiguration: CloudwatchEventTargetEcsTargetNetworkConfiguration;
network_configuration block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#network_configuration CloudwatchEventTarget#network_configuration}
public readonly placementConstraint: IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[];
- Type: cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[]
placement_constraint block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#placement_constraint CloudwatchEventTarget#placement_constraint}
public readonly platformVersion: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#platform_version CloudwatchEventTarget#platform_version}.
public readonly propagateTags: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#propagate_tags CloudwatchEventTarget#propagate_tags}.
public readonly tags: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#tags CloudwatchEventTarget#tags}.
public readonly taskCount: number;
- Type: number
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#task_count CloudwatchEventTarget#task_count}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetEcsTargetNetworkConfiguration: cloudwatchEventTarget.CloudwatchEventTargetEcsTargetNetworkConfiguration = { ... }
Name | Type | Description |
---|---|---|
subnets |
string[] |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#subnets CloudwatchEventTarget#subnets}. |
assignPublicIp |
boolean | cdktf.IResolvable |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#assign_public_ip CloudwatchEventTarget#assign_public_ip}. |
securityGroups |
string[] |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#security_groups CloudwatchEventTarget#security_groups}. |
public readonly subnets: string[];
- Type: string[]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#subnets CloudwatchEventTarget#subnets}.
public readonly assignPublicIp: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#assign_public_ip CloudwatchEventTarget#assign_public_ip}.
public readonly securityGroups: string[];
- Type: string[]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#security_groups CloudwatchEventTarget#security_groups}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetEcsTargetPlacementConstraint: cloudwatchEventTarget.CloudwatchEventTargetEcsTargetPlacementConstraint = { ... }
Name | Type | Description |
---|---|---|
type |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#type CloudwatchEventTarget#type}. |
expression |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#expression CloudwatchEventTarget#expression}. |
public readonly type: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#type CloudwatchEventTarget#type}.
public readonly expression: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#expression CloudwatchEventTarget#expression}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetHttpTarget: cloudwatchEventTarget.CloudwatchEventTargetHttpTarget = { ... }
Name | Type | Description |
---|---|---|
headerParameters |
{[ key: string ]: string} |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#header_parameters CloudwatchEventTarget#header_parameters}. |
pathParameterValues |
string[] |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#path_parameter_values CloudwatchEventTarget#path_parameter_values}. |
queryStringParameters |
{[ key: string ]: string} |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#query_string_parameters CloudwatchEventTarget#query_string_parameters}. |
public readonly headerParameters: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#header_parameters CloudwatchEventTarget#header_parameters}.
public readonly pathParameterValues: string[];
- Type: string[]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#path_parameter_values CloudwatchEventTarget#path_parameter_values}.
public readonly queryStringParameters: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#query_string_parameters CloudwatchEventTarget#query_string_parameters}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetInputTransformer: cloudwatchEventTarget.CloudwatchEventTargetInputTransformer = { ... }
Name | Type | Description |
---|---|---|
inputTemplate |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#input_template CloudwatchEventTarget#input_template}. |
inputPaths |
{[ key: string ]: string} |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#input_paths CloudwatchEventTarget#input_paths}. |
public readonly inputTemplate: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#input_template CloudwatchEventTarget#input_template}.
public readonly inputPaths: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#input_paths CloudwatchEventTarget#input_paths}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetKinesisTarget: cloudwatchEventTarget.CloudwatchEventTargetKinesisTarget = { ... }
Name | Type | Description |
---|---|---|
partitionKeyPath |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#partition_key_path CloudwatchEventTarget#partition_key_path}. |
public readonly partitionKeyPath: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#partition_key_path CloudwatchEventTarget#partition_key_path}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetRedshiftTarget: cloudwatchEventTarget.CloudwatchEventTargetRedshiftTarget = { ... }
public readonly database: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#database CloudwatchEventTarget#database}.
public readonly dbUser: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#db_user CloudwatchEventTarget#db_user}.
public readonly secretsManagerArn: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#secrets_manager_arn CloudwatchEventTarget#secrets_manager_arn}.
public readonly sql: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#sql CloudwatchEventTarget#sql}.
public readonly statementName: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#statement_name CloudwatchEventTarget#statement_name}.
public readonly withEvent: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#with_event CloudwatchEventTarget#with_event}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetRetryPolicy: cloudwatchEventTarget.CloudwatchEventTargetRetryPolicy = { ... }
Name | Type | Description |
---|---|---|
maximumEventAgeInSeconds |
number |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#maximum_event_age_in_seconds CloudwatchEventTarget#maximum_event_age_in_seconds}. |
maximumRetryAttempts |
number |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#maximum_retry_attempts CloudwatchEventTarget#maximum_retry_attempts}. |
public readonly maximumEventAgeInSeconds: number;
- Type: number
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#maximum_event_age_in_seconds CloudwatchEventTarget#maximum_event_age_in_seconds}.
public readonly maximumRetryAttempts: number;
- Type: number
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#maximum_retry_attempts CloudwatchEventTarget#maximum_retry_attempts}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetRunCommandTargets: cloudwatchEventTarget.CloudwatchEventTargetRunCommandTargets = { ... }
Name | Type | Description |
---|---|---|
key |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#key CloudwatchEventTarget#key}. |
values |
string[] |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#values CloudwatchEventTarget#values}. |
public readonly key: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#key CloudwatchEventTarget#key}.
public readonly values: string[];
- Type: string[]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#values CloudwatchEventTarget#values}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
const cloudwatchEventTargetSqsTarget: cloudwatchEventTarget.CloudwatchEventTargetSqsTarget = { ... }
Name | Type | Description |
---|---|---|
messageGroupId |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#message_group_id CloudwatchEventTarget#message_group_id}. |
public readonly messageGroupId: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/cloudwatch_event_target#message_group_id CloudwatchEventTarget#message_group_id}.
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetBatchTargetOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetArraySize |
No description. |
resetJobAttempts |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetArraySize(): void
public resetJobAttempts(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
arraySizeInput |
number |
No description. |
jobAttemptsInput |
number |
No description. |
jobDefinitionInput |
string |
No description. |
jobNameInput |
string |
No description. |
arraySize |
number |
No description. |
jobAttempts |
number |
No description. |
jobDefinition |
string |
No description. |
jobName |
string |
No description. |
internalValue |
CloudwatchEventTargetBatchTarget |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly arraySizeInput: number;
- Type: number
public readonly jobAttemptsInput: number;
- Type: number
public readonly jobDefinitionInput: string;
- Type: string
public readonly jobNameInput: string;
- Type: string
public readonly arraySize: number;
- Type: number
public readonly jobAttempts: number;
- Type: number
public readonly jobDefinition: string;
- Type: string
public readonly jobName: string;
- Type: string
public readonly internalValue: CloudwatchEventTargetBatchTarget;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetDeadLetterConfigOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetArn |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetArn(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
arnInput |
string |
No description. |
arn |
string |
No description. |
internalValue |
CloudwatchEventTargetDeadLetterConfig |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly arnInput: string;
- Type: string
public readonly arn: string;
- Type: string
public readonly internalValue: CloudwatchEventTargetDeadLetterConfig;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetEcsTargetNetworkConfigurationOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetAssignPublicIp |
No description. |
resetSecurityGroups |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetAssignPublicIp(): void
public resetSecurityGroups(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
assignPublicIpInput |
boolean | cdktf.IResolvable |
No description. |
securityGroupsInput |
string[] |
No description. |
subnetsInput |
string[] |
No description. |
assignPublicIp |
boolean | cdktf.IResolvable |
No description. |
securityGroups |
string[] |
No description. |
subnets |
string[] |
No description. |
internalValue |
CloudwatchEventTargetEcsTargetNetworkConfiguration |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly assignPublicIpInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly securityGroupsInput: string[];
- Type: string[]
public readonly subnetsInput: string[];
- Type: string[]
public readonly assignPublicIp: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly securityGroups: string[];
- Type: string[]
public readonly subnets: string[];
- Type: string[]
public readonly internalValue: CloudwatchEventTargetEcsTargetNetworkConfiguration;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetEcsTargetOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
putNetworkConfiguration |
No description. |
putPlacementConstraint |
No description. |
resetEnableEcsManagedTags |
No description. |
resetEnableExecuteCommand |
No description. |
resetGroup |
No description. |
resetLaunchType |
No description. |
resetNetworkConfiguration |
No description. |
resetPlacementConstraint |
No description. |
resetPlatformVersion |
No description. |
resetPropagateTags |
No description. |
resetTags |
No description. |
resetTaskCount |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public putNetworkConfiguration(value: CloudwatchEventTargetEcsTargetNetworkConfiguration): void
public putPlacementConstraint(value: IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[]): void
- Type: cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[]
public resetEnableEcsManagedTags(): void
public resetEnableExecuteCommand(): void
public resetGroup(): void
public resetLaunchType(): void
public resetNetworkConfiguration(): void
public resetPlacementConstraint(): void
public resetPlatformVersion(): void
public resetPropagateTags(): void
public resetTags(): void
public resetTaskCount(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
networkConfiguration |
CloudwatchEventTargetEcsTargetNetworkConfigurationOutputReference |
No description. |
placementConstraint |
CloudwatchEventTargetEcsTargetPlacementConstraintList |
No description. |
enableEcsManagedTagsInput |
boolean | cdktf.IResolvable |
No description. |
enableExecuteCommandInput |
boolean | cdktf.IResolvable |
No description. |
groupInput |
string |
No description. |
launchTypeInput |
string |
No description. |
networkConfigurationInput |
CloudwatchEventTargetEcsTargetNetworkConfiguration |
No description. |
placementConstraintInput |
cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[] |
No description. |
platformVersionInput |
string |
No description. |
propagateTagsInput |
string |
No description. |
tagsInput |
{[ key: string ]: string} |
No description. |
taskCountInput |
number |
No description. |
taskDefinitionArnInput |
string |
No description. |
enableEcsManagedTags |
boolean | cdktf.IResolvable |
No description. |
enableExecuteCommand |
boolean | cdktf.IResolvable |
No description. |
group |
string |
No description. |
launchType |
string |
No description. |
platformVersion |
string |
No description. |
propagateTags |
string |
No description. |
tags |
{[ key: string ]: string} |
No description. |
taskCount |
number |
No description. |
taskDefinitionArn |
string |
No description. |
internalValue |
CloudwatchEventTargetEcsTarget |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly networkConfiguration: CloudwatchEventTargetEcsTargetNetworkConfigurationOutputReference;
public readonly placementConstraint: CloudwatchEventTargetEcsTargetPlacementConstraintList;
public readonly enableEcsManagedTagsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly enableExecuteCommandInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly groupInput: string;
- Type: string
public readonly launchTypeInput: string;
- Type: string
public readonly networkConfigurationInput: CloudwatchEventTargetEcsTargetNetworkConfiguration;
public readonly placementConstraintInput: IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[];
- Type: cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[]
public readonly platformVersionInput: string;
- Type: string
public readonly propagateTagsInput: string;
- Type: string
public readonly tagsInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly taskCountInput: number;
- Type: number
public readonly taskDefinitionArnInput: string;
- Type: string
public readonly enableEcsManagedTags: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly enableExecuteCommand: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly group: string;
- Type: string
public readonly launchType: string;
- Type: string
public readonly platformVersion: string;
- Type: string
public readonly propagateTags: string;
- Type: string
public readonly tags: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly taskCount: number;
- Type: number
public readonly taskDefinitionArn: string;
- Type: string
public readonly internalValue: CloudwatchEventTargetEcsTarget;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetEcsTargetPlacementConstraintList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): CloudwatchEventTargetEcsTargetPlacementConstraintOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
internalValue |
cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[] |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly internalValue: IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[];
- Type: cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint[]
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetEcsTargetPlacementConstraintOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
resetExpression |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetExpression(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
expressionInput |
string |
No description. |
typeInput |
string |
No description. |
expression |
string |
No description. |
type |
string |
No description. |
internalValue |
cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly expressionInput: string;
- Type: string
public readonly typeInput: string;
- Type: string
public readonly expression: string;
- Type: string
public readonly type: string;
- Type: string
public readonly internalValue: IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint;
- Type: cdktf.IResolvable | CloudwatchEventTargetEcsTargetPlacementConstraint
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetHttpTargetOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetHeaderParameters |
No description. |
resetPathParameterValues |
No description. |
resetQueryStringParameters |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetHeaderParameters(): void
public resetPathParameterValues(): void
public resetQueryStringParameters(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
headerParametersInput |
{[ key: string ]: string} |
No description. |
pathParameterValuesInput |
string[] |
No description. |
queryStringParametersInput |
{[ key: string ]: string} |
No description. |
headerParameters |
{[ key: string ]: string} |
No description. |
pathParameterValues |
string[] |
No description. |
queryStringParameters |
{[ key: string ]: string} |
No description. |
internalValue |
CloudwatchEventTargetHttpTarget |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly headerParametersInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly pathParameterValuesInput: string[];
- Type: string[]
public readonly queryStringParametersInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly headerParameters: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly pathParameterValues: string[];
- Type: string[]
public readonly queryStringParameters: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly internalValue: CloudwatchEventTargetHttpTarget;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetInputTransformerOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetInputPaths |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetInputPaths(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
inputPathsInput |
{[ key: string ]: string} |
No description. |
inputTemplateInput |
string |
No description. |
inputPaths |
{[ key: string ]: string} |
No description. |
inputTemplate |
string |
No description. |
internalValue |
CloudwatchEventTargetInputTransformer |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly inputPathsInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly inputTemplateInput: string;
- Type: string
public readonly inputPaths: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly inputTemplate: string;
- Type: string
public readonly internalValue: CloudwatchEventTargetInputTransformer;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetKinesisTargetOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetPartitionKeyPath |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetPartitionKeyPath(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
partitionKeyPathInput |
string |
No description. |
partitionKeyPath |
string |
No description. |
internalValue |
CloudwatchEventTargetKinesisTarget |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly partitionKeyPathInput: string;
- Type: string
public readonly partitionKeyPath: string;
- Type: string
public readonly internalValue: CloudwatchEventTargetKinesisTarget;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetRedshiftTargetOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetDbUser |
No description. |
resetSecretsManagerArn |
No description. |
resetSql |
No description. |
resetStatementName |
No description. |
resetWithEvent |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetDbUser(): void
public resetSecretsManagerArn(): void
public resetSql(): void
public resetStatementName(): void
public resetWithEvent(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
databaseInput |
string |
No description. |
dbUserInput |
string |
No description. |
secretsManagerArnInput |
string |
No description. |
sqlInput |
string |
No description. |
statementNameInput |
string |
No description. |
withEventInput |
boolean | cdktf.IResolvable |
No description. |
database |
string |
No description. |
dbUser |
string |
No description. |
secretsManagerArn |
string |
No description. |
sql |
string |
No description. |
statementName |
string |
No description. |
withEvent |
boolean | cdktf.IResolvable |
No description. |
internalValue |
CloudwatchEventTargetRedshiftTarget |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly databaseInput: string;
- Type: string
public readonly dbUserInput: string;
- Type: string
public readonly secretsManagerArnInput: string;
- Type: string
public readonly sqlInput: string;
- Type: string
public readonly statementNameInput: string;
- Type: string
public readonly withEventInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly database: string;
- Type: string
public readonly dbUser: string;
- Type: string
public readonly secretsManagerArn: string;
- Type: string
public readonly sql: string;
- Type: string
public readonly statementName: string;
- Type: string
public readonly withEvent: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly internalValue: CloudwatchEventTargetRedshiftTarget;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetRetryPolicyOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetMaximumEventAgeInSeconds |
No description. |
resetMaximumRetryAttempts |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetMaximumEventAgeInSeconds(): void
public resetMaximumRetryAttempts(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
maximumEventAgeInSecondsInput |
number |
No description. |
maximumRetryAttemptsInput |
number |
No description. |
maximumEventAgeInSeconds |
number |
No description. |
maximumRetryAttempts |
number |
No description. |
internalValue |
CloudwatchEventTargetRetryPolicy |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly maximumEventAgeInSecondsInput: number;
- Type: number
public readonly maximumRetryAttemptsInput: number;
- Type: number
public readonly maximumEventAgeInSeconds: number;
- Type: number
public readonly maximumRetryAttempts: number;
- Type: number
public readonly internalValue: CloudwatchEventTargetRetryPolicy;
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetRunCommandTargetsList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
allWithMapKey |
Creating an iterator for this complex list. |
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public allWithMapKey(mapKeyAttributeName: string): DynamicListTerraformIterator
Creating an iterator for this complex list.
The list will be converted into a map with the mapKeyAttributeName as the key.
- Type: string
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): CloudwatchEventTargetRunCommandTargetsOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
internalValue |
cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets[] |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly internalValue: IResolvable | CloudwatchEventTargetRunCommandTargets[];
- Type: cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets[]
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetRunCommandTargetsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
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. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
keyInput |
string |
No description. |
valuesInput |
string[] |
No description. |
key |
string |
No description. |
values |
string[] |
No description. |
internalValue |
cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly keyInput: string;
- Type: string
public readonly valuesInput: string[];
- Type: string[]
public readonly key: string;
- Type: string
public readonly values: string[];
- Type: string[]
public readonly internalValue: IResolvable | CloudwatchEventTargetRunCommandTargets;
- Type: cdktf.IResolvable | CloudwatchEventTargetRunCommandTargets
import { cloudwatchEventTarget } from '@cdktf/aws-cdk'
new cloudwatchEventTarget.CloudwatchEventTargetSqsTargetOutputReference(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. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
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. |
resetMessageGroupId |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetMessageGroupId(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
messageGroupIdInput |
string |
No description. |
messageGroupId |
string |
No description. |
internalValue |
CloudwatchEventTargetSqsTarget |
No description. |
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.
public readonly fqn: string;
- Type: string
public readonly messageGroupIdInput: string;
- Type: string
public readonly messageGroupId: string;
- Type: string
public readonly internalValue: CloudwatchEventTargetSqsTarget;