@propulsionworks/cloudformation 0.1.14 → 0.1.16
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.
- package/lib/builder.ts +5 -5
- package/out/exports/resources.generated/aws-b2bi-partnership.d.ts +8 -0
- package/out/exports/resources.generated/aws-bedrock-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-bedrock-guardrail.d.ts +24 -0
- package/out/exports/resources.generated/aws-cassandra-table.d.ts +3 -0
- package/out/exports/resources.generated/aws-cloudformation-stackset.d.ts +2 -2
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +39 -7
- package/out/exports/resources.generated/aws-dynamodb-globaltable.d.ts +82 -46
- package/out/exports/resources.generated/aws-dynamodb-table.d.ts +6 -2
- package/out/exports/resources.generated/aws-ec2-trafficmirrorfilterrule.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-service.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-taskdefinition.d.ts +2 -3
- package/out/exports/resources.generated/aws-emrserverless-application.d.ts +1 -1
- package/out/exports/resources.generated/aws-evs-environment.d.ts +1 -1
- package/out/exports/resources.generated/aws-fsx-s3accesspointattachment.d.ts +25 -3
- package/out/exports/resources.generated/aws-gamelift-containerfleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-imagebuilder-component.d.ts +1 -56
- package/out/exports/resources.generated/aws-imagebuilder-containerrecipe.d.ts +1 -85
- package/out/exports/resources.generated/aws-imagebuilder-workflow.d.ts +1 -57
- package/out/exports/resources.generated/aws-iot-logging.d.ts +2 -2
- package/out/exports/resources.generated/aws-kinesis-streamconsumer.d.ts +18 -5
- package/out/exports/resources.generated/aws-lex-bot.d.ts +1 -0
- package/out/exports/resources.generated/aws-neptune-dbinstance.d.ts +2 -0
- package/out/exports/resources.generated/aws-odb-cloudautonomousvmcluster.d.ts +285 -0
- package/out/exports/resources.generated/aws-odb-cloudexadatainfrastructure.d.ts +200 -0
- package/out/exports/resources.generated/aws-odb-cloudvmcluster.d.ts +233 -0
- package/out/exports/resources.generated/aws-odb-odbnetwork.d.ts +98 -0
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +2 -2
- package/out/exports/resources.generated/aws-qbusiness-dataaccessor.d.ts +54 -0
- package/out/exports/resources.generated/aws-qbusiness-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-qbusiness-permission.d.ts +23 -0
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +26 -2
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +1 -1
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +5 -4
- package/out/exports/resources.generated/aws-redshiftserverless-snapshot.d.ts +109 -0
- package/out/exports/resources.generated/aws-s3tables-table.d.ts +166 -0
- package/out/exports/resources.generated/aws-transfer-server.d.ts +1 -0
- package/out/lib/builder.d.ts +3 -3
- package/out/lib/builder.d.ts.map +1 -1
- package/out/lib/builder.js +2 -2
- package/out/lib/builder.js.map +1 -1
- package/package.json +1 -1
|
@@ -10,45 +10,46 @@ import type { ResourceDefinitionWithAttributes, Tag, PolicyDocument } from "../m
|
|
|
10
10
|
*
|
|
11
11
|
* - The IAM Principal executing the stack operation must have the permissions listed below in all regions where you plan to have a global table replica. The IAM Principal's permissions should not have restrictions based on IP source address. Some global tables operations (for example, adding a replica) are asynchronous, and require that the IAM Principal is valid until they complete. You should not delete the Principal (user or IAM role) until CloudFormation has finished updating your stack.
|
|
12
12
|
*
|
|
13
|
+
* - `application-autoscaling:DeleteScalingPolicy`
|
|
14
|
+
* - `application-autoscaling:DeleteScheduledAction`
|
|
15
|
+
* - `application-autoscaling:DeregisterScalableTarget`
|
|
16
|
+
* - `application-autoscaling:DescribeScalableTargets`
|
|
17
|
+
* - `application-autoscaling:DescribeScalingPolicies`
|
|
18
|
+
* - `application-autoscaling:PutScalingPolicy`
|
|
19
|
+
* - `application-autoscaling:PutScheduledAction`
|
|
20
|
+
* - `application-autoscaling:RegisterScalableTarget`
|
|
21
|
+
* - `dynamodb:BatchWriteItem`
|
|
22
|
+
* - `dynamodb:CreateGlobalTableWitness`
|
|
13
23
|
* - `dynamodb:CreateTable`
|
|
14
|
-
* - `dynamodb:
|
|
24
|
+
* - `dynamodb:CreateTableReplica`
|
|
25
|
+
* - `dynamodb:DeleteGlobalTableWitness`
|
|
26
|
+
* - `dynamodb:DeleteItem`
|
|
15
27
|
* - `dynamodb:DeleteTable`
|
|
28
|
+
* - `dynamodb:DeleteTableReplica`
|
|
16
29
|
* - `dynamodb:DescribeContinuousBackups`
|
|
17
30
|
* - `dynamodb:DescribeContributorInsights`
|
|
18
31
|
* - `dynamodb:DescribeTable`
|
|
19
32
|
* - `dynamodb:DescribeTableReplicaAutoScaling`
|
|
20
33
|
* - `dynamodb:DescribeTimeToLive`
|
|
21
|
-
* - `dynamodb:ListTables`
|
|
22
|
-
* - `dynamodb:UpdateTimeToLive`
|
|
23
|
-
* - `dynamodb:UpdateContributorInsights`
|
|
24
|
-
* - `dynamodb:UpdateContinuousBackups`
|
|
25
|
-
* - `dynamodb:ListTagsOfResource`
|
|
26
|
-
* - `dynamodb:TagResource`
|
|
27
|
-
* - `dynamodb:UntagResource`
|
|
28
|
-
* - `dynamodb:BatchWriteItem`
|
|
29
|
-
* - `dynamodb:CreateTableReplica`
|
|
30
|
-
* - `dynamodb:DeleteItem`
|
|
31
|
-
* - `dynamodb:DeleteTableReplica`
|
|
32
34
|
* - `dynamodb:DisableKinesisStreamingDestination`
|
|
33
35
|
* - `dynamodb:EnableKinesisStreamingDestination`
|
|
34
36
|
* - `dynamodb:GetItem`
|
|
37
|
+
* - `dynamodb:ListTables`
|
|
38
|
+
* - `dynamodb:ListTagsOfResource`
|
|
35
39
|
* - `dynamodb:PutItem`
|
|
36
40
|
* - `dynamodb:Query`
|
|
37
41
|
* - `dynamodb:Scan`
|
|
42
|
+
* - `dynamodb:TagResource`
|
|
43
|
+
* - `dynamodb:UntagResource`
|
|
44
|
+
* - `dynamodb:UpdateContinuousBackups`
|
|
45
|
+
* - `dynamodb:UpdateContributorInsights`
|
|
38
46
|
* - `dynamodb:UpdateItem`
|
|
39
|
-
* - `dynamodb:
|
|
47
|
+
* - `dynamodb:UpdateTable`
|
|
40
48
|
* - `dynamodb:UpdateTableReplicaAutoScaling`
|
|
49
|
+
* - `dynamodb:UpdateTimeToLive`
|
|
41
50
|
* - `iam:CreateServiceLinkedRole`
|
|
42
51
|
* - `kms:CreateGrant`
|
|
43
52
|
* - `kms:DescribeKey`
|
|
44
|
-
* - `application-autoscaling:DeleteScalingPolicy`
|
|
45
|
-
* - `application-autoscaling:DeleteScheduledAction`
|
|
46
|
-
* - `application-autoscaling:DeregisterScalableTarget`
|
|
47
|
-
* - `application-autoscaling:DescribeScalingPolicies`
|
|
48
|
-
* - `application-autoscaling:DescribeScalableTargets`
|
|
49
|
-
* - `application-autoscaling:PutScalingPolicy`
|
|
50
|
-
* - `application-autoscaling:PutScheduledAction`
|
|
51
|
-
* - `application-autoscaling:RegisterScalableTarget`
|
|
52
53
|
* - When using provisioned billing mode, CloudFormation will create an auto scaling policy on each of your replicas to control their write capacities. You must configure this policy using the `WriteProvisionedThroughputSettings` property. CloudFormation will ensure that all replicas have the same write capacity auto scaling property. You cannot directly specify a value for write capacity for a global table.
|
|
53
54
|
* - If your table uses provisioned capacity, you must configure auto scaling directly in the `AWS::DynamoDB::GlobalTable` resource. You should not configure additional auto scaling policies on any of the table replicas or global secondary indexes, either via API or via `AWS::ApplicationAutoScaling::ScalableTarget` or `AWS::ApplicationAutoScaling::ScalingPolicy` . Doing so might result in unexpected behavior and is unsupported.
|
|
54
55
|
* - In AWS CloudFormation , each global table is controlled by a single stack, in a single region, regardless of the number of replicas. When you deploy your template, CloudFormation will create/update all replicas as part of a single stack operation. You should not deploy the same `AWS::DynamoDB::GlobalTable` resource in multiple regions. Doing so will result in errors, and is unsupported. If you deploy your application template in multiple regions, you can use conditions to only create the resource in a single region. Alternatively, you can choose to define your `AWS::DynamoDB::GlobalTable` resources in a stack separate from your application stack, and make sure it is only deployed to a single region.
|
|
@@ -66,45 +67,46 @@ export type DynamoDBGlobalTable = ResourceDefinitionWithAttributes<"AWS::DynamoD
|
|
|
66
67
|
*
|
|
67
68
|
* - The IAM Principal executing the stack operation must have the permissions listed below in all regions where you plan to have a global table replica. The IAM Principal's permissions should not have restrictions based on IP source address. Some global tables operations (for example, adding a replica) are asynchronous, and require that the IAM Principal is valid until they complete. You should not delete the Principal (user or IAM role) until CloudFormation has finished updating your stack.
|
|
68
69
|
*
|
|
70
|
+
* - `application-autoscaling:DeleteScalingPolicy`
|
|
71
|
+
* - `application-autoscaling:DeleteScheduledAction`
|
|
72
|
+
* - `application-autoscaling:DeregisterScalableTarget`
|
|
73
|
+
* - `application-autoscaling:DescribeScalableTargets`
|
|
74
|
+
* - `application-autoscaling:DescribeScalingPolicies`
|
|
75
|
+
* - `application-autoscaling:PutScalingPolicy`
|
|
76
|
+
* - `application-autoscaling:PutScheduledAction`
|
|
77
|
+
* - `application-autoscaling:RegisterScalableTarget`
|
|
78
|
+
* - `dynamodb:BatchWriteItem`
|
|
79
|
+
* - `dynamodb:CreateGlobalTableWitness`
|
|
69
80
|
* - `dynamodb:CreateTable`
|
|
70
|
-
* - `dynamodb:
|
|
81
|
+
* - `dynamodb:CreateTableReplica`
|
|
82
|
+
* - `dynamodb:DeleteGlobalTableWitness`
|
|
83
|
+
* - `dynamodb:DeleteItem`
|
|
71
84
|
* - `dynamodb:DeleteTable`
|
|
85
|
+
* - `dynamodb:DeleteTableReplica`
|
|
72
86
|
* - `dynamodb:DescribeContinuousBackups`
|
|
73
87
|
* - `dynamodb:DescribeContributorInsights`
|
|
74
88
|
* - `dynamodb:DescribeTable`
|
|
75
89
|
* - `dynamodb:DescribeTableReplicaAutoScaling`
|
|
76
90
|
* - `dynamodb:DescribeTimeToLive`
|
|
77
|
-
* - `dynamodb:ListTables`
|
|
78
|
-
* - `dynamodb:UpdateTimeToLive`
|
|
79
|
-
* - `dynamodb:UpdateContributorInsights`
|
|
80
|
-
* - `dynamodb:UpdateContinuousBackups`
|
|
81
|
-
* - `dynamodb:ListTagsOfResource`
|
|
82
|
-
* - `dynamodb:TagResource`
|
|
83
|
-
* - `dynamodb:UntagResource`
|
|
84
|
-
* - `dynamodb:BatchWriteItem`
|
|
85
|
-
* - `dynamodb:CreateTableReplica`
|
|
86
|
-
* - `dynamodb:DeleteItem`
|
|
87
|
-
* - `dynamodb:DeleteTableReplica`
|
|
88
91
|
* - `dynamodb:DisableKinesisStreamingDestination`
|
|
89
92
|
* - `dynamodb:EnableKinesisStreamingDestination`
|
|
90
93
|
* - `dynamodb:GetItem`
|
|
94
|
+
* - `dynamodb:ListTables`
|
|
95
|
+
* - `dynamodb:ListTagsOfResource`
|
|
91
96
|
* - `dynamodb:PutItem`
|
|
92
97
|
* - `dynamodb:Query`
|
|
93
98
|
* - `dynamodb:Scan`
|
|
99
|
+
* - `dynamodb:TagResource`
|
|
100
|
+
* - `dynamodb:UntagResource`
|
|
101
|
+
* - `dynamodb:UpdateContinuousBackups`
|
|
102
|
+
* - `dynamodb:UpdateContributorInsights`
|
|
94
103
|
* - `dynamodb:UpdateItem`
|
|
95
|
-
* - `dynamodb:
|
|
104
|
+
* - `dynamodb:UpdateTable`
|
|
96
105
|
* - `dynamodb:UpdateTableReplicaAutoScaling`
|
|
106
|
+
* - `dynamodb:UpdateTimeToLive`
|
|
97
107
|
* - `iam:CreateServiceLinkedRole`
|
|
98
108
|
* - `kms:CreateGrant`
|
|
99
109
|
* - `kms:DescribeKey`
|
|
100
|
-
* - `application-autoscaling:DeleteScalingPolicy`
|
|
101
|
-
* - `application-autoscaling:DeleteScheduledAction`
|
|
102
|
-
* - `application-autoscaling:DeregisterScalableTarget`
|
|
103
|
-
* - `application-autoscaling:DescribeScalingPolicies`
|
|
104
|
-
* - `application-autoscaling:DescribeScalableTargets`
|
|
105
|
-
* - `application-autoscaling:PutScalingPolicy`
|
|
106
|
-
* - `application-autoscaling:PutScheduledAction`
|
|
107
|
-
* - `application-autoscaling:RegisterScalableTarget`
|
|
108
110
|
* - When using provisioned billing mode, CloudFormation will create an auto scaling policy on each of your replicas to control their write capacities. You must configure this policy using the `WriteProvisionedThroughputSettings` property. CloudFormation will ensure that all replicas have the same write capacity auto scaling property. You cannot directly specify a value for write capacity for a global table.
|
|
109
111
|
* - If your table uses provisioned capacity, you must configure auto scaling directly in the `AWS::DynamoDB::GlobalTable` resource. You should not configure additional auto scaling policies on any of the table replicas or global secondary indexes, either via API or via `AWS::ApplicationAutoScaling::ScalableTarget` or `AWS::ApplicationAutoScaling::ScalingPolicy` . Doing so might result in unexpected behavior and is unsupported.
|
|
110
112
|
* - In AWS CloudFormation , each global table is controlled by a single stack, in a single region, regardless of the number of replicas. When you deploy your template, CloudFormation will create/update all replicas as part of a single stack operation. You should not deploy the same `AWS::DynamoDB::GlobalTable` resource in multiple regions. Doing so will result in errors, and is unsupported. If you deploy your application template in multiple regions, you can use conditions to only create the resource in a single region. Alternatively, you can choose to define your `AWS::DynamoDB::GlobalTable` resources in a stack separate from your application stack, and make sure it is only deployed to a single region.
|
|
@@ -133,6 +135,11 @@ export type DynamoDBGlobalTableProps = {
|
|
|
133
135
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-globalsecondaryindexes}
|
|
134
136
|
*/
|
|
135
137
|
GlobalSecondaryIndexes?: GlobalSecondaryIndex[] | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* The list of witnesses of the MRSC global table. Only one witness Region can be configured per MRSC global table.
|
|
140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-globaltablewitnesses}
|
|
141
|
+
*/
|
|
142
|
+
GlobalTableWitnesses?: GlobalTableWitness[] | undefined;
|
|
136
143
|
/**
|
|
137
144
|
* Specifies the attributes that make up the primary key for the table. The attributes in the `KeySchema` property must also be defined in the `AttributeDefinitions` property.
|
|
138
145
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-keyschema}
|
|
@@ -143,6 +150,18 @@ export type DynamoDBGlobalTableProps = {
|
|
|
143
150
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-localsecondaryindexes}
|
|
144
151
|
*/
|
|
145
152
|
LocalSecondaryIndexes?: LocalSecondaryIndex[] | undefined;
|
|
153
|
+
/**
|
|
154
|
+
* Specifies the consistency mode for a new global table.
|
|
155
|
+
*
|
|
156
|
+
* You can specify one of the following consistency modes:
|
|
157
|
+
*
|
|
158
|
+
* - `EVENTUAL` : Configures a new global table for multi-Region eventual consistency (MREC).
|
|
159
|
+
* - `STRONG` : Configures a new global table for multi-Region strong consistency (MRSC).
|
|
160
|
+
*
|
|
161
|
+
* If you don't specify this field, the global table consistency mode defaults to `EVENTUAL` . For more information about global tables consistency modes, see [Consistency modes](https://docs.aws.amazon.com/V2globaltables_HowItWorks.html#V2globaltables_HowItWorks.consistency-modes) in DynamoDB developer guide.
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-multiregionconsistency}
|
|
163
|
+
*/
|
|
164
|
+
MultiRegionConsistency?: "EVENTUAL" | "STRONG" | undefined;
|
|
146
165
|
/**
|
|
147
166
|
* Specifies the list of replicas for your global table. The list must contain at least one element, the region where the stack defining the global table is deployed. For example, if you define your table in a stack deployed to us-east-1, you must have an entry in `Replicas` with the region us-east-1. You cannot remove the replica in the stack region.
|
|
148
167
|
*
|
|
@@ -150,7 +169,7 @@ export type DynamoDBGlobalTableProps = {
|
|
|
150
169
|
* >
|
|
151
170
|
* > If you add or delete a replica during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new replica, you might need to manually delete the replica.
|
|
152
171
|
*
|
|
153
|
-
* You can create a new global table with as many replicas as needed. You can add or remove replicas after table creation, but you can only add or remove a single replica in each update.
|
|
172
|
+
* You can create a new global table with as many replicas as needed. You can add or remove replicas after table creation, but you can only add or remove a single replica in each update. For Multi-Region Strong Consistency (MRSC), you can add or remove up to 3 replicas, or 2 replicas plus a witness Region.
|
|
154
173
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-replicas}
|
|
155
174
|
*/
|
|
156
175
|
Replicas: ReplicaSpecification[];
|
|
@@ -160,7 +179,7 @@ export type DynamoDBGlobalTableProps = {
|
|
|
160
179
|
*/
|
|
161
180
|
SSESpecification?: SSESpecification | undefined;
|
|
162
181
|
/**
|
|
163
|
-
* Specifies the streams settings on your global table. You must provide a value for this property if your global table contains more than one replica. You can only change the streams settings if your global table has only one replica.
|
|
182
|
+
* Specifies the streams settings on your global table. You must provide a value for this property if your global table contains more than one replica. You can only change the streams settings if your global table has only one replica. For Multi-Region Strong Consistency (MRSC), you do not need to provide a value for this property and can change the settings at any time.
|
|
164
183
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-streamspecification}
|
|
165
184
|
*/
|
|
166
185
|
StreamSpecification?: StreamSpecification | undefined;
|
|
@@ -325,6 +344,23 @@ export type GlobalSecondaryIndex = {
|
|
|
325
344
|
*/
|
|
326
345
|
WriteProvisionedThroughputSettings?: WriteProvisionedThroughputSettings | undefined;
|
|
327
346
|
};
|
|
347
|
+
/**
|
|
348
|
+
* The witness Region for the MRSC global table. A MRSC global table can be configured with either three replicas, or with two replicas and one witness.
|
|
349
|
+
*
|
|
350
|
+
* The witness must be in a different Region than the replicas and within the same Region set:
|
|
351
|
+
*
|
|
352
|
+
* - US Region set: US East (N. Virginia), US East (Ohio), US West (Oregon)
|
|
353
|
+
* - EU Region set: Europe (Ireland), Europe (London), Europe (Paris), Europe (Frankfurt)
|
|
354
|
+
* - AP Region set: Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Osaka)
|
|
355
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-globaltablewitness.html}
|
|
356
|
+
*/
|
|
357
|
+
export type GlobalTableWitness = {
|
|
358
|
+
/**
|
|
359
|
+
* The name of the AWS Region that serves as a witness for the MRSC global table.
|
|
360
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-globaltablewitness.html#cfn-dynamodb-globaltable-globaltablewitness-region}
|
|
361
|
+
*/
|
|
362
|
+
Region?: string | undefined;
|
|
363
|
+
};
|
|
328
364
|
/**
|
|
329
365
|
* Represents *a single element* of a key schema. A key schema specifies the attributes that make up the primary key of a table, or the key attributes of an index.
|
|
330
366
|
*
|
|
@@ -646,9 +682,9 @@ export type SSESpecification = {
|
|
|
646
682
|
SSEType?: string | undefined;
|
|
647
683
|
};
|
|
648
684
|
/**
|
|
649
|
-
* Represents the DynamoDB Streams configuration for a table in DynamoDB.
|
|
685
|
+
* Represents the DynamoDB Streams configuration for a table in DynamoDB .
|
|
650
686
|
*
|
|
651
|
-
* You can only modify this value
|
|
687
|
+
* You can only modify this value for a `AWS::DynamoDB::GlobalTable` resource configured for multi-Region eventual consistency (MREC, the default) if that resource contains only one entry in `Replicas` . You must specify a value for this property for a `AWS::DynamoDB::GlobalTable` resource configured for MREC with more than one entry in `Replicas` . For Multi-Region Strong Consistency (MRSC), Streams are not required and can be changed for existing tables.
|
|
652
688
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-streamspecification.html}
|
|
653
689
|
*/
|
|
654
690
|
export type StreamSpecification = {
|
|
@@ -106,9 +106,13 @@ export type DynamoDBTableProps = {
|
|
|
106
106
|
*/
|
|
107
107
|
ProvisionedThroughput?: ProvisionedThroughput | undefined;
|
|
108
108
|
/**
|
|
109
|
-
*
|
|
109
|
+
* An AWS resource-based policy document in JSON format that will be attached to the table.
|
|
110
110
|
*
|
|
111
|
-
* When you attach a resource-based policy while creating a table, the policy
|
|
111
|
+
* When you attach a resource-based policy while creating a table, the policy application is *strongly consistent* .
|
|
112
|
+
*
|
|
113
|
+
* The maximum size supported for a resource-based policy document is 20 KB. DynamoDB counts whitespaces when calculating the size of a policy against this limit. For a full list of all considerations that apply for resource-based policies, see [Resource-based policy considerations](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-considerations.html) .
|
|
114
|
+
*
|
|
115
|
+
* > You need to specify the `CreateTable` and `PutResourcePolicy` IAM actions for authorizing a user to create a table with a resource-based policy.
|
|
112
116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-resourcepolicy}
|
|
113
117
|
*/
|
|
114
118
|
ResourcePolicy?: ResourcePolicy | undefined;
|
|
@@ -80,7 +80,7 @@ export type EC2TrafficMirrorFilterRuleProps = {
|
|
|
80
80
|
*/
|
|
81
81
|
export type EC2TrafficMirrorFilterRuleAttribs = {
|
|
82
82
|
/**
|
|
83
|
-
* The ID of the Traffic Mirror
|
|
83
|
+
* The ID of the Traffic Mirror rule.
|
|
84
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#cfn-ec2-trafficmirrorfilterrule-trafficmirrorfilterruleid}
|
|
85
85
|
*/
|
|
86
86
|
TrafficMirrorFilterRuleId: string;
|
|
@@ -268,7 +268,7 @@ export type ECSServiceAttribs = {
|
|
|
268
268
|
*/
|
|
269
269
|
Name: string;
|
|
270
270
|
/**
|
|
271
|
-
*
|
|
271
|
+
* The ARN that identifies the service. For more information about the ARN format, see [Amazon Resource Name (ARN)](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#ecs-resource-ids) in the *Amazon ECS Developer Guide* .
|
|
272
272
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-servicearn}
|
|
273
273
|
*/
|
|
274
274
|
ServiceArn: string;
|
|
@@ -56,7 +56,6 @@ export type ECSTaskDefinitionProps = {
|
|
|
56
56
|
*/
|
|
57
57
|
Family?: string | undefined;
|
|
58
58
|
/**
|
|
59
|
-
* The Elastic Inference accelerators to use for the containers in the task.
|
|
60
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-inferenceaccelerators}
|
|
61
60
|
*/
|
|
62
61
|
InferenceAccelerators?: InferenceAccelerator[] | undefined;
|
|
@@ -884,12 +883,12 @@ export type HostVolumeProperties = {
|
|
|
884
883
|
SourcePath?: string | undefined;
|
|
885
884
|
};
|
|
886
885
|
/**
|
|
887
|
-
* Details on an Elastic Inference accelerator. For more information, see [Working with Amazon Elastic Inference on Amazon ECS](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html) in the *Amazon Elastic Container Service Developer Guide
|
|
886
|
+
* Details on an Elastic Inference accelerator. For more information, see [Working with Amazon Elastic Inference on Amazon ECS](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
888
887
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-inferenceaccelerator.html}
|
|
889
888
|
*/
|
|
890
889
|
export type InferenceAccelerator = {
|
|
891
890
|
/**
|
|
892
|
-
* The Elastic Inference accelerator device name. The
|
|
891
|
+
* The Elastic Inference accelerator device name. The ``deviceName`` must also be referenced in a container definition as a [ResourceRequirement](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ResourceRequirement.html).
|
|
893
892
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-inferenceaccelerator.html#cfn-ecs-taskdefinition-inferenceaccelerator-devicename}
|
|
894
893
|
*/
|
|
895
894
|
DeviceName?: string | undefined;
|
|
@@ -25,7 +25,7 @@ export type EMRServerlessApplicationProps = {
|
|
|
25
25
|
*/
|
|
26
26
|
AutoStopConfiguration?: AutoStopConfiguration | undefined;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* A configuration specification to be used when provisioning an application. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.
|
|
29
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrserverless-application.html#cfn-emrserverless-application-identitycenterconfiguration}
|
|
30
30
|
*/
|
|
31
31
|
IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
@@ -71,7 +71,7 @@ export type EVSEnvironmentProps = {
|
|
|
71
71
|
*/
|
|
72
72
|
KmsKeyId?: string | undefined;
|
|
73
73
|
/**
|
|
74
|
-
* The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
|
|
74
|
+
* The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.
|
|
75
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-licenseinfo}
|
|
76
76
|
*/
|
|
77
77
|
LicenseInfo: {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* An S3 access point attached to an Amazon FSx volume.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html}
|
|
5
5
|
*/
|
|
6
6
|
export type FSxS3AccessPointAttachment = ResourceDefinitionWithAttributes<"AWS::FSx::S3AccessPointAttachment", FSxS3AccessPointAttachmentProps, FSxS3AccessPointAttachmentAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* An S3 access point attached to an Amazon FSx volume.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html}
|
|
10
10
|
*/
|
|
11
11
|
export type FSxS3AccessPointAttachmentProps = {
|
|
12
12
|
/**
|
|
13
|
-
* The
|
|
13
|
+
* The name of the S3 access point attachment; also used for the name of the S3 access point.
|
|
14
14
|
* @minLength 3
|
|
15
15
|
* @maxLength 50
|
|
16
16
|
* @pattern ^(?=[a-z0-9])[a-z0-9-]{1,48}[a-z0-9]$
|
|
@@ -18,14 +18,17 @@ export type FSxS3AccessPointAttachmentProps = {
|
|
|
18
18
|
*/
|
|
19
19
|
Name: string;
|
|
20
20
|
/**
|
|
21
|
+
* The OpenZFSConfiguration of the S3 access point attachment.
|
|
21
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html#cfn-fsx-s3accesspointattachment-openzfsconfiguration}
|
|
22
23
|
*/
|
|
23
24
|
OpenZFSConfiguration: S3AccessPointOpenZFSConfiguration;
|
|
24
25
|
/**
|
|
26
|
+
* The S3 access point configuration of the S3 access point attachment.
|
|
25
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html#cfn-fsx-s3accesspointattachment-s3accesspoint}
|
|
26
28
|
*/
|
|
27
29
|
S3AccessPoint?: S3AccessPoint | undefined;
|
|
28
30
|
/**
|
|
31
|
+
* The type of Amazon FSx volume that the S3 access point is attached to.
|
|
29
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html#cfn-fsx-s3accesspointattachment-type}
|
|
30
33
|
*/
|
|
31
34
|
Type: "OPENZFS";
|
|
@@ -35,6 +38,7 @@ export type FSxS3AccessPointAttachmentProps = {
|
|
|
35
38
|
*/
|
|
36
39
|
export type FSxS3AccessPointAttachmentAttribs = {
|
|
37
40
|
/**
|
|
41
|
+
* The S3 access point's alias.
|
|
38
42
|
* @minLength 1
|
|
39
43
|
* @maxLength 63
|
|
40
44
|
* @pattern ^[0-9a-z\\-]{1,63}
|
|
@@ -42,6 +46,7 @@ export type FSxS3AccessPointAttachmentAttribs = {
|
|
|
42
46
|
*/
|
|
43
47
|
"S3AccessPoint.Alias": string;
|
|
44
48
|
/**
|
|
49
|
+
* The S3 access point's ARN.
|
|
45
50
|
* @minLength 8
|
|
46
51
|
* @maxLength 1024
|
|
47
52
|
* @pattern ^arn:[^:]{1,63}:[^:]{0,63}:[^:]{0,63}:(?:|\d{12}):[^/].{0,1023}$
|
|
@@ -50,10 +55,12 @@ export type FSxS3AccessPointAttachmentAttribs = {
|
|
|
50
55
|
"S3AccessPoint.ResourceARN": string;
|
|
51
56
|
};
|
|
52
57
|
/**
|
|
58
|
+
* The GID of the file system user.
|
|
53
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-filesystemgid.html}
|
|
54
60
|
*/
|
|
55
61
|
export type FileSystemGID = {
|
|
56
62
|
/**
|
|
63
|
+
* The GID of the file system user.
|
|
57
64
|
* @min 0
|
|
58
65
|
* @max 4294967295
|
|
59
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-filesystemgid.html#cfn-fsx-s3accesspointattachment-filesystemgid-gid}
|
|
@@ -61,33 +68,40 @@ export type FileSystemGID = {
|
|
|
61
68
|
Gid: number;
|
|
62
69
|
};
|
|
63
70
|
/**
|
|
71
|
+
* Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point.
|
|
64
72
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html}
|
|
65
73
|
*/
|
|
66
74
|
export type OpenZFSFileSystemIdentity = {
|
|
67
75
|
/**
|
|
76
|
+
* Specifies the UID and GIDs of the file system POSIX user.
|
|
68
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html#cfn-fsx-s3accesspointattachment-openzfsfilesystemidentity-posixuser}
|
|
69
78
|
*/
|
|
70
79
|
PosixUser: OpenZFSPosixFileSystemUser;
|
|
71
80
|
/**
|
|
81
|
+
* Specifies the FSx for OpenZFS user identity type, accepts only `POSIX` .
|
|
72
82
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html#cfn-fsx-s3accesspointattachment-openzfsfilesystemidentity-type}
|
|
73
83
|
*/
|
|
74
84
|
Type: "POSIX";
|
|
75
85
|
};
|
|
76
86
|
/**
|
|
87
|
+
* The FSx for OpenZFS file system user that is used for authorizing all file access requests that are made using the S3 access point.
|
|
77
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsposixfilesystemuser.html}
|
|
78
89
|
*/
|
|
79
90
|
export type OpenZFSPosixFileSystemUser = {
|
|
80
91
|
/**
|
|
92
|
+
* The GID of the file system user.
|
|
81
93
|
* @min 0
|
|
82
94
|
* @max 4294967295
|
|
83
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsposixfilesystemuser.html#cfn-fsx-s3accesspointattachment-openzfsposixfilesystemuser-gid}
|
|
84
96
|
*/
|
|
85
97
|
Gid: number;
|
|
86
98
|
/**
|
|
99
|
+
* The list of secondary GIDs for the file system user.
|
|
87
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsposixfilesystemuser.html#cfn-fsx-s3accesspointattachment-openzfsposixfilesystemuser-secondarygids}
|
|
88
101
|
*/
|
|
89
102
|
SecondaryGids?: FileSystemGID[] | undefined;
|
|
90
103
|
/**
|
|
104
|
+
* The UID of the file system user.
|
|
91
105
|
* @min 0
|
|
92
106
|
* @max 4294967295
|
|
93
107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsposixfilesystemuser.html#cfn-fsx-s3accesspointattachment-openzfsposixfilesystemuser-uid}
|
|
@@ -95,29 +109,35 @@ export type OpenZFSPosixFileSystemUser = {
|
|
|
95
109
|
Uid: number;
|
|
96
110
|
};
|
|
97
111
|
/**
|
|
112
|
+
* Describes the S3 access point configuration of the S3 access point attachment.
|
|
98
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspoint.html}
|
|
99
114
|
*/
|
|
100
115
|
export type S3AccessPoint = {
|
|
101
116
|
/**
|
|
117
|
+
* The S3 access point's policy.
|
|
102
118
|
* @minLength 1
|
|
103
119
|
* @maxLength 200000
|
|
104
120
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspoint.html#cfn-fsx-s3accesspointattachment-s3accesspoint-policy}
|
|
105
121
|
*/
|
|
106
122
|
Policy?: Record<string, unknown> | string | undefined;
|
|
107
123
|
/**
|
|
124
|
+
* The S3 access point's virtual private cloud (VPC) configuration.
|
|
108
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspoint.html#cfn-fsx-s3accesspointattachment-s3accesspoint-vpcconfiguration}
|
|
109
126
|
*/
|
|
110
127
|
VpcConfiguration?: S3AccessPointVpcConfiguration | undefined;
|
|
111
128
|
};
|
|
112
129
|
/**
|
|
130
|
+
* Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.
|
|
113
131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.html}
|
|
114
132
|
*/
|
|
115
133
|
export type S3AccessPointOpenZFSConfiguration = {
|
|
116
134
|
/**
|
|
135
|
+
* The file system identity used to authorize file access requests made using the S3 access point.
|
|
117
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.html#cfn-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration-filesystemidentity}
|
|
118
137
|
*/
|
|
119
138
|
FileSystemIdentity: OpenZFSFileSystemIdentity;
|
|
120
139
|
/**
|
|
140
|
+
* The ID of the FSx for OpenZFS volume that the S3 access point is attached to.
|
|
121
141
|
* @minLength 23
|
|
122
142
|
* @maxLength 23
|
|
123
143
|
* @pattern ^(fsvol-[0-9a-f]{17,})$
|
|
@@ -126,10 +146,12 @@ export type S3AccessPointOpenZFSConfiguration = {
|
|
|
126
146
|
VolumeId: string;
|
|
127
147
|
};
|
|
128
148
|
/**
|
|
149
|
+
* If included, Amazon S3 restricts access to this access point to requests from the specified virtual private cloud (VPC).
|
|
129
150
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointvpcconfiguration.html}
|
|
130
151
|
*/
|
|
131
152
|
export type S3AccessPointVpcConfiguration = {
|
|
132
153
|
/**
|
|
154
|
+
* Specifies the virtual private cloud (VPC) for the S3 access point VPC configuration, if one exists.
|
|
133
155
|
* @minLength 12
|
|
134
156
|
* @maxLength 21
|
|
135
157
|
* @pattern ^(vpc-[0-9a-f]{8,})$
|
|
@@ -343,7 +343,7 @@ export type LogConfiguration = {
|
|
|
343
343
|
*/
|
|
344
344
|
LogDestination?: LogDestination | undefined;
|
|
345
345
|
/**
|
|
346
|
-
* If log destination is CLOUDWATCH, logs are sent to the specified log group in Amazon CloudWatch.
|
|
346
|
+
* If log destination is `CLOUDWATCH` , logs are sent to the specified log group in Amazon CloudWatch.
|
|
347
347
|
* @minLength 1
|
|
348
348
|
* @maxLength 512
|
|
349
349
|
* @pattern [a-zA-Z0-9:/\-\*]+
|
|
@@ -15,61 +15,6 @@ export type ImageBuilderComponent = ResourceDefinitionWithAttributes<"AWS::Image
|
|
|
15
15
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html}
|
|
16
16
|
*/
|
|
17
17
|
export type ImageBuilderComponentProps = {
|
|
18
|
-
/**
|
|
19
|
-
* The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of the component.
|
|
20
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription}
|
|
21
|
-
*/
|
|
22
|
-
ChangeDescription?: string | undefined;
|
|
23
|
-
/**
|
|
24
|
-
* Component `data` contains inline YAML document content for the component. Alternatively, you can specify the `uri` of a YAML document file stored in Amazon S3. However, you cannot specify both properties.
|
|
25
|
-
* @minLength 1
|
|
26
|
-
* @maxLength 16000
|
|
27
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-data}
|
|
28
|
-
*/
|
|
29
|
-
Data: string;
|
|
30
|
-
/**
|
|
31
|
-
* Describes the contents of the component.
|
|
32
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-description}
|
|
33
|
-
*/
|
|
34
|
-
Description?: string | undefined;
|
|
35
|
-
/**
|
|
36
|
-
* The ID of the KMS key that is used to encrypt this component.
|
|
37
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-kmskeyid}
|
|
38
|
-
*/
|
|
39
|
-
KmsKeyId?: string | undefined;
|
|
40
|
-
/**
|
|
41
|
-
* The name of the component.
|
|
42
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-name}
|
|
43
|
-
*/
|
|
44
|
-
Name: string;
|
|
45
|
-
/**
|
|
46
|
-
* The operating system platform of the component.
|
|
47
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-platform}
|
|
48
|
-
*/
|
|
49
|
-
Platform: "Windows" | "Linux" | "macOS";
|
|
50
|
-
/**
|
|
51
|
-
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the base image OS version during image recipe creation.
|
|
52
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-supportedosversions}
|
|
53
|
-
*/
|
|
54
|
-
SupportedOsVersions?: string[] | undefined;
|
|
55
|
-
/**
|
|
56
|
-
* The tags that apply to the component.
|
|
57
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-tags}
|
|
58
|
-
*/
|
|
59
|
-
Tags?: Record<string, string> | undefined;
|
|
60
|
-
/**
|
|
61
|
-
* The `uri` of a YAML component document file. This must be an S3 URL ( `s3://bucket/key` ), and the requester must have permission to access the S3 bucket it points to. If you use Amazon S3, you can specify component content up to your service quota.
|
|
62
|
-
*
|
|
63
|
-
* Alternatively, you can specify the YAML document inline, using the component `data` property. You cannot specify both properties.
|
|
64
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri}
|
|
65
|
-
*/
|
|
66
|
-
Uri?: string | undefined;
|
|
67
|
-
/**
|
|
68
|
-
* The component version. For example, `1.0.0` .
|
|
69
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version}
|
|
70
|
-
*/
|
|
71
|
-
Version: string;
|
|
72
|
-
} | {
|
|
73
18
|
/**
|
|
74
19
|
* The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of the component.
|
|
75
20
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-changedescription}
|
|
@@ -118,7 +63,7 @@ export type ImageBuilderComponentProps = {
|
|
|
118
63
|
* Alternatively, you can specify the YAML document inline, using the component `data` property. You cannot specify both properties.
|
|
119
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-uri}
|
|
120
65
|
*/
|
|
121
|
-
Uri
|
|
66
|
+
Uri?: string | undefined;
|
|
122
67
|
/**
|
|
123
68
|
* The component version. For example, `1.0.0` .
|
|
124
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-component.html#cfn-imagebuilder-component-version}
|