@awboost/cfn-resource-types 0.1.64 → 0.1.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,41 +1,88 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::ApplicationAutoScaling::ScalableTarget
4
+ * The ``AWS::ApplicationAutoScaling::ScalableTarget`` resource specifies a resource that Application Auto Scaling can scale, such as an AWS::DynamoDB::Table or AWS::ECS::Service resource.
5
+ For more information, see [Getting started](https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html) in the *Application Auto Scaling User Guide*.
6
+ If the resource that you want Application Auto Scaling to scale is not yet created in your account, add a dependency on the resource when registering it as a scalable target using the [DependsOn](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) attribute.
5
7
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html}
6
8
  */
7
9
  export type ApplicationAutoScalingScalableTargetProperties = {
8
10
  /**
9
- * The maximum value that you plan to scale in to. When a scaling policy is in effect, Application Auto Scaling can scale in (contract) as needed to the minimum capacity limit in response to changing demand
11
+ * The maximum value that you plan to scale out to. When a scaling policy is in effect, Application Auto Scaling can scale out (expand) as needed to the maximum capacity limit in response to changing demand.
10
12
  */
11
13
  MaxCapacity: number;
12
14
  /**
13
- * The minimum value that you plan to scale in to. When a scaling policy is in effect, Application Auto Scaling can scale in (contract) as needed to the minimum capacity limit in response to changing demand
15
+ * The minimum value that you plan to scale in to. When a scaling policy is in effect, Application Auto Scaling can scale in (contract) as needed to the minimum capacity limit in response to changing demand.
14
16
  */
15
17
  MinCapacity: number;
16
18
  /**
17
- * The identifier of the resource associated with the scalable target
18
- */
19
+ * The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier.
20
+ + ECS service - The resource type is ``service`` and the unique identifier is the cluster name and service name. Example: ``service/my-cluster/my-service``.
21
+ + Spot Fleet - The resource type is ``spot-fleet-request`` and the unique identifier is the Spot Fleet request ID. Example: ``spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE``.
22
+ + EMR cluster - The resource type is ``instancegroup`` and the unique identifier is the cluster ID and instance group ID. Example: ``instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0``.
23
+ + AppStream 2.0 fleet - The resource type is ``fleet`` and the unique identifier is the fleet name. Example: ``fleet/sample-fleet``.
24
+ + DynamoDB table - The resource type is ``table`` and the unique identifier is the table name. Example: ``table/my-table``.
25
+ + DynamoDB global secondary index - The resource type is ``index`` and the unique identifier is the index name. Example: ``table/my-table/index/my-table-index``.
26
+ + Aurora DB cluster - The resource type is ``cluster`` and the unique identifier is the cluster name. Example: ``cluster:my-db-cluster``.
27
+ + SageMaker endpoint variant - The resource type is ``variant`` and the unique identifier is the resource ID. Example: ``endpoint/my-end-point/variant/KMeansClustering``.
28
+ + Custom resources are not supported with a resource type. This parameter must specify the ``OutputValue`` from the CloudFormation template stack used to access the resources. The unique identifier is defined by the service provider. More information is available in our [GitHub repository](https://docs.aws.amazon.com/https://github.com/aws/aws-auto-scaling-custom-resource).
29
+ + Amazon Comprehend document classification endpoint - The resource type and unique identifier are specified using the endpoint ARN. Example: ``arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE``.
30
+ + Amazon Comprehend entity recognizer endpoint - The resource type and unique identifier are specified using the endpoint ARN. Example: ``arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE``.
31
+ + Lambda provisioned concurrency - The resource type is ``function`` and the unique identifier is the function name with a function version or alias name suffix that is not ``$LATEST``. Example: ``function:my-function:prod`` or ``function:my-function:1``.
32
+ + Amazon Keyspaces table - The resource type is ``table`` and the unique identifier is the table name. Example: ``keyspace/mykeyspace/table/mytable``.
33
+ + Amazon MSK cluster - The resource type and unique identifier are specified using the cluster ARN. Example: ``arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5``.
34
+ + Amazon ElastiCache replication group - The resource type is ``replication-group`` and the unique identifier is the replication group name. Example: ``replication-group/mycluster``.
35
+ + Neptune cluster - The resource type is ``cluster`` and the unique identifier is the cluster name. Example: ``cluster:mycluster``.
36
+ + SageMaker serverless endpoint - The resource type is ``variant`` and the unique identifier is the resource ID. Example: ``endpoint/my-end-point/variant/KMeansClustering``.
37
+ + SageMaker inference component - The resource type is ``inference-component`` and the unique identifier is the resource ID. Example: ``inference-component/my-inference-component``.
38
+ */
19
39
  ResourceId: string;
20
40
  /**
21
- * Specify the Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that allows Application Auto Scaling to modify the scalable target on your behalf.
22
- */
41
+ * Specify the Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that allows Application Auto Scaling to modify the scalable target on your behalf. This can be either an IAM service role that Application Auto Scaling can assume to make calls to other AWS resources on your behalf, or a service-linked role for the specified service. For more information, see [How Application Auto Scaling works with IAM](https://docs.aws.amazon.com/autoscaling/application/userguide/security_iam_service-with-iam.html) in the *Application Auto Scaling User Guide*.
42
+ To automatically create a service-linked role (recommended), specify the full ARN of the service-linked role in your stack template. To find the exact ARN of the service-linked role for your AWS or custom resource, see the [Service-linked roles](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-service-linked-roles.html) topic in the *Application Auto Scaling User Guide*. Look for the ARN in the table at the bottom of the page.
43
+ */
23
44
  RoleARN?: string;
24
45
  /**
25
- * The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property
26
- */
46
+ * The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property.
47
+ + ``ecs:service:DesiredCount`` - The desired task count of an ECS service.
48
+ + ``elasticmapreduce:instancegroup:InstanceCount`` - The instance count of an EMR Instance Group.
49
+ + ``ec2:spot-fleet-request:TargetCapacity`` - The target capacity of a Spot Fleet.
50
+ + ``appstream:fleet:DesiredCapacity`` - The desired capacity of an AppStream 2.0 fleet.
51
+ + ``dynamodb:table:ReadCapacityUnits`` - The provisioned read capacity for a DynamoDB table.
52
+ + ``dynamodb:table:WriteCapacityUnits`` - The provisioned write capacity for a DynamoDB table.
53
+ + ``dynamodb:index:ReadCapacityUnits`` - The provisioned read capacity for a DynamoDB global secondary index.
54
+ + ``dynamodb:index:WriteCapacityUnits`` - The provisioned write capacity for a DynamoDB global secondary index.
55
+ + ``rds:cluster:ReadReplicaCount`` - The count of Aurora Replicas in an Aurora DB cluster. Available for Aurora MySQL-compatible edition and Aurora PostgreSQL-compatible edition.
56
+ + ``sagemaker:variant:DesiredInstanceCount`` - The number of EC2 instances for a SageMaker model endpoint variant.
57
+ + ``custom-resource:ResourceType:Property`` - The scalable dimension for a custom resource provided by your own application or service.
58
+ + ``comprehend:document-classifier-endpoint:DesiredInferenceUnits`` - The number of inference units for an Amazon Comprehend document classification endpoint.
59
+ + ``comprehend:entity-recognizer-endpoint:DesiredInferenceUnits`` - The number of inference units for an Amazon Comprehend entity recognizer endpoint.
60
+ + ``lambda:function:ProvisionedConcurrency`` - The provisioned concurrency for a Lambda function.
61
+ + ``cassandra:table:ReadCapacityUnits`` - The provisioned read capacity for an Amazon Keyspaces table.
62
+ + ``cassandra:table:WriteCapacityUnits`` - The provisioned write capacity for an Amazon Keyspaces table.
63
+ + ``kafka:broker-storage:VolumeSize`` - The provisioned volume size (in GiB) for brokers in an Amazon MSK cluster.
64
+ + ``elasticache:replication-group:NodeGroups`` - The number of node groups for an Amazon ElastiCache replication group.
65
+ + ``elasticache:replication-group:Replicas`` - The number of replicas per node group for an Amazon ElastiCache replication group.
66
+ + ``neptune:cluster:ReadReplicaCount`` - The count of read replicas in an Amazon Neptune DB cluster.
67
+ + ``sagemaker:variant:DesiredProvisionedConcurrency`` - The provisioned concurrency for a SageMaker serverless endpoint.
68
+ + ``sagemaker:inference-component:DesiredCopyCount`` - The number of copies across an endpoint for a SageMaker inference component.
69
+ */
27
70
  ScalableDimension: string;
28
71
  /**
29
72
  * The scheduled actions for the scalable target. Duplicates aren't allowed.
30
73
  */
31
74
  ScheduledActions?: ScheduledAction[];
32
75
  /**
33
- * The namespace of the AWS service that provides the resource, or a custom-resource
76
+ * The namespace of the AWS service that provides the resource, or a ``custom-resource``.
34
77
  */
35
78
  ServiceNamespace: string;
36
79
  /**
37
- * An embedded object that contains attributes and attribute values that are used to suspend and resume automatic scaling. Setting the value of an attribute to true suspends the specified scaling activities. Setting it to false (default) resumes the specified scaling activities.
38
- */
80
+ * An embedded object that contains attributes and attribute values that are used to suspend and resume automatic scaling. Setting the value of an attribute to ``true`` suspends the specified scaling activities. Setting it to ``false`` (default) resumes the specified scaling activities.
81
+ *Suspension Outcomes*
82
+ + For ``DynamicScalingInSuspended``, while a suspension is in effect, all scale-in activities that are triggered by a scaling policy are suspended.
83
+ + For ``DynamicScalingOutSuspended``, while a suspension is in effect, all scale-out activities that are triggered by a scaling policy are suspended.
84
+ + For ``ScheduledScalingSuspended``, while a suspension is in effect, all scaling activities that involve scheduled actions are suspended.
85
+ */
39
86
  SuspendedState?: SuspendedState;
40
87
  };
41
88
  /**
@@ -43,48 +90,87 @@ export type ApplicationAutoScalingScalableTargetProperties = {
43
90
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#aws-resource-applicationautoscaling-scalabletarget-return-values}
44
91
  */
45
92
  export type ApplicationAutoScalingScalableTargetAttributes = {
46
- /**
47
- * This value can be returned by using the Ref function. Ref returns the Cloudformation generated ID of the resource in format - ResourceId|ScalableDimension|ServiceNamespace
48
- */
49
93
  Id: string;
50
94
  };
51
95
  /**
52
96
  * Type definition for `AWS::ApplicationAutoScaling::ScalableTarget.ScalableTargetAction`.
53
- * specifies the minimum and maximum capacity
97
+ * ``ScalableTargetAction`` specifies the minimum and maximum capacity for the ``ScalableTargetAction`` property of the [AWS::ApplicationAutoScaling::ScalableTarget ScheduledAction](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html) property type.
54
98
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scalabletargetaction.html}
55
99
  */
56
100
  export type ScalableTargetAction = {
101
+ /**
102
+ * The maximum capacity.
103
+ */
57
104
  MaxCapacity?: number;
105
+ /**
106
+ * The minimum capacity.
107
+ */
58
108
  MinCapacity?: number;
59
109
  };
60
110
  /**
61
111
  * Type definition for `AWS::ApplicationAutoScaling::ScalableTarget.ScheduledAction`.
62
- * specifies a scheduled action for a scalable target
112
+ * ``ScheduledAction`` is a property of the [AWS::ApplicationAutoScaling::ScalableTarget](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html) resource that specifies a scheduled action for a scalable target.
113
+ For more information, see [Scheduled scaling](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html) in the *Application Auto Scaling User Guide*.
63
114
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html}
64
115
  */
65
116
  export type ScheduledAction = {
117
+ /**
118
+ * The date and time that the action is scheduled to end, in UTC.
119
+ */
66
120
  EndTime?: string;
67
121
  /**
68
- * specifies the minimum and maximum capacity
122
+ * The new minimum and maximum capacity. You can set both values or just one. At the scheduled time, if the current capacity is below the minimum capacity, Application Auto Scaling scales out to the minimum capacity. If the current capacity is above the maximum capacity, Application Auto Scaling scales in to the maximum capacity.
69
123
  */
70
124
  ScalableTargetAction?: ScalableTargetAction;
125
+ /**
126
+ * The schedule for this action. The following formats are supported:
127
+ + At expressions - "``at(yyyy-mm-ddThh:mm:ss)``"
128
+ + Rate expressions - "``rate(value unit)``"
129
+ + Cron expressions - "``cron(fields)``"
130
+
131
+ At expressions are useful for one-time schedules. Cron expressions are useful for scheduled actions that run periodically at a specified date and time, and rate expressions are useful for scheduled actions that run at a regular interval.
132
+ At and cron expressions use Universal Coordinated Time (UTC) by default.
133
+ The cron format consists of six fields separated by white spaces: [Minutes] [Hours] [Day_of_Month] [Month] [Day_of_Week] [Year].
134
+ For rate expressions, *value* is a positive integer and *unit* is ``minute`` | ``minutes`` | ``hour`` | ``hours`` | ``day`` | ``days``.
135
+ */
71
136
  Schedule: string;
137
+ /**
138
+ * The name of the scheduled action. This name must be unique among all other scheduled actions on the specified scalable target.
139
+ */
72
140
  ScheduledActionName: string;
141
+ /**
142
+ * The date and time that the action is scheduled to begin, in UTC.
143
+ */
73
144
  StartTime?: string;
145
+ /**
146
+ * The time zone used when referring to the date and time of a scheduled action, when the scheduled action uses an at or cron expression.
147
+ */
74
148
  Timezone?: string;
75
149
  };
76
150
  /**
77
151
  * Type definition for `AWS::ApplicationAutoScaling::ScalableTarget.SuspendedState`.
78
- * specifies whether the scaling activities for a scalable target are in a suspended state
152
+ * ``SuspendedState`` is a property of the [AWS::ApplicationAutoScaling::ScalableTarget](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html) resource that specifies whether the scaling activities for a scalable target are in a suspended state.
153
+ For more information, see [Suspending and resuming scaling](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-suspend-resume-scaling.html) in the *Application Auto Scaling User Guide*.
79
154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html}
80
155
  */
81
156
  export type SuspendedState = {
157
+ /**
158
+ * Whether scale in by a target tracking scaling policy or a step scaling policy is suspended. Set the value to ``true`` if you don't want Application Auto Scaling to remove capacity when a scaling policy is triggered. The default is ``false``.
159
+ */
82
160
  DynamicScalingInSuspended?: boolean;
161
+ /**
162
+ * Whether scale out by a target tracking scaling policy or a step scaling policy is suspended. Set the value to ``true`` if you don't want Application Auto Scaling to add capacity when a scaling policy is triggered. The default is ``false``.
163
+ */
83
164
  DynamicScalingOutSuspended?: boolean;
165
+ /**
166
+ * Whether scheduled scaling is suspended. Set the value to ``true`` if you don't want Application Auto Scaling to add or remove capacity by initiating scheduled actions. The default is ``false``.
167
+ */
84
168
  ScheduledScalingSuspended?: boolean;
85
169
  };
86
170
  /**
87
- * Resource Type definition for AWS::ApplicationAutoScaling::ScalableTarget
171
+ * The ``AWS::ApplicationAutoScaling::ScalableTarget`` resource specifies a resource that Application Auto Scaling can scale, such as an AWS::DynamoDB::Table or AWS::ECS::Service resource.
172
+ For more information, see [Getting started](https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html) in the *Application Auto Scaling User Guide*.
173
+ If the resource that you want Application Auto Scaling to scale is not yet created in your account, add a dependency on the resource when registering it as a scalable target using the [DependsOn](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) attribute.
88
174
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html}
89
175
  */
90
176
  export declare class ApplicationAutoScalingScalableTarget extends $Resource<"AWS::ApplicationAutoScaling::ScalableTarget", ApplicationAutoScalingScalableTargetProperties, ApplicationAutoScalingScalableTargetAttributes> {
@@ -1,6 +1,8 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::ApplicationAutoScaling::ScalableTarget
3
+ * The ``AWS::ApplicationAutoScaling::ScalableTarget`` resource specifies a resource that Application Auto Scaling can scale, such as an AWS::DynamoDB::Table or AWS::ECS::Service resource.
4
+ For more information, see [Getting started](https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html) in the *Application Auto Scaling User Guide*.
5
+ If the resource that you want Application Auto Scaling to scale is not yet created in your account, add a dependency on the resource when registering it as a scalable target using the [DependsOn](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) attribute.
4
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html}
5
7
  */
6
8
  export class ApplicationAutoScalingScalableTarget extends $Resource {
@@ -64,6 +64,10 @@ export type AgentlessDialerConfig = {
64
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-answermachinedetectionconfig.html}
65
65
  */
66
66
  export type AnswerMachineDetectionConfig = {
67
+ /**
68
+ * Enables detection of prompts (e.g., beep after after a voicemail greeting)
69
+ */
70
+ AwaitAnswerMachinePrompt?: boolean;
67
71
  /**
68
72
  * Flag to decided whether outbound calls should have answering machine detection enabled or not
69
73
  */
@@ -35,40 +35,49 @@ export type DMSDataProviderProperties = {
35
35
  * The property identifies the exact type of settings for the data provider.
36
36
  */
37
37
  Settings?: {
38
- PostgreSqlSettings?: {
38
+ /**
39
+ * MicrosoftSqlServerSettings property identifier.
40
+ */
41
+ MicrosoftSqlServerSettings?: {
39
42
  CertificateArn?: string;
40
- DatabaseName?: string;
41
- Port?: number;
42
- ServerName?: string;
43
- SslMode?: DmsSslModeValue;
43
+ DatabaseName: string;
44
+ Port: number;
45
+ ServerName: string;
46
+ SslMode: DmsSslModeValue;
44
47
  };
45
- } | {
48
+ /**
49
+ * MySqlSettings property identifier.
50
+ */
46
51
  MySqlSettings?: {
47
52
  CertificateArn?: string;
48
- Port?: number;
49
- ServerName?: string;
50
- SslMode?: DmsSslModeValue;
53
+ Port: number;
54
+ ServerName: string;
55
+ SslMode: DmsSslModeValue;
51
56
  };
52
- } | {
57
+ /**
58
+ * OracleSettings property identifier.
59
+ */
53
60
  OracleSettings?: {
54
61
  AsmServer?: string;
55
62
  CertificateArn?: string;
56
- DatabaseName?: string;
57
- Port?: number;
63
+ DatabaseName: string;
64
+ Port: number;
58
65
  SecretsManagerOracleAsmAccessRoleArn?: string;
59
66
  SecretsManagerOracleAsmSecretId?: string;
60
67
  SecretsManagerSecurityDbEncryptionAccessRoleArn?: string;
61
68
  SecretsManagerSecurityDbEncryptionSecretId?: string;
62
- ServerName?: string;
63
- SslMode?: DmsSslModeValue;
69
+ ServerName: string;
70
+ SslMode: DmsSslModeValue;
64
71
  };
65
- } | {
66
- MicrosoftSqlServerSettings?: {
72
+ /**
73
+ * PostgreSqlSettings property identifier.
74
+ */
75
+ PostgreSqlSettings?: {
67
76
  CertificateArn?: string;
68
- DatabaseName?: string;
69
- Port?: number;
70
- ServerName?: string;
71
- SslMode?: DmsSslModeValue;
77
+ DatabaseName: string;
78
+ Port: number;
79
+ ServerName: string;
80
+ SslMode: DmsSslModeValue;
72
81
  };
73
82
  };
74
83
  /**
@@ -98,7 +107,7 @@ export type DMSDataProviderAttributes = {
98
107
  * Type definition for `AWS::DMS::DataProvider.DmsSslModeValue`.
99
108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-dmssslmodevalue.html}
100
109
  */
101
- export type DmsSslModeValue = "none" | "require" | "verify_ca" | "verify_full";
110
+ export type DmsSslModeValue = "none" | "require" | "verify-ca" | "verify-full";
102
111
  /**
103
112
  * Type definition for `AWS::DMS::DataProvider.Tag`.
104
113
  * A key-value pair to associate with a resource.
@@ -356,7 +356,11 @@ export type TaskSchedule = {
356
356
  * @maxLength `256`
357
357
  * @pattern `^[a-zA-Z0-9\ \_\*\?\,\|\^\-\/\#\s\(\)\+]*$`
358
358
  */
359
- ScheduleExpression: string;
359
+ ScheduleExpression?: string;
360
+ /**
361
+ * Specifies status of a schedule.
362
+ */
363
+ Status?: "ENABLED" | "DISABLED";
360
364
  };
361
365
  /**
362
366
  * Resource schema for AWS::DataSync::Task.
@@ -11,11 +11,6 @@ export type EC2CustomerGatewayProperties = {
11
11
  Default: 65000
12
12
  */
13
13
  BgpAsn?: number;
14
- /**
15
- * @min `2147483648`
16
- * @max `4294967294`
17
- */
18
- BgpAsnExtended?: number;
19
14
  /**
20
15
  * @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\d{1}:\d{12}:certificate\/[a-zA-Z0-9-_]+$`
21
16
  */
@@ -5,21 +5,20 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html}
6
6
  */
7
7
  export type EC2TransitGatewayRouteTableAssociationProperties = {
8
+ /**
9
+ * The ID of transit gateway attachment.
10
+ */
8
11
  TransitGatewayAttachmentId: string;
12
+ /**
13
+ * The ID of transit gateway route table.
14
+ */
9
15
  TransitGatewayRouteTableId: string;
10
16
  };
11
- /**
12
- * Attribute type definition for `AWS::EC2::TransitGatewayRouteTableAssociation`.
13
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html#aws-resource-ec2-transitgatewayroutetableassociation-return-values}
14
- */
15
- export type EC2TransitGatewayRouteTableAssociationAttributes = {
16
- Id: string;
17
- };
18
17
  /**
19
18
  * Resource Type definition for AWS::EC2::TransitGatewayRouteTableAssociation
20
19
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html}
21
20
  */
22
- export declare class EC2TransitGatewayRouteTableAssociation extends $Resource<"AWS::EC2::TransitGatewayRouteTableAssociation", EC2TransitGatewayRouteTableAssociationProperties, EC2TransitGatewayRouteTableAssociationAttributes> {
21
+ export declare class EC2TransitGatewayRouteTableAssociation extends $Resource<"AWS::EC2::TransitGatewayRouteTableAssociation", EC2TransitGatewayRouteTableAssociationProperties, Record<string, never>> {
23
22
  static readonly Type = "AWS::EC2::TransitGatewayRouteTableAssociation";
24
23
  constructor(logicalId: string, properties: EC2TransitGatewayRouteTableAssociationProperties, options?: $ResourceOptions);
25
24
  }