@awboost/cfn-resource-types 0.1.368 → 0.1.369
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.
|
@@ -10,6 +10,10 @@ export type CassandraTableProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
AutoScalingSpecifications?: AutoScalingSpecification;
|
|
12
12
|
BillingMode?: BillingMode;
|
|
13
|
+
/**
|
|
14
|
+
* Represents the CDC configuration for the table
|
|
15
|
+
*/
|
|
16
|
+
CdcSpecification?: CdcSpecification;
|
|
13
17
|
/**
|
|
14
18
|
* Indicates whether client side timestamps are enabled (true) or disabled (false) on the table. False by default, once it is enabled it cannot be disabled again.
|
|
15
19
|
*/
|
|
@@ -110,6 +114,33 @@ export type BillingMode = {
|
|
|
110
114
|
*/
|
|
111
115
|
ProvisionedThroughput?: ProvisionedThroughput;
|
|
112
116
|
};
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::Cassandra::Table.CdcSpecification`.
|
|
119
|
+
* Represents the CDC configuration for the table
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html}
|
|
121
|
+
*/
|
|
122
|
+
export type CdcSpecification = {
|
|
123
|
+
/**
|
|
124
|
+
* Indicates whether CDC is enabled or disabled for the table
|
|
125
|
+
*/
|
|
126
|
+
Status: CdcStatus;
|
|
127
|
+
/**
|
|
128
|
+
* Specifies what data should be captured in the change data stream
|
|
129
|
+
*/
|
|
130
|
+
ViewType?: CdcViewType;
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::Cassandra::Table.CdcStatus`.
|
|
134
|
+
* Indicates whether CDC is enabled or disabled for the table
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcstatus.html}
|
|
136
|
+
*/
|
|
137
|
+
export type CdcStatus = "ENABLED" | "DISABLED";
|
|
138
|
+
/**
|
|
139
|
+
* Type definition for `AWS::Cassandra::Table.CdcViewType`.
|
|
140
|
+
* Specifies what data should be captured in the change data stream
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcviewtype.html}
|
|
142
|
+
*/
|
|
143
|
+
export type CdcViewType = "NEW_IMAGE" | "OLD_IMAGE" | "KEYS_ONLY" | "NEW_AND_OLD_IMAGES";
|
|
113
144
|
/**
|
|
114
145
|
* Type definition for `AWS::Cassandra::Table.ClusteringKeyColumn`.
|
|
115
146
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-clusteringkeycolumn.html}
|