@awboost/cfn-resource-types 0.1.218 → 0.1.219

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.
@@ -14,7 +14,13 @@ export type AutoScalingAutoScalingGroupProperties = {
14
14
  You cannot use a colon (:) in the name.
15
15
  */
16
16
  AutoScalingGroupName?: string;
17
+ /**
18
+ * The instance capacity distribution across Availability Zones.
19
+ */
17
20
  AvailabilityZoneDistribution?: AvailabilityZoneDistribution;
21
+ /**
22
+ * The Availability Zone impairment policy.
23
+ */
18
24
  AvailabilityZoneImpairmentPolicy?: AvailabilityZoneImpairmentPolicy;
19
25
  /**
20
26
  * A list of Availability Zones where instances in the Auto Scaling group can be created. Used for launching into the default VPC subnet in each Availability Zone when not using the ``VPCZoneIdentifier`` property, or for attaching a network interface when an existing network interface ID is specified in a launch template.
@@ -199,17 +205,30 @@ export type AcceleratorTotalMemoryMiBRequest = {
199
205
  };
200
206
  /**
201
207
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.AvailabilityZoneDistribution`.
208
+ * ``AvailabilityZoneDistribution`` is a property of the [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
202
209
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-availabilityzonedistribution.html}
203
210
  */
204
211
  export type AvailabilityZoneDistribution = {
212
+ /**
213
+ * If launches fail in an Availability Zone, the following strategies are available. The default is ``balanced-best-effort``.
214
+ + ``balanced-only`` - If launches fail in an Availability Zone, Auto Scaling will continue to attempt to launch in the unhealthy zone to preserve a balanced distribution.
215
+ + ``balanced-best-effort`` - If launches fail in an Availability Zone, Auto Scaling will attempt to launch in another healthy Availability Zone instead.
216
+ */
205
217
  CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only";
206
218
  };
207
219
  /**
208
220
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.AvailabilityZoneImpairmentPolicy`.
221
+ * Describes an Availability Zone impairment policy.
209
222
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-availabilityzoneimpairmentpolicy.html}
210
223
  */
211
224
  export type AvailabilityZoneImpairmentPolicy = {
225
+ /**
226
+ * Specifies the health check behavior for the impaired Availability Zone in an active zonal shift. If you select ``Replace unhealthy``, instances that appear unhealthy will be replaced in all Availability Zones. If you select ``Ignore unhealthy``, instances will not be replaced in the Availability Zone with the active zonal shift. For more information, see [Auto Scaling group zonal shift](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-zonal-shift.html) in the *Amazon EC2 Auto Scaling User Guide*.
227
+ */
212
228
  ImpairedZoneHealthCheckBehavior: "IgnoreUnhealthy" | "ReplaceUnhealthy";
229
+ /**
230
+ * If ``true``, enable zonal shift for your Auto Scaling group.
231
+ */
213
232
  ZonalShiftEnabled: boolean;
214
233
  };
215
234
  /**
@@ -8,7 +8,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
8
8
  export type CloudFormationGuardHookProperties = {
9
9
  /**
10
10
  * The typename alias for the hook.
11
- * @pattern `^[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
11
+ * @pattern `^(?!(?i)aws)[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
12
12
  */
13
13
  Alias: string;
14
14
  /**
@@ -182,7 +182,7 @@ export type S3Location = {
182
182
  * Which operations should this Hook run against? Resource changes, stacks or change sets.
183
183
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-targetoperation.html}
184
184
  */
185
- export type TargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET";
185
+ export type TargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET" | "CLOUD_CONTROL";
186
186
  /**
187
187
  * Resource type definition for `AWS::CloudFormation::GuardHook`.
188
188
  * This is a CloudFormation resource for activating the first-party AWS::Hooks::GuardHook.
@@ -8,7 +8,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
8
8
  export type CloudFormationLambdaHookProperties = {
9
9
  /**
10
10
  * The typename alias for the hook.
11
- * @pattern `^[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
11
+ * @pattern `^(?!(?i)aws)[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
12
12
  */
13
13
  Alias: string;
14
14
  /**
@@ -160,7 +160,7 @@ export type InvocationPoint = "PRE_PROVISION";
160
160
  * Which operations should this Hook run against? Resource changes, stacks or change sets.
161
161
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-targetoperation.html}
162
162
  */
163
- export type TargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET";
163
+ export type TargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET" | "CLOUD_CONTROL";
164
164
  /**
165
165
  * Resource type definition for `AWS::CloudFormation::LambdaHook`.
166
166
  * This is a CloudFormation resource for the first-party AWS::Hooks::LambdaHook.
@@ -27,6 +27,10 @@ export type DataBrewDatasetProperties = {
27
27
  * PathOptions
28
28
  */
29
29
  PathOptions?: PathOptions;
30
+ /**
31
+ * Source type of the dataset
32
+ */
33
+ Source?: "S3" | "DATA-CATALOG" | "DATABASE";
30
34
  Tags?: Tag[];
31
35
  };
32
36
  /**
@@ -281,6 +285,12 @@ export type PathParameter = {
281
285
  */
282
286
  export type S3Location = {
283
287
  Bucket: string;
288
+ /**
289
+ * Bucket owner
290
+ * @minLength `12`
291
+ * @maxLength `12`
292
+ */
293
+ BucketOwner?: string;
284
294
  Key?: string;
285
295
  };
286
296
  /**
@@ -29,7 +29,7 @@ export type Member = {
29
29
  * Type definition for `AWS::DataZone::ProjectMembership.UserDesignation`.
30
30
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-userdesignation.html}
31
31
  */
32
- export type UserDesignation = "PROJECT_OWNER" | "PROJECT_CONTRIBUTOR";
32
+ export type UserDesignation = "PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_CATALOG_VIEWER" | "PROJECT_CATALOG_CONSUMER" | "PROJECT_CATALOG_STEWARD";
33
33
  /**
34
34
  * Definition of AWS::DataZone::ProjectMembership Resource Type
35
35
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html}
@@ -29,7 +29,7 @@ export type DataZoneSubscriptionTargetProperties = {
29
29
  /**
30
30
  * The manage access role that is used to create the subscription target.
31
31
  */
32
- ManageAccessRole: string;
32
+ ManageAccessRole?: string;
33
33
  /**
34
34
  * The name of the subscription target.
35
35
  * @minLength `1`
@@ -52,6 +52,13 @@ export type BaselineEbsBandwidthMbpsRequest = {
52
52
  Max?: number;
53
53
  Min?: number;
54
54
  };
55
+ /**
56
+ * Type definition for `AWS::EC2::EC2Fleet.BaselinePerformanceFactorsRequest`.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-baselineperformancefactorsrequest.html}
58
+ */
59
+ export type BaselinePerformanceFactorsRequest = {
60
+ Cpu?: CpuPerformanceFactorRequest;
61
+ };
55
62
  /**
56
63
  * Type definition for `AWS::EC2::EC2Fleet.CapacityRebalance`.
57
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityrebalance.html}
@@ -67,6 +74,13 @@ export type CapacityRebalance = {
67
74
  export type CapacityReservationOptionsRequest = {
68
75
  UsageStrategy?: "use-capacity-reservations-first";
69
76
  };
77
+ /**
78
+ * Type definition for `AWS::EC2::EC2Fleet.CpuPerformanceFactorRequest`.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-cpuperformancefactorrequest.html}
80
+ */
81
+ export type CpuPerformanceFactorRequest = {
82
+ References?: PerformanceFactorReferenceRequest[];
83
+ };
70
84
  /**
71
85
  * Type definition for `AWS::EC2::EC2Fleet.FleetLaunchTemplateConfigRequest`.
72
86
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateconfigrequest.html}
@@ -116,6 +130,7 @@ export type InstanceRequirementsRequest = {
116
130
  AllowedInstanceTypes?: string[];
117
131
  BareMetal?: "included" | "required" | "excluded";
118
132
  BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
133
+ BaselinePerformanceFactors?: BaselinePerformanceFactorsRequest;
119
134
  BurstablePerformance?: "included" | "required" | "excluded";
120
135
  CpuManufacturers?: ("intel" | "amd" | "amazon-web-services" | "apple")[];
121
136
  ExcludedInstanceTypes?: string[];
@@ -184,6 +199,13 @@ export type OnDemandOptionsRequest = {
184
199
  SingleAvailabilityZone?: boolean;
185
200
  SingleInstanceType?: boolean;
186
201
  };
202
+ /**
203
+ * Type definition for `AWS::EC2::EC2Fleet.PerformanceFactorReferenceRequest`.
204
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-performancefactorreferencerequest.html}
205
+ */
206
+ export type PerformanceFactorReferenceRequest = {
207
+ InstanceFamily?: string;
208
+ };
187
209
  /**
188
210
  * Type definition for `AWS::EC2::EC2Fleet.Placement`.
189
211
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-placement.html}
@@ -38,6 +38,13 @@ export type BaselineEbsBandwidthMbpsRequest = {
38
38
  Max?: number;
39
39
  Min?: number;
40
40
  };
41
+ /**
42
+ * Type definition for `AWS::EC2::SpotFleet.BaselinePerformanceFactorsRequest`.
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-baselineperformancefactorsrequest.html}
44
+ */
45
+ export type BaselinePerformanceFactorsRequest = {
46
+ Cpu?: CpuPerformanceFactorRequest;
47
+ };
41
48
  /**
42
49
  * Type definition for `AWS::EC2::SpotFleet.BlockDeviceMapping`.
43
50
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-blockdevicemapping.html}
@@ -62,6 +69,13 @@ export type ClassicLoadBalancer = {
62
69
  export type ClassicLoadBalancersConfig = {
63
70
  ClassicLoadBalancers: ClassicLoadBalancer[];
64
71
  };
72
+ /**
73
+ * Type definition for `AWS::EC2::SpotFleet.CpuPerformanceFactorRequest`.
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-cpuperformancefactorrequest.html}
75
+ */
76
+ export type CpuPerformanceFactorRequest = {
77
+ References?: PerformanceFactorReferenceRequest[];
78
+ };
65
79
  /**
66
80
  * Type definition for `AWS::EC2::SpotFleet.EbsBlockDevice`.
67
81
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-ebsblockdevice.html}
@@ -139,6 +153,7 @@ export type InstanceRequirementsRequest = {
139
153
  AllowedInstanceTypes?: string[];
140
154
  BareMetal?: "included" | "required" | "excluded";
141
155
  BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
156
+ BaselinePerformanceFactors?: BaselinePerformanceFactorsRequest;
142
157
  BurstablePerformance?: "included" | "required" | "excluded";
143
158
  CpuManufacturers?: ("intel" | "amd" | "amazon-web-services" | "apple")[];
144
159
  ExcludedInstanceTypes?: string[];
@@ -217,6 +232,13 @@ export type NetworkInterfaceCountRequest = {
217
232
  Max?: number;
218
233
  Min?: number;
219
234
  };
235
+ /**
236
+ * Type definition for `AWS::EC2::SpotFleet.PerformanceFactorReferenceRequest`.
237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-performancefactorreferencerequest.html}
238
+ */
239
+ export type PerformanceFactorReferenceRequest = {
240
+ InstanceFamily?: string;
241
+ };
220
242
  /**
221
243
  * Type definition for `AWS::EC2::SpotFleet.PrivateIpAddressSpecification`.
222
244
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-privateipaddressspecification.html}
@@ -9,6 +9,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
9
9
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
10
10
  */
11
11
  export type EC2VPCEndpointProperties = {
12
+ DnsOptions?: DnsOptionsSpecification;
13
+ IpAddressType?: "ipv4" | "ipv6" | "dualstack" | "not-specified";
12
14
  /**
13
15
  * An endpoint policy, which controls access to the service from the VPC. The default endpoint policy allows full access to the service. Endpoint policies are supported only for gateway and interface endpoints.
14
16
  For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. For example, if you have a JSON policy, you can convert it to YAML before including it in the YAML template, and CFNlong converts the policy to JSON format before calling the API actions for privatelink. Alternatively, you can include the JSON directly in the YAML, as shown in the following ``Properties`` section:
@@ -22,6 +24,7 @@ export type EC2VPCEndpointProperties = {
22
24
  Default: ``false``
23
25
  */
24
26
  PrivateDnsEnabled?: boolean;
27
+ ResourceConfigurationArn?: string;
25
28
  /**
26
29
  * The IDs of the route tables. Routing is supported only for gateway endpoints.
27
30
  */
@@ -33,7 +36,8 @@ export type EC2VPCEndpointProperties = {
33
36
  /**
34
37
  * The name of the endpoint service.
35
38
  */
36
- ServiceName: string;
39
+ ServiceName?: string;
40
+ ServiceNetworkArn?: string;
37
41
  /**
38
42
  * The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
39
43
  */
@@ -42,7 +46,7 @@ export type EC2VPCEndpointProperties = {
42
46
  * The type of endpoint.
43
47
  Default: Gateway
44
48
  */
45
- VpcEndpointType?: "Interface" | "Gateway" | "GatewayLoadBalancer";
49
+ VpcEndpointType?: "Interface" | "Gateway" | "GatewayLoadBalancer" | "ServiceNetwork" | "Resource";
46
50
  /**
47
51
  * The ID of the VPC.
48
52
  */
@@ -58,6 +62,14 @@ export type EC2VPCEndpointAttributes = {
58
62
  Id: string;
59
63
  NetworkInterfaceIds: string[];
60
64
  };
65
+ /**
66
+ * Type definition for `AWS::EC2::VPCEndpoint.DnsOptionsSpecification`.
67
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-dnsoptionsspecification.html}
68
+ */
69
+ export type DnsOptionsSpecification = {
70
+ DnsRecordIpType?: "ipv4" | "ipv6" | "dualstack" | "service-defined" | "not-specified";
71
+ PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
72
+ };
61
73
  /**
62
74
  * Resource type definition for `AWS::EC2::VPCEndpoint`.
63
75
  * Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
@@ -549,7 +549,7 @@ export type EnvironmentFile = {
549
549
  */
550
550
  export type EphemeralStorage = {
551
551
  /**
552
- * The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is ``20`` GiB and the maximum supported value is ``200`` GiB.
552
+ * The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is ``21`` GiB and the maximum supported value is ``200`` GiB.
553
553
  */
554
554
  SizeInGiB?: number;
555
555
  };
@@ -24,7 +24,7 @@ export type EMRStudioProperties = {
24
24
  Description?: string;
25
25
  /**
26
26
  * The AWS KMS key identifier (ARN) used to encrypt AWS EMR Studio workspace and notebook files when backed up to AWS S3.
27
- * @pattern `^arn:aws(-(cn|us-gov))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
27
+ * @pattern `^arn:aws(-(cn|us-gov|iso-f|iso-e))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
28
28
  */
29
29
  EncryptionKeyArn?: string;
30
30
  /**
@@ -65,7 +65,7 @@ export type EMRStudioProperties = {
65
65
  Name: string;
66
66
  /**
67
67
  * The IAM role that will be assumed by the Amazon EMR Studio. The service role provides a way for Amazon EMR Studio to interoperate with other AWS services.
68
- * @pattern `^arn:aws(-(cn|us-gov))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
68
+ * @pattern `^arn:aws(-(cn|us-gov|iso-f|iso-e))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
69
69
  */
70
70
  ServiceRole: string;
71
71
  /**
@@ -83,7 +83,7 @@ export type EMRStudioProperties = {
83
83
  TrustedIdentityPropagationEnabled?: boolean;
84
84
  /**
85
85
  * The IAM user role that will be assumed by users and groups logged in to a Studio. The permissions attached to this IAM role can be scoped down for each user or group using session policies.
86
- * @pattern `^arn:aws(-(cn|us-gov))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
86
+ * @pattern `^arn:aws(-(cn|us-gov|iso-f|iso-e))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
87
87
  */
88
88
  UserRole?: string;
89
89
  /**
@@ -104,7 +104,7 @@ export type EMRStudioProperties = {
104
104
  export type EMRStudioAttributes = {
105
105
  /**
106
106
  * The Amazon Resource Name (ARN) of the EMR Studio.
107
- * @pattern `^arn:aws(-(cn|us-gov))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
107
+ * @pattern `^arn:aws(-(cn|us-gov|iso-f|iso-e))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
108
108
  */
109
109
  Arn: string;
110
110
  /**
@@ -16,7 +16,7 @@ export type EMRStudioSessionMappingProperties = {
16
16
  IdentityType: "USER" | "GROUP";
17
17
  /**
18
18
  * The Amazon Resource Name (ARN) for the session policy that will be applied to the user or group. Session policies refine Studio user permissions without the need to use multiple IAM user roles.
19
- * @pattern `^arn:aws(-(cn|us-gov))?:iam::([0-9]{12})?:policy\/[^.]+$`
19
+ * @pattern `^arn:aws(-(cn|us-gov|iso-f|iso-e))?:iam::([0-9]{12})?:policy\/[^.]+$`
20
20
  */
21
21
  SessionPolicyArn: string;
22
22
  /**
@@ -11,7 +11,7 @@ export type LambdaEventInvokeConfigProperties = {
11
11
  DestinationConfig?: DestinationConfig;
12
12
  /**
13
13
  * The name of the Lambda function.
14
- * @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
14
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
15
15
  */
16
16
  FunctionName: string;
17
17
  /**
@@ -57,7 +57,7 @@ export type OnFailure = {
57
57
  * The Amazon Resource Name (ARN) of the destination resource.
58
58
  * @minLength `0`
59
59
  * @maxLength `350`
60
- * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
60
+ * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
61
61
  */
62
62
  Destination: string;
63
63
  };
@@ -71,7 +71,7 @@ export type OnSuccess = {
71
71
  * The Amazon Resource Name (ARN) of the destination resource.
72
72
  * @minLength `0`
73
73
  * @maxLength `350`
74
- * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
74
+ * @pattern `^$|arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
75
75
  */
76
76
  Destination: string;
77
77
  };
@@ -0,0 +1,195 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * AWS::PCS::Cluster resource creates an AWS PCS cluster.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
6
+ */
7
+ export type PCSClusterProperties = {
8
+ /**
9
+ * The name that identifies the cluster.
10
+ * @pattern `^(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+$`
11
+ */
12
+ Name?: string;
13
+ /**
14
+ * The networking configuration for the cluster's control plane.
15
+ */
16
+ Networking: {
17
+ /**
18
+ * The list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
19
+ */
20
+ SecurityGroupIds?: string[];
21
+ /**
22
+ * The list of subnet IDs where AWS PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and AWS PCS resources. The subnet must have an available IP address, cannot reside in AWS Outposts, AWS Wavelength, or an AWS Local Zone. AWS PCS currently supports only 1 subnet in this list.
23
+ */
24
+ SubnetIds?: string[];
25
+ };
26
+ /**
27
+ * The cluster management and job scheduling software associated with the cluster.
28
+ */
29
+ Scheduler: {
30
+ /**
31
+ * The software AWS PCS uses to manage cluster scaling and job scheduling.
32
+ */
33
+ Type: "SLURM";
34
+ /**
35
+ * The version of the specified scheduling software that AWS PCS uses to manage cluster scaling and job scheduling.
36
+ */
37
+ Version: string;
38
+ };
39
+ /**
40
+ * The size of the cluster.
41
+ */
42
+ Size: "SMALL" | "MEDIUM" | "LARGE";
43
+ /**
44
+ * Additional options related to the Slurm scheduler.
45
+ */
46
+ SlurmConfiguration?: {
47
+ /**
48
+ * The shared Slurm key for authentication, also known as the cluster secret.
49
+ */
50
+ AuthKey?: AuthKey;
51
+ /**
52
+ * The time before an idle node is scaled down.
53
+ * @min `1`
54
+ */
55
+ ScaleDownIdleTimeInSeconds?: number;
56
+ /**
57
+ * Additional Slurm-specific configuration that directly maps to Slurm settings.
58
+ */
59
+ SlurmCustomSettings?: SlurmCustomSetting[];
60
+ };
61
+ /**
62
+ * 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
63
+ */
64
+ Tags?: Record<string, string>;
65
+ };
66
+ /**
67
+ * Attribute type definition for `AWS::PCS::Cluster`.
68
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html#aws-resource-pcs-cluster-return-values}
69
+ */
70
+ export type PCSClusterAttributes = {
71
+ /**
72
+ * The unique Amazon Resource Name (ARN) of the cluster.
73
+ */
74
+ Arn: string;
75
+ /**
76
+ * The list of endpoints available for interaction with the scheduler.
77
+ */
78
+ Endpoints: {
79
+ /**
80
+ * The endpoint's connection port number.
81
+ */
82
+ Port: string;
83
+ /**
84
+ * The endpoint's private IP address.
85
+ */
86
+ PrivateIpAddress: string;
87
+ /**
88
+ * The endpoint's public IP address.
89
+ */
90
+ PublicIpAddress: string;
91
+ /**
92
+ * Indicates the type of endpoint running at the specific IP address.
93
+ */
94
+ Type: "SLURMCTLD" | "SLURMDBD";
95
+ }[];
96
+ /**
97
+ * The list of errors that occurred during cluster provisioning.
98
+ */
99
+ ErrorInfo: {
100
+ /**
101
+ * The short-form error code.
102
+ */
103
+ Code: string;
104
+ /**
105
+ * The detailed error information.
106
+ */
107
+ Message: string;
108
+ }[];
109
+ /**
110
+ * The generated unique ID of the cluster.
111
+ * @pattern `^(pcs_[a-zA-Z0-9]+|[A-Za-z][A-Za-z0-9-]{1,40})$`
112
+ */
113
+ Id: string;
114
+ /**
115
+ * The provisioning status of the cluster. The provisioning status doesn't indicate the overall health of the cluster.
116
+ */
117
+ Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
118
+ };
119
+ /**
120
+ * Type definition for `AWS::PCS::Cluster.AuthKey`.
121
+ * The shared Slurm key for authentication, also known as the cluster secret.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-authkey.html}
123
+ */
124
+ export type AuthKey = {
125
+ /**
126
+ * The Amazon Resource Name (ARN) of the the shared Slurm key.
127
+ */
128
+ SecretArn: string;
129
+ /**
130
+ * The version of the shared Slurm key.
131
+ */
132
+ SecretVersion: string;
133
+ };
134
+ /**
135
+ * Type definition for `AWS::PCS::Cluster.Endpoint`.
136
+ * An endpoint available for interaction with the scheduler.
137
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-endpoint.html}
138
+ */
139
+ export type Endpoint = {
140
+ /**
141
+ * The endpoint's connection port number.
142
+ */
143
+ Port: string;
144
+ /**
145
+ * The endpoint's private IP address.
146
+ */
147
+ PrivateIpAddress: string;
148
+ /**
149
+ * The endpoint's public IP address.
150
+ */
151
+ PublicIpAddress?: string;
152
+ /**
153
+ * Indicates the type of endpoint running at the specific IP address.
154
+ */
155
+ Type: "SLURMCTLD" | "SLURMDBD";
156
+ };
157
+ /**
158
+ * Type definition for `AWS::PCS::Cluster.ErrorInfo`.
159
+ * An error that occurred during resource provisioning.
160
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-errorinfo.html}
161
+ */
162
+ export type ErrorInfo = {
163
+ /**
164
+ * The short-form error code.
165
+ */
166
+ Code?: string;
167
+ /**
168
+ * The detailed error information.
169
+ */
170
+ Message?: string;
171
+ };
172
+ /**
173
+ * Type definition for `AWS::PCS::Cluster.SlurmCustomSetting`.
174
+ * Additional settings that directly map to Slurm settings.
175
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-slurmcustomsetting.html}
176
+ */
177
+ export type SlurmCustomSetting = {
178
+ /**
179
+ * AWS PCS supports configuration of the following Slurm parameters for clusters: Prolog, Epilog, and SelectTypeParameters.
180
+ */
181
+ ParameterName: string;
182
+ /**
183
+ * The value for the configured Slurm setting.
184
+ */
185
+ ParameterValue: string;
186
+ };
187
+ /**
188
+ * AWS::PCS::Cluster resource creates an AWS PCS cluster.
189
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
190
+ */
191
+ export declare class PCSCluster extends $Resource<"AWS::PCS::Cluster", PCSClusterProperties, PCSClusterAttributes> {
192
+ static readonly Type = "AWS::PCS::Cluster";
193
+ constructor(logicalId: string, properties: PCSClusterProperties, options?: $ResourceOptions);
194
+ }
195
+ //# sourceMappingURL=AWS-PCS-Cluster.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * AWS::PCS::Cluster resource creates an AWS PCS cluster.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
5
+ */
6
+ export class PCSCluster extends $Resource {
7
+ static Type = "AWS::PCS::Cluster";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, PCSCluster.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-PCS-Cluster.js.map
@@ -0,0 +1,170 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * AWS::PCS::ComputeNodeGroup resource creates an AWS PCS compute node group.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html}
6
+ */
7
+ export type PCSComputeNodeGroupProperties = {
8
+ /**
9
+ * The ID of the Amazon Machine Image (AMI) that AWS PCS uses to launch instances. If not provided, AWS PCS uses the AMI ID specified in the custom launch template.
10
+ * @pattern `^ami-[a-z0-9]+$`
11
+ */
12
+ AmiId?: string;
13
+ /**
14
+ * The ID of the cluster of the compute node group.
15
+ */
16
+ ClusterId: string;
17
+ /**
18
+ * An Amazon EC2 launch template AWS PCS uses to launch compute nodes.
19
+ */
20
+ CustomLaunchTemplate: {
21
+ /**
22
+ * The ID of the EC2 launch template to use to provision instances.
23
+ */
24
+ Id: string;
25
+ /**
26
+ * The version of the EC2 launch template to use to provision instances.
27
+ */
28
+ Version: string;
29
+ };
30
+ /**
31
+ * The Amazon Resource Name (ARN) of the IAM instance profile used to pass an IAM role when launching EC2 instances. The role contained in your instance profile must have pcs:RegisterComputeNodeGroupInstance permissions attached to provision instances correctly.
32
+ * @pattern `^arn:aws([a-zA-Z-]{0,10})?:iam::[0-9]{12}:instance-profile/.{1,128}$`
33
+ */
34
+ IamInstanceProfileArn: string;
35
+ /**
36
+ * A list of EC2 instance configurations that AWS PCS can provision in the compute node group.
37
+ */
38
+ InstanceConfigs: InstanceConfig[];
39
+ /**
40
+ * The name that identifies the compute node group.
41
+ * @pattern `^(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+$`
42
+ */
43
+ Name?: string;
44
+ /**
45
+ * Specifies how EC2 instances are purchased on your behalf. AWS PCS supports On-Demand and Spot instances. For more information, see Instance purchasing options in the Amazon Elastic Compute Cloud User Guide. If you don't provide this option, it defaults to On-Demand.
46
+ */
47
+ PurchaseOption?: "ONDEMAND" | "SPOT";
48
+ /**
49
+ * Specifies the boundaries of the compute node group auto scaling.
50
+ */
51
+ ScalingConfiguration: {
52
+ /**
53
+ * The upper bound of the number of instances allowed in the compute fleet.
54
+ * @min `0`
55
+ */
56
+ MaxInstanceCount: number;
57
+ /**
58
+ * The lower bound of the number of instances allowed in the compute fleet.
59
+ * @min `0`
60
+ */
61
+ MinInstanceCount: number;
62
+ };
63
+ /**
64
+ * Additional options related to the Slurm scheduler.
65
+ */
66
+ SlurmConfiguration?: {
67
+ /**
68
+ * Additional Slurm-specific configuration that directly maps to Slurm settings.
69
+ */
70
+ SlurmCustomSettings?: SlurmCustomSetting[];
71
+ };
72
+ /**
73
+ * Additional configuration when you specify SPOT as the purchase option.
74
+ */
75
+ SpotOptions?: {
76
+ /**
77
+ * The Amazon EC2 allocation strategy AWS PCS uses to provision EC2 instances. AWS PCS supports lowest price, capacity optimized, and price capacity optimized. If you don't provide this option, it defaults to price capacity optimized.
78
+ */
79
+ AllocationStrategy?: "lowest-price" | "capacity-optimized" | "price-capacity-optimized";
80
+ };
81
+ /**
82
+ * The list of subnet IDs where instances are provisioned by the compute node group. The subnets must be in the same VPC as the cluster.
83
+ */
84
+ SubnetIds: string[];
85
+ /**
86
+ * 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
87
+ */
88
+ Tags?: Record<string, string>;
89
+ };
90
+ /**
91
+ * Attribute type definition for `AWS::PCS::ComputeNodeGroup`.
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#aws-resource-pcs-computenodegroup-return-values}
93
+ */
94
+ export type PCSComputeNodeGroupAttributes = {
95
+ /**
96
+ * The unique Amazon Resource Name (ARN) of the compute node group.
97
+ */
98
+ Arn: string;
99
+ /**
100
+ * The list of errors that occurred during compute node group provisioning.
101
+ */
102
+ ErrorInfo: {
103
+ /**
104
+ * The short-form error code.
105
+ */
106
+ Code: string;
107
+ /**
108
+ * The detailed error information.
109
+ */
110
+ Message: string;
111
+ }[];
112
+ /**
113
+ * The generated unique ID of the compute node group.
114
+ */
115
+ Id: string;
116
+ /**
117
+ * The provisioning status of the compute node group. The provisioning status doesn't indicate the overall health of the compute node group.
118
+ */
119
+ Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
120
+ };
121
+ /**
122
+ * Type definition for `AWS::PCS::ComputeNodeGroup.ErrorInfo`.
123
+ * An error that occurred during resource provisioning.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-errorinfo.html}
125
+ */
126
+ export type ErrorInfo = {
127
+ /**
128
+ * The short-form error code.
129
+ */
130
+ Code?: string;
131
+ /**
132
+ * The detailed error information.
133
+ */
134
+ Message?: string;
135
+ };
136
+ /**
137
+ * Type definition for `AWS::PCS::ComputeNodeGroup.InstanceConfig`.
138
+ * An EC2 instance configuration AWS PCS uses to launch compute nodes.
139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-instanceconfig.html}
140
+ */
141
+ export type InstanceConfig = {
142
+ /**
143
+ * The EC2 instance type that AWS PCS can provision in the compute node group.
144
+ */
145
+ InstanceType?: string;
146
+ };
147
+ /**
148
+ * Type definition for `AWS::PCS::ComputeNodeGroup.SlurmCustomSetting`.
149
+ * Additional settings that directly map to Slurm settings.
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-slurmcustomsetting.html}
151
+ */
152
+ export type SlurmCustomSetting = {
153
+ /**
154
+ * AWS PCS supports configuration of the following Slurm parameters for compute node groups: Weight and RealMemory.
155
+ */
156
+ ParameterName: string;
157
+ /**
158
+ * The value for the configured Slurm setting.
159
+ */
160
+ ParameterValue: string;
161
+ };
162
+ /**
163
+ * AWS::PCS::ComputeNodeGroup resource creates an AWS PCS compute node group.
164
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html}
165
+ */
166
+ export declare class PCSComputeNodeGroup extends $Resource<"AWS::PCS::ComputeNodeGroup", PCSComputeNodeGroupProperties, PCSComputeNodeGroupAttributes> {
167
+ static readonly Type = "AWS::PCS::ComputeNodeGroup";
168
+ constructor(logicalId: string, properties: PCSComputeNodeGroupProperties, options?: $ResourceOptions);
169
+ }
170
+ //# sourceMappingURL=AWS-PCS-ComputeNodeGroup.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * AWS::PCS::ComputeNodeGroup resource creates an AWS PCS compute node group.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html}
5
+ */
6
+ export class PCSComputeNodeGroup extends $Resource {
7
+ static Type = "AWS::PCS::ComputeNodeGroup";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, PCSComputeNodeGroup.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-PCS-ComputeNodeGroup.js.map
@@ -0,0 +1,92 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * AWS::PCS::Queue resource creates an AWS PCS queue.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html}
6
+ */
7
+ export type PCSQueueProperties = {
8
+ /**
9
+ * The ID of the cluster of the queue.
10
+ */
11
+ ClusterId: string;
12
+ /**
13
+ * The list of compute node group configurations associated with the queue. Queues assign jobs to associated compute node groups.
14
+ */
15
+ ComputeNodeGroupConfigurations?: ComputeNodeGroupConfiguration[];
16
+ /**
17
+ * The name that identifies the queue.
18
+ * @pattern `^(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+$`
19
+ */
20
+ Name?: string;
21
+ /**
22
+ * 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
23
+ */
24
+ Tags?: Record<string, string>;
25
+ };
26
+ /**
27
+ * Attribute type definition for `AWS::PCS::Queue`.
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html#aws-resource-pcs-queue-return-values}
29
+ */
30
+ export type PCSQueueAttributes = {
31
+ /**
32
+ * The unique Amazon Resource Name (ARN) of the queue.
33
+ * @pattern `^(.*?)`
34
+ */
35
+ Arn: string;
36
+ /**
37
+ * The list of errors that occurred during queue provisioning.
38
+ */
39
+ ErrorInfo: {
40
+ /**
41
+ * The short-form error code.
42
+ */
43
+ Code: string;
44
+ /**
45
+ * The detailed error information.
46
+ */
47
+ Message: string;
48
+ }[];
49
+ /**
50
+ * The generated unique ID of the queue.
51
+ */
52
+ Id: string;
53
+ /**
54
+ * The provisioning status of the queue. The provisioning status doesn't indicate the overall health of the queue.
55
+ */
56
+ Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
57
+ };
58
+ /**
59
+ * Type definition for `AWS::PCS::Queue.ComputeNodeGroupConfiguration`.
60
+ * The compute node group configuration for a queue.
61
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-queue-computenodegroupconfiguration.html}
62
+ */
63
+ export type ComputeNodeGroupConfiguration = {
64
+ /**
65
+ * The compute node group ID for the compute node group configuration.
66
+ */
67
+ ComputeNodeGroupId?: string;
68
+ };
69
+ /**
70
+ * Type definition for `AWS::PCS::Queue.ErrorInfo`.
71
+ * An error that occurred during resource provisioning.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-queue-errorinfo.html}
73
+ */
74
+ export type ErrorInfo = {
75
+ /**
76
+ * The short-form error code.
77
+ */
78
+ Code?: string;
79
+ /**
80
+ * The detailed error information.
81
+ */
82
+ Message?: string;
83
+ };
84
+ /**
85
+ * AWS::PCS::Queue resource creates an AWS PCS queue.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html}
87
+ */
88
+ export declare class PCSQueue extends $Resource<"AWS::PCS::Queue", PCSQueueProperties, PCSQueueAttributes> {
89
+ static readonly Type = "AWS::PCS::Queue";
90
+ constructor(logicalId: string, properties: PCSQueueProperties, options?: $ResourceOptions);
91
+ }
92
+ //# sourceMappingURL=AWS-PCS-Queue.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * AWS::PCS::Queue resource creates an AWS PCS queue.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html}
5
+ */
6
+ export class PCSQueue extends $Resource {
7
+ static Type = "AWS::PCS::Queue";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, PCSQueue.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-PCS-Queue.js.map
@@ -58,6 +58,7 @@ export type QuickSightDataSetProperties = {
58
58
  * @maxLength `128`
59
59
  */
60
60
  Name?: string;
61
+ PerformanceConfiguration?: PerformanceConfiguration;
61
62
  /**
62
63
  * <p>A list of resource permissions on the dataset.</p>
63
64
  * @minLength `1`
@@ -809,6 +810,17 @@ export type OverrideDatasetParameterOperation = {
809
810
  */
810
811
  ParameterName: string;
811
812
  };
813
+ /**
814
+ * Type definition for `AWS::QuickSight::DataSet.PerformanceConfiguration`.
815
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-performanceconfiguration.html}
816
+ */
817
+ export type PerformanceConfiguration = {
818
+ /**
819
+ * @minLength `1`
820
+ * @maxLength `1`
821
+ */
822
+ UniqueKeys?: UniqueKey[];
823
+ };
812
824
  /**
813
825
  * Type definition for `AWS::QuickSight::DataSet.PhysicalTable`.
814
826
  * <p>A view of a data source that contains information about the shape of the data in the
@@ -1194,6 +1206,17 @@ export type TransformOperation = {
1194
1206
  */
1195
1207
  UntagColumnOperation?: UntagColumnOperation;
1196
1208
  };
1209
+ /**
1210
+ * Type definition for `AWS::QuickSight::DataSet.UniqueKey`.
1211
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uniquekey.html}
1212
+ */
1213
+ export type UniqueKey = {
1214
+ /**
1215
+ * @minLength `1`
1216
+ * @maxLength `1`
1217
+ */
1218
+ ColumnNames: string[];
1219
+ };
1197
1220
  /**
1198
1221
  * Type definition for `AWS::QuickSight::DataSet.UntagColumnOperation`.
1199
1222
  * <p>A transform operation that removes tags associated with a column.</p>
@@ -21,7 +21,7 @@ export type RedshiftIntegrationProperties = {
21
21
  */
22
22
  KMSKeyId?: string;
23
23
  /**
24
- * The Amazon Resource Name (ARN) of the database to use as the source for replication, for example, arn:aws:dynamodb:us-east-2:123412341234:table/dynamotable
24
+ * The Amazon Resource Name (ARN) of the database to use as the source for replication
25
25
  */
26
26
  SourceArn: string;
27
27
  /**
@@ -30,7 +30,7 @@ export type RedshiftIntegrationProperties = {
30
30
  */
31
31
  Tags?: Tag[];
32
32
  /**
33
- * The Amazon Resource Name (ARN) of the Redshift data warehouse to use as the target for replication, for example, arn:aws:redshift:us-east-2:123412341234:namespace:e43aab3e-10a3-4ec4-83d4-f227ff9bfbcf
33
+ * The Amazon Resource Name (ARN) of the Redshift data warehouse to use as the target for replication
34
34
  */
35
35
  TargetArn: string;
36
36
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.218",
3
+ "version": "0.1.219",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },