@awboost/cfn-resource-types 0.1.230 → 0.1.232

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;
@@ -13,6 +13,7 @@ export type CleanRoomsCollaborationProperties = {
13
13
  * @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
14
14
  */
15
15
  CreatorDisplayName: string;
16
+ CreatorMLMemberAbilities?: MLMemberAbilities;
16
17
  CreatorMemberAbilities: MemberAbility[];
17
18
  CreatorPaymentConfiguration?: PaymentConfiguration;
18
19
  DataEncryptionMetadata?: DataEncryptionMetadata;
@@ -65,6 +66,11 @@ export type AnalyticsEngine = "CLEAN_ROOMS_SQL" | "SPARK";
65
66
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-collaborationquerylogstatus.html}
66
67
  */
67
68
  export type CollaborationQueryLogStatus = "ENABLED" | "DISABLED";
69
+ /**
70
+ * Type definition for `AWS::CleanRooms::Collaboration.CustomMLMemberAbility`.
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-custommlmemberability.html}
72
+ */
73
+ export type CustomMLMemberAbility = "CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT";
68
74
  /**
69
75
  * Type definition for `AWS::CleanRooms::Collaboration.DataEncryptionMetadata`.
70
76
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-dataencryptionmetadata.html}
@@ -97,14 +103,45 @@ export type MemberSpecification = {
97
103
  * @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
98
104
  */
99
105
  DisplayName: string;
106
+ MLMemberAbilities?: MLMemberAbilities;
100
107
  MemberAbilities: MemberAbility[];
101
108
  PaymentConfiguration?: PaymentConfiguration;
102
109
  };
110
+ /**
111
+ * Type definition for `AWS::CleanRooms::Collaboration.MLMemberAbilities`.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlmemberabilities.html}
113
+ */
114
+ export type MLMemberAbilities = {
115
+ CustomMLMemberAbilities: CustomMLMemberAbility[];
116
+ };
117
+ /**
118
+ * Type definition for `AWS::CleanRooms::Collaboration.MLPaymentConfig`.
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-mlpaymentconfig.html}
120
+ */
121
+ export type MLPaymentConfig = {
122
+ ModelInference?: ModelInferencePaymentConfig;
123
+ ModelTraining?: ModelTrainingPaymentConfig;
124
+ };
125
+ /**
126
+ * Type definition for `AWS::CleanRooms::Collaboration.ModelInferencePaymentConfig`.
127
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modelinferencepaymentconfig.html}
128
+ */
129
+ export type ModelInferencePaymentConfig = {
130
+ IsResponsible: boolean;
131
+ };
132
+ /**
133
+ * Type definition for `AWS::CleanRooms::Collaboration.ModelTrainingPaymentConfig`.
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-modeltrainingpaymentconfig.html}
135
+ */
136
+ export type ModelTrainingPaymentConfig = {
137
+ IsResponsible: boolean;
138
+ };
103
139
  /**
104
140
  * Type definition for `AWS::CleanRooms::Collaboration.PaymentConfiguration`.
105
141
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.html}
106
142
  */
107
143
  export type PaymentConfiguration = {
144
+ MachineLearning?: MLPaymentConfig;
108
145
  QueryCompute: QueryComputePaymentConfig;
109
146
  };
110
147
  /**
@@ -46,11 +46,34 @@ export type CleanRoomsMembershipAttributes = {
46
46
  */
47
47
  MembershipIdentifier: string;
48
48
  };
49
+ /**
50
+ * Type definition for `AWS::CleanRooms::Membership.MembershipMLPaymentConfig`.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmlpaymentconfig.html}
52
+ */
53
+ export type MembershipMLPaymentConfig = {
54
+ ModelInference?: MembershipModelInferencePaymentConfig;
55
+ ModelTraining?: MembershipModelTrainingPaymentConfig;
56
+ };
57
+ /**
58
+ * Type definition for `AWS::CleanRooms::Membership.MembershipModelInferencePaymentConfig`.
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodelinferencepaymentconfig.html}
60
+ */
61
+ export type MembershipModelInferencePaymentConfig = {
62
+ IsResponsible: boolean;
63
+ };
64
+ /**
65
+ * Type definition for `AWS::CleanRooms::Membership.MembershipModelTrainingPaymentConfig`.
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipmodeltrainingpaymentconfig.html}
67
+ */
68
+ export type MembershipModelTrainingPaymentConfig = {
69
+ IsResponsible: boolean;
70
+ };
49
71
  /**
50
72
  * Type definition for `AWS::CleanRooms::Membership.MembershipPaymentConfiguration`.
51
73
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html}
52
74
  */
53
75
  export type MembershipPaymentConfiguration = {
76
+ MachineLearning?: MembershipMLPaymentConfig;
54
77
  QueryCompute: MembershipQueryComputePaymentConfig;
55
78
  };
56
79
  /**
@@ -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;
@@ -29,6 +29,9 @@ export type ECSTaskDefinitionProperties = {
29
29
  This option requires Linux platform ``1.4.0`` or later.
30
30
  */
31
31
  Cpu?: string;
32
+ /**
33
+ * Enables fault injection and allows for fault injection requests to be accepted from the task's containers. The default value is ``false``.
34
+ */
32
35
  EnableFaultInjection?: boolean;
33
36
  /**
34
37
  * The ephemeral storage settings to use for tasks run with the task definition.
@@ -789,7 +792,7 @@ export type LogConfiguration = {
789
792
  When you use the ``awsfirelens`` log router to route logs to an AWS Service or AWS Partner Network destination for log storage and analytics, you can set the ``log-driver-buffer-limit`` option to limit the number of events that are buffered in memory, before being sent to the log router container. It can help to resolve potential log loss issue because high throughput might result in memory running out for the buffer inside of Docker.
790
793
  Other options you can specify when using ``awsfirelens`` to route logs depend on the destination. When you export logs to Amazon Data Firehose, you can specify the AWS Region with ``region`` and a name for the log stream with ``delivery_stream``.
791
794
  When you export logs to Amazon Kinesis Data Streams, you can specify an AWS Region with ``region`` and a data stream name with ``stream``.
792
- When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``.
795
+ When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``. For more information, see [Under the hood: FireLens for Amazon ECS Tasks](https://docs.aws.amazon.com/containers/under-the-hood-firelens-for-amazon-ecs-tasks/).
793
796
  When you export logs to Amazon S3, you can specify the bucket using the ``bucket`` option. You can also specify ``region``, ``total_file_size``, ``upload_timeout``, and ``use_put_object`` as options.
794
797
  This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: ``sudo docker version --format '{{.Server.APIVersion}}'``
795
798
  */
@@ -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;
@@ -120,6 +120,11 @@ export type RDSDBClusterProperties = {
120
120
  * Reserved for future use.
121
121
  */
122
122
  DBSystemId?: string;
123
+ /**
124
+ * The mode of Database Insights to enable for the DB cluster.
125
+ If you set this value to ``advanced``, you must also set the ``PerformanceInsightsEnabled`` parameter to ``true`` and the ``PerformanceInsightsRetentionPeriod`` parameter to 465.
126
+ Valid for Cluster Type: Aurora DB clusters only
127
+ */
123
128
  DatabaseInsightsMode?: string;
124
129
  /**
125
130
  * The name of your database. If you don't provide a name, then Amazon RDS won't create a database in this DB cluster. For naming constraints, see [Naming Constraints](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_Limits.html#RDS_Limits.Constraints) in the *Amazon Aurora User Guide*.
@@ -121,6 +121,11 @@ export type TrackingOptions = {
121
121
  * The domain to use for tracking open and click events.
122
122
  */
123
123
  CustomRedirectDomain?: string;
124
+ /**
125
+ * The https policy to use for tracking open and click events.
126
+ * @pattern `REQUIRE|REQUIRE_OPEN_ONLY|OPTIONAL`
127
+ */
128
+ HttpsPolicy?: string;
124
129
  };
125
130
  /**
126
131
  * Type definition for `AWS::SES::ConfigurationSet.VdmOptions`.
@@ -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;
@@ -42,6 +42,7 @@ export type WisdomAIAgentAttributes = {
42
42
  * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
43
43
  */
44
44
  AssistantArn: string;
45
+ ModifiedTimeSeconds: number;
45
46
  };
46
47
  /**
47
48
  * Type definition for `AWS::Wisdom::AIAgent.AIAgentAssociationConfigurationType`.
@@ -49,6 +49,7 @@ export type WisdomAIPromptAttributes = {
49
49
  * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
50
50
  */
51
51
  AssistantArn: string;
52
+ ModifiedTimeSeconds: number;
52
53
  };
53
54
  /**
54
55
  * Type definition for `AWS::Wisdom::AIPrompt.AIPromptAPIFormat`.
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.232",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },