@awboost/cfn-resource-types 0.1.230 → 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;
@@ -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;
@@ -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.230",
3
+ "version": "0.1.231",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },