@awboost/cfn-resource-types 0.1.45 → 0.1.46
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.
|
@@ -8,6 +8,7 @@ export type DocDBElasticClusterProperties = {
|
|
|
8
8
|
AdminUserName: string;
|
|
9
9
|
AdminUserPassword?: string;
|
|
10
10
|
AuthType: string;
|
|
11
|
+
BackupRetentionPeriod?: number;
|
|
11
12
|
/**
|
|
12
13
|
* @minLength `1`
|
|
13
14
|
* @maxLength `50`
|
|
@@ -15,9 +16,11 @@ export type DocDBElasticClusterProperties = {
|
|
|
15
16
|
*/
|
|
16
17
|
ClusterName: string;
|
|
17
18
|
KmsKeyId?: string;
|
|
19
|
+
PreferredBackupWindow?: string;
|
|
18
20
|
PreferredMaintenanceWindow?: string;
|
|
19
21
|
ShardCapacity: number;
|
|
20
22
|
ShardCount: number;
|
|
23
|
+
ShardInstanceCount?: number;
|
|
21
24
|
SubnetIds?: string[];
|
|
22
25
|
/**
|
|
23
26
|
* @minLength `0`
|
|
@@ -22,7 +22,7 @@ export type EntityResolutionIdMappingWorkflowProperties = {
|
|
|
22
22
|
* @minLength `1`
|
|
23
23
|
* @maxLength `1`
|
|
24
24
|
*/
|
|
25
|
-
OutputSourceConfig
|
|
25
|
+
OutputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
26
26
|
/**
|
|
27
27
|
* @pattern `^arn:(aws|aws-us-gov|aws-cn):iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
|
|
28
28
|
*/
|
|
@@ -73,7 +73,7 @@ export type IdMappingTechniques = {
|
|
|
73
73
|
*/
|
|
74
74
|
export type IdMappingWorkflowInputSource = {
|
|
75
75
|
/**
|
|
76
|
-
* An Glue table ARN for the input source table
|
|
76
|
+
* An Glue table ARN for the input source table or IdNamespace ARN
|
|
77
77
|
* @pattern `arn:(aws|aws-us-gov|aws-cn):.*:.*:[0-9]+:.*$`
|
|
78
78
|
*/
|
|
79
79
|
InputSourceARN: string;
|
|
@@ -81,7 +81,8 @@ export type IdMappingWorkflowInputSource = {
|
|
|
81
81
|
* The SchemaMapping arn associated with the Schema
|
|
82
82
|
* @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:.*:[0-9]+:(schemamapping/.*)$`
|
|
83
83
|
*/
|
|
84
|
-
SchemaArn
|
|
84
|
+
SchemaArn?: string;
|
|
85
|
+
Type?: "SOURCE" | "TARGET";
|
|
85
86
|
};
|
|
86
87
|
/**
|
|
87
88
|
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingWorkflowOutputSource`.
|