@awboost/cfn-resource-types 0.1.128 → 0.1.129

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.
@@ -21,10 +21,6 @@ export type EC2TransitGatewayAttachmentProperties = {
21
21
  * Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
22
22
  */
23
23
  Ipv6Support?: string;
24
- /**
25
- * Indicates whether to enable Security Group referencing support for Vpc Attachment. Valid Values: enable | disable
26
- */
27
- SecurityGroupReferencingSupport?: string;
28
24
  };
29
25
  SubnetIds: string[];
30
26
  Tags?: Tag[];
@@ -43,10 +43,6 @@ export type EC2TransitGatewayMulticastGroupMemberAttributes = {
43
43
  * The type of resource, for example a VPC attachment.
44
44
  */
45
45
  ResourceType: string;
46
- /**
47
- * The source type.
48
- */
49
- SourceType: string;
50
46
  /**
51
47
  * The ID of the subnet.
52
48
  */
@@ -31,10 +31,6 @@ export type EC2TransitGatewayMulticastGroupSourceAttributes = {
31
31
  * Indicates that the resource is a transit gateway multicast group member.
32
32
  */
33
33
  GroupSource: boolean;
34
- /**
35
- * The member type (for example, static).
36
- */
37
- MemberType: string;
38
34
  /**
39
35
  * The ID of the resource.
40
36
  */
@@ -21,7 +21,7 @@ export type ECSClusterProperties = {
21
21
  */
22
22
  ClusterSettings?: ClusterSettings[];
23
23
  /**
24
- * The execute command configuration for the cluster.
24
+ * The execute command and managed storage configuration for the cluster.
25
25
  */
26
26
  Configuration?: ClusterConfiguration;
27
27
  /**
@@ -76,7 +76,7 @@ export type CapacityProviderStrategyItem = {
76
76
  };
77
77
  /**
78
78
  * Type definition for `AWS::ECS::Cluster.ClusterConfiguration`.
79
- * The execute command configuration for the cluster.
79
+ * The execute command and managed storage configuration for the cluster.
80
80
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-clusterconfiguration.html}
81
81
  */
82
82
  export type ClusterConfiguration = {
@@ -84,6 +84,9 @@ export type ClusterConfiguration = {
84
84
  * The details of the execute command configuration.
85
85
  */
86
86
  ExecuteCommandConfiguration?: ExecuteCommandConfiguration;
87
+ /**
88
+ * The details of the managed storage configuration.
89
+ */
87
90
  ManagedStorageConfiguration?: ManagedStorageConfiguration;
88
91
  };
89
92
  /**
@@ -155,10 +158,17 @@ export type ExecuteCommandLogConfiguration = {
155
158
  };
156
159
  /**
157
160
  * Type definition for `AWS::ECS::Cluster.ManagedStorageConfiguration`.
161
+ * The managed storage configuration for the cluster.
158
162
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-managedstorageconfiguration.html}
159
163
  */
160
164
  export type ManagedStorageConfiguration = {
165
+ /**
166
+ * Specify the KMSlong key ID for the Fargate ephemeral storage.
167
+ */
161
168
  FargateEphemeralStorageKmsKeyId?: string;
169
+ /**
170
+ * Specify a KMSlong key ID to encrypt the managed storage.
171
+ */
162
172
  KmsKeyId?: string;
163
173
  };
164
174
  /**
@@ -527,6 +527,7 @@ export type MSKSourceConfiguration = {
527
527
  * @pattern `arn:.*`
528
528
  */
529
529
  MSKClusterARN: string;
530
+ ReadFromTimestamp?: string;
530
531
  /**
531
532
  * @minLength `1`
532
533
  * @maxLength `255`
@@ -17,7 +17,7 @@ export type LogsDeliveryDestinationProperties = {
17
17
  */
18
18
  DeliveryDestinationPolicy?: Record<string, any>;
19
19
  /**
20
- * The ARN of the AWS resource that will receive the logs.
20
+ * The ARN of the Amazon Web Services destination that this delivery destination represents. That Amazon Web Services destination can be a log group in CloudWatch Logs, an Amazon S3 bucket, or a delivery stream in Firehose.
21
21
  * @minLength `16`
22
22
  * @maxLength `2048`
23
23
  * @pattern `[\w#+=/:,.@-]*\*?`
@@ -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-rolesanywhere-profile.html}
6
6
  */
7
7
  export type RolesAnywhereProfileProperties = {
8
+ AcceptRoleSessionName?: boolean;
8
9
  AttributeMappings?: AttributeMapping[];
9
10
  /**
10
11
  * @min `900`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.128",
3
+ "version": "0.1.129",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },