@awboost/cfn-resource-types 0.1.229 → 0.1.230
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.
|
@@ -26,7 +26,7 @@ export type DMSDataProviderProperties = {
|
|
|
26
26
|
/**
|
|
27
27
|
* The property describes a data engine for the data provider.
|
|
28
28
|
*/
|
|
29
|
-
Engine: "
|
|
29
|
+
Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb";
|
|
30
30
|
/**
|
|
31
31
|
* The property describes the exact settings which can be modified
|
|
32
32
|
*/
|
|
@@ -35,6 +35,25 @@ export type DMSDataProviderProperties = {
|
|
|
35
35
|
* The property identifies the exact type of settings for the data provider.
|
|
36
36
|
*/
|
|
37
37
|
Settings?: {
|
|
38
|
+
/**
|
|
39
|
+
* DocDbSettings property identifier.
|
|
40
|
+
*/
|
|
41
|
+
DocDbSettings?: {
|
|
42
|
+
CertificateArn?: string;
|
|
43
|
+
DatabaseName: string;
|
|
44
|
+
Port: number;
|
|
45
|
+
ServerName: string;
|
|
46
|
+
SslMode?: MongoDbSslModeValue;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* MariaDbSettings property identifier.
|
|
50
|
+
*/
|
|
51
|
+
MariaDbSettings?: {
|
|
52
|
+
CertificateArn?: string;
|
|
53
|
+
Port: number;
|
|
54
|
+
ServerName: string;
|
|
55
|
+
SslMode: DmsSslModeValue;
|
|
56
|
+
};
|
|
38
57
|
/**
|
|
39
58
|
* MicrosoftSqlServerSettings property identifier.
|
|
40
59
|
*/
|
|
@@ -45,6 +64,19 @@ export type DMSDataProviderProperties = {
|
|
|
45
64
|
ServerName: string;
|
|
46
65
|
SslMode: DmsSslModeValue;
|
|
47
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* MongoDbSettings property identifier.
|
|
69
|
+
*/
|
|
70
|
+
MongoDbSettings?: {
|
|
71
|
+
AuthMechanism?: MongoDbAuthMechanism;
|
|
72
|
+
AuthSource?: string;
|
|
73
|
+
AuthType?: MongoDbAuthType;
|
|
74
|
+
CertificateArn?: string;
|
|
75
|
+
DatabaseName?: string;
|
|
76
|
+
Port: number;
|
|
77
|
+
ServerName: string;
|
|
78
|
+
SslMode?: MongoDbSslModeValue;
|
|
79
|
+
};
|
|
48
80
|
/**
|
|
49
81
|
* MySqlSettings property identifier.
|
|
50
82
|
*/
|
|
@@ -79,6 +111,14 @@ export type DMSDataProviderProperties = {
|
|
|
79
111
|
ServerName: string;
|
|
80
112
|
SslMode: DmsSslModeValue;
|
|
81
113
|
};
|
|
114
|
+
/**
|
|
115
|
+
* RedshiftSettings property identifier.
|
|
116
|
+
*/
|
|
117
|
+
RedshiftSettings?: {
|
|
118
|
+
DatabaseName: string;
|
|
119
|
+
Port: number;
|
|
120
|
+
ServerName: string;
|
|
121
|
+
};
|
|
82
122
|
};
|
|
83
123
|
/**
|
|
84
124
|
* An array of key-value pairs to apply to this resource.
|
|
@@ -108,6 +148,21 @@ export type DMSDataProviderAttributes = {
|
|
|
108
148
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-dmssslmodevalue.html}
|
|
109
149
|
*/
|
|
110
150
|
export type DmsSslModeValue = "none" | "require" | "verify-ca" | "verify-full";
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::DMS::DataProvider.MongoDbAuthMechanism`.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-mongodbauthmechanism.html}
|
|
154
|
+
*/
|
|
155
|
+
export type MongoDbAuthMechanism = "default" | "mongodb_cr" | "scram_sha_1";
|
|
156
|
+
/**
|
|
157
|
+
* Type definition for `AWS::DMS::DataProvider.MongoDbAuthType`.
|
|
158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-mongodbauthtype.html}
|
|
159
|
+
*/
|
|
160
|
+
export type MongoDbAuthType = "no" | "password";
|
|
161
|
+
/**
|
|
162
|
+
* Type definition for `AWS::DMS::DataProvider.MongoDbSslModeValue`.
|
|
163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-mongodbsslmodevalue.html}
|
|
164
|
+
*/
|
|
165
|
+
export type MongoDbSslModeValue = "none" | "require" | "verify-full";
|
|
111
166
|
/**
|
|
112
167
|
* Type definition for `AWS::DMS::DataProvider.Tag`.
|
|
113
168
|
* A key-value pair to associate with a resource.
|
|
@@ -14,6 +14,11 @@ export type LogsLogGroupProperties = {
|
|
|
14
14
|
For more information, including a list of types of data that can be audited and masked, see [Protect sensitive log data with masking](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/mask-sensitive-log-data.html).
|
|
15
15
|
*/
|
|
16
16
|
DataProtectionPolicy?: Record<string, any>;
|
|
17
|
+
/**
|
|
18
|
+
* Creates or updates a *field index policy* for the specified log group. Only log groups in the Standard log class support field index policies. For more information about log classes, see [Log classes](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch_Logs_Log_Classes.html).
|
|
19
|
+
You can use field index policies to create *field indexes* on fields found in log events in the log group. Creating field indexes lowers the costs for CWL Insights queries that reference those field indexes, because these queries attempt to skip the processing of log events that are known to not match the indexed field. Good fields to index are fields that you often need to query for and fields that have high cardinality of values Common examples of indexes include request ID, session ID, userID, and instance IDs. For more information, see [Create field indexes to improve query performance and reduce costs](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatchLogs-Field-Indexing.html).
|
|
20
|
+
Currently, this array supports only one field index policy object.
|
|
21
|
+
*/
|
|
17
22
|
FieldIndexPolicies?: Record<string, any>[];
|
|
18
23
|
/**
|
|
19
24
|
* The Amazon Resource Name (ARN) of the KMS key to use when encrypting log data.
|
|
@@ -59,6 +64,7 @@ export type LogsLogGroupAttributes = {
|
|
|
59
64
|
};
|
|
60
65
|
/**
|
|
61
66
|
* Type definition for `AWS::Logs::LogGroup.Tag`.
|
|
67
|
+
* The value of this key-value pair.
|
|
62
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-loggroup-tag.html}
|
|
63
69
|
*/
|
|
64
70
|
export type Tag = {
|
|
@@ -68,6 +74,7 @@ export type Tag = {
|
|
|
68
74
|
*/
|
|
69
75
|
Key: string;
|
|
70
76
|
/**
|
|
77
|
+
* The value of this key-value pair.
|
|
71
78
|
* @minLength `0`
|
|
72
79
|
* @maxLength `256`
|
|
73
80
|
*/
|