@awboost/cfn-resource-types 0.1.31 → 0.1.32
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.
|
@@ -104,7 +104,7 @@ export type DynamoDBTableAttributes = {
|
|
|
104
104
|
};
|
|
105
105
|
/**
|
|
106
106
|
* Type definition for `AWS::DynamoDB::Table.AttributeDefinition`.
|
|
107
|
-
* Represents an attribute for describing the
|
|
107
|
+
* Represents an attribute for describing the schema for the table and indexes.
|
|
108
108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-attributedefinition.html}
|
|
109
109
|
*/
|
|
110
110
|
export type AttributeDefinition = {
|
|
@@ -302,6 +302,8 @@ export type Projection = {
|
|
|
302
302
|
+ ``KEYS_ONLY`` - Only the index and primary keys are projected into the index.
|
|
303
303
|
+ ``INCLUDE`` - In addition to the attributes described in ``KEYS_ONLY``, the secondary index will include other non-key attributes that you specify.
|
|
304
304
|
+ ``ALL`` - All of the table attributes are projected into the index.
|
|
305
|
+
|
|
306
|
+
When using the DynamoDB console, ``ALL`` is selected by default.
|
|
305
307
|
*/
|
|
306
308
|
ProjectionType?: string;
|
|
307
309
|
};
|
|
@@ -74,6 +74,12 @@ export type RedshiftServerlessNamespaceProperties = {
|
|
|
74
74
|
* The ARN for the Redshift application that integrates with IAM Identity Center.
|
|
75
75
|
*/
|
|
76
76
|
RedshiftIdcApplicationArn?: string;
|
|
77
|
+
/**
|
|
78
|
+
* The snapshot copy configurations for the namespace.
|
|
79
|
+
* @minLength `0`
|
|
80
|
+
* @maxLength `1`
|
|
81
|
+
*/
|
|
82
|
+
SnapshotCopyConfigurations?: SnapshotCopyConfiguration[];
|
|
77
83
|
/**
|
|
78
84
|
* The list of tags for the namespace.
|
|
79
85
|
* @minLength `0`
|
|
@@ -135,6 +141,15 @@ export type Namespace = {
|
|
|
135
141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-namespacestatus.html}
|
|
136
142
|
*/
|
|
137
143
|
export type NamespaceStatus = "AVAILABLE" | "MODIFYING" | "DELETING";
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::RedshiftServerless::Namespace.SnapshotCopyConfiguration`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-snapshotcopyconfiguration.html}
|
|
147
|
+
*/
|
|
148
|
+
export type SnapshotCopyConfiguration = {
|
|
149
|
+
DestinationKmsKeyId?: string;
|
|
150
|
+
DestinationRegion: string;
|
|
151
|
+
SnapshotRetentionPeriod?: number;
|
|
152
|
+
};
|
|
138
153
|
/**
|
|
139
154
|
* Type definition for `AWS::RedshiftServerless::Namespace.Tag`.
|
|
140
155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-tag.html}
|