@awboost/cfn-resource-types 0.1.229 → 0.1.231

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.
@@ -107,6 +107,7 @@ export type TagsEntry = {
107
107
  export type User = {
108
108
  ConsoleAccess?: boolean;
109
109
  Groups?: string[];
110
+ JolokiaApiAccess?: string;
110
111
  Password: string;
111
112
  ReplicationUser?: boolean;
112
113
  Username: string;
@@ -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: "postgres" | "mysql" | "oracle" | "sqlserver" | "aurora" | "aurora_postgresql";
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.
@@ -15,13 +15,16 @@ export type DocDBDBClusterProperties = {
15
15
  EnableCloudwatchLogsExports?: string[];
16
16
  EngineVersion?: string;
17
17
  KmsKeyId?: string;
18
+ ManageMasterUserPassword?: boolean;
18
19
  MasterUserPassword?: string;
20
+ MasterUserSecretKmsKeyId?: string;
19
21
  MasterUsername?: string;
20
22
  Port?: number;
21
23
  PreferredBackupWindow?: string;
22
24
  PreferredMaintenanceWindow?: string;
23
25
  RestoreToTime?: string;
24
26
  RestoreType?: string;
27
+ RotateMasterUserPassword?: boolean;
25
28
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
26
29
  SnapshotIdentifier?: string;
27
30
  SourceDBClusterIdentifier?: string;
@@ -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
  */
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconvert-queue.html}
6
6
  */
7
7
  export type MediaConvertQueueProperties = {
8
+ ConcurrentJobs?: number;
8
9
  Description?: string;
9
10
  Name?: string;
10
11
  PricingPlan?: string;
@@ -170,7 +170,6 @@ export type ManagedInstanceScaling = {
170
170
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html}
171
171
  */
172
172
  export type ProductionVariant = {
173
- AcceleratorType?: string;
174
173
  ContainerStartupHealthCheckTimeoutInSeconds?: number;
175
174
  EnableSSMAccess?: boolean;
176
175
  InitialInstanceCount?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.229",
3
+ "version": "0.1.231",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },