@awboost/cfn-resource-types 0.1.430 → 0.1.432

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.
@@ -61,11 +61,32 @@ export type CURReportDefinitionProperties = {
61
61
  * The region of the S3 bucket that AWS delivers the report into.
62
62
  */
63
63
  S3Region: string;
64
+ /**
65
+ * @minLength `0`
66
+ * @maxLength `100`
67
+ */
68
+ Tags?: Tag[];
64
69
  /**
65
70
  * The granularity of the line items in the report.
66
71
  */
67
72
  TimeUnit: "HOURLY" | "DAILY" | "MONTHLY";
68
73
  };
74
+ /**
75
+ * Type definition for `AWS::CUR::ReportDefinition.Tag`.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cur-reportdefinition-tag.html}
77
+ */
78
+ export type Tag = {
79
+ /**
80
+ * @minLength `1`
81
+ * @maxLength `128`
82
+ */
83
+ Key: string;
84
+ /**
85
+ * @minLength `0`
86
+ * @maxLength `256`
87
+ */
88
+ Value: string;
89
+ };
69
90
  /**
70
91
  * The AWS::CUR::ReportDefinition resource creates a Cost & Usage Report with user-defined settings. You can use this resource to define settings like time granularity (hourly, daily, monthly), file format (Parquet, CSV), and S3 bucket for delivery of these reports.
71
92
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html}
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource schema for AWS::DataSync::LocationSMB.
4
+ * Resource Type definition for AWS::DataSync::LocationSMB.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html}
6
6
  */
7
7
  export type DataSyncLocationSMBProperties = {
@@ -15,6 +15,14 @@ export type DataSyncLocationSMBProperties = {
15
15
  * The authentication mode used to determine identity of user.
16
16
  */
17
17
  AuthenticationType?: "NTLM" | "KERBEROS";
18
+ /**
19
+ * Specifies configuration information for a DataSync-managed secret, such as a password or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
20
+ */
21
+ CmkSecretConfig?: CmkSecretConfig;
22
+ /**
23
+ * Specifies configuration information for a customer-managed secret, such as a password or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.
24
+ */
25
+ CustomSecretConfig?: CustomSecretConfig;
18
26
  /**
19
27
  * Specifies the IPv4 addresses for the DNS servers that your SMB file server belongs to. This parameter applies only if AuthenticationType is set to KERBEROS. If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right SMB file server.
20
28
  * @maxLength `2`
@@ -82,6 +90,17 @@ export type DataSyncLocationSMBProperties = {
82
90
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html#aws-resource-datasync-locationsmb-return-values}
83
91
  */
84
92
  export type DataSyncLocationSMBAttributes = {
93
+ /**
94
+ * Specifies configuration information for a DataSync-managed secret, such as a password or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
95
+ */
96
+ CmkSecretConfig: {
97
+ /**
98
+ * Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
99
+ * @maxLength `2048`
100
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
101
+ */
102
+ SecretArn: string;
103
+ };
85
104
  /**
86
105
  * The Amazon Resource Name (ARN) of the SMB location that is created.
87
106
  * @maxLength `128`
@@ -94,6 +113,62 @@ export type DataSyncLocationSMBAttributes = {
94
113
  * @pattern `^(efs|nfs|s3|smb|fsxw)://[a-zA-Z0-9./\-]+$`
95
114
  */
96
115
  LocationUri: string;
116
+ /**
117
+ * Specifies configuration information for a DataSync-managed secret, such as a password or set of credentials that DataSync uses to access a specific transfer location. DataSync uses the default AWS-managed KMS key to encrypt this secret in AWS Secrets Manager.
118
+ */
119
+ ManagedSecretConfig: {
120
+ /**
121
+ * Specifies the ARN for an AWS Secrets Manager secret.
122
+ * @maxLength `2048`
123
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
124
+ */
125
+ SecretArn: string;
126
+ };
127
+ };
128
+ /**
129
+ * Type definition for `AWS::DataSync::LocationSMB.CmkSecretConfig`.
130
+ * Specifies configuration information for a DataSync-managed secret, such as a password or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.
131
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-cmksecretconfig.html}
132
+ */
133
+ export type CmkSecretConfig = {
134
+ /**
135
+ * Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
136
+ * @maxLength `2048`
137
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
138
+ */
139
+ KmsKeyArn?: string;
140
+ };
141
+ /**
142
+ * Type definition for `AWS::DataSync::LocationSMB.CustomSecretConfig`.
143
+ * Specifies configuration information for a customer-managed secret, such as a password or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-customsecretconfig.html}
145
+ */
146
+ export type CustomSecretConfig = {
147
+ /**
148
+ * Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
149
+ * @maxLength `2048`
150
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
151
+ */
152
+ SecretAccessRoleArn: string;
153
+ /**
154
+ * Specifies the ARN for a customer created AWS Secrets Manager secret.
155
+ * @maxLength `2048`
156
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
157
+ */
158
+ SecretArn: string;
159
+ };
160
+ /**
161
+ * Type definition for `AWS::DataSync::LocationSMB.ManagedSecretConfig`.
162
+ * Specifies configuration information for a DataSync-managed secret, such as a password or set of credentials that DataSync uses to access a specific transfer location. DataSync uses the default AWS-managed KMS key to encrypt this secret in AWS Secrets Manager.
163
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-managedsecretconfig.html}
164
+ */
165
+ export type ManagedSecretConfig = {
166
+ /**
167
+ * Specifies the ARN for an AWS Secrets Manager secret.
168
+ * @maxLength `2048`
169
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
170
+ */
171
+ SecretArn: string;
97
172
  };
98
173
  /**
99
174
  * Type definition for `AWS::DataSync::LocationSMB.MountOptions`.
@@ -128,7 +203,7 @@ export type Tag = {
128
203
  Value: string;
129
204
  };
130
205
  /**
131
- * Resource schema for AWS::DataSync::LocationSMB.
206
+ * Resource Type definition for AWS::DataSync::LocationSMB.
132
207
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html}
133
208
  */
134
209
  export declare class DataSyncLocationSMB extends $Resource<"AWS::DataSync::LocationSMB", DataSyncLocationSMBProperties, DataSyncLocationSMBAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource schema for AWS::DataSync::LocationSMB.
3
+ * Resource Type definition for AWS::DataSync::LocationSMB.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html}
5
5
  */
6
6
  export class DataSyncLocationSMB extends $Resource {
@@ -1,22 +1,22 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
5
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
4
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
6
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
7
6
  */
8
7
  export type EC2NetworkInterfaceAttachmentProperties = {
9
8
  /**
10
- * Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
9
+ * Whether to delete the network interface when the instance terminates. By default, this value is set to true.
11
10
  */
12
11
  DeleteOnTermination?: boolean;
13
12
  /**
14
- * The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
13
+ * The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
15
14
  */
16
15
  DeviceIndex: string;
17
16
  /**
18
- * Configures ENA Express for the network interface that this action attaches to the instance.
17
+ * The number of ENA queues to be created with the instance.
19
18
  */
19
+ EnaQueueCount?: number;
20
20
  EnaSrdSpecification?: EnaSrdSpecification;
21
21
  /**
22
22
  * The ID of the instance to which you will attach the ENI.
@@ -32,29 +32,23 @@ export type EC2NetworkInterfaceAttachmentProperties = {
32
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
33
33
  */
34
34
  export type EC2NetworkInterfaceAttachmentAttributes = {
35
+ /**
36
+ * The ID of the network interface attachment.
37
+ */
35
38
  AttachmentId: string;
36
39
  };
37
40
  /**
38
41
  * Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
39
- * ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
40
- To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
41
42
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
42
43
  */
43
44
  export type EnaSrdSpecification = {
44
- /**
45
- * Indicates whether ENA Express is enabled for the network interface.
46
- */
47
45
  EnaSrdEnabled?: boolean;
48
- /**
49
- * Configures ENA Express for UDP network traffic.
50
- */
51
46
  EnaSrdUdpSpecification?: {
52
47
  EnaSrdUdpEnabled?: boolean;
53
48
  };
54
49
  };
55
50
  /**
56
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
57
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
51
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
58
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
59
53
  */
60
54
  export declare class EC2NetworkInterfaceAttachment extends $Resource<"AWS::EC2::NetworkInterfaceAttachment", EC2NetworkInterfaceAttachmentProperties, EC2NetworkInterfaceAttachmentAttributes> {
@@ -1,7 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
4
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
3
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
5
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
6
5
  */
7
6
  export class EC2NetworkInterfaceAttachment extends $Resource {
@@ -33,6 +33,9 @@ export type ECSServiceProperties = {
33
33
  /**
34
34
  * Indicates whether to use Availability Zone rebalancing for the service.
35
35
  For more information, see [Balancing an Amazon ECS service across Availability Zones](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html) in the *Amazon Elastic Container Service Developer Guide*.
36
+ The default behavior of ``AvailabilityZoneRebalancing`` differs between create and update requests:
37
+ + For create service requests, when no value is specified for ``AvailabilityZoneRebalancing``, Amazon ECS defaults the value to ``ENABLED``.
38
+ + For update service requests, when no value is specified for ``AvailabilityZoneRebalancing``, Amazon ECS defaults to the existing service’s ``AvailabilityZoneRebalancing`` value. If the service never had an ``AvailabilityZoneRebalancing`` value set, Amazon ECS treats this as ``DISABLED``.
36
39
  */
37
40
  AvailabilityZoneRebalancing?: "ENABLED" | "DISABLED";
38
41
  /**
@@ -74,8 +77,8 @@ export type ECSServiceProperties = {
74
77
  */
75
78
  ForceNewDeployment?: ForceNewDeployment;
76
79
  /**
77
- * The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you don't specify a health check grace period value, the default value of ``0`` is used. If you don't use any of the health checks, then ``healthCheckGracePeriodSeconds`` is unused.
78
- If your service's tasks take a while to start and respond to health checks, you can specify a health check grace period of up to 2,147,483,647 seconds (about 69 years). During that time, the Amazon ECS service scheduler ignores health check status. This grace period can prevent the service scheduler from marking tasks as unhealthy and stopping them before they have time to come up.
80
+ * The period of time, in seconds, that the Amazon Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you do not specify a health check grace period value, the default value of 0 is used. If you do not use any of the health checks, then ``healthCheckGracePeriodSeconds`` is unused.
81
+ If your service has more running tasks than desired, unhealthy tasks in the grace period might be stopped to reach the desired count.
79
82
  */
80
83
  HealthCheckGracePeriodSeconds?: number;
81
84
  /**
@@ -344,7 +347,7 @@ export type DeploymentConfiguration = {
344
347
  MaximumPercent?: number;
345
348
  /**
346
349
  * If a service is using the rolling update (``ECS``) deployment type, the ``minimumHealthyPercent`` represents a lower limit on the number of your service's tasks that must remain in the ``RUNNING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded up to the nearest integer). This parameter enables you to deploy without using additional cluster capacity. For example, if your service has a ``desiredCount`` of four tasks and a ``minimumHealthyPercent`` of 50%, the service scheduler may stop two existing tasks to free up cluster capacity before starting two new tasks.
347
- If any tasks are unhealthy and if ``maximumPercent`` doesn't allow the Amazon ECS scheduler to start replacement tasks, the scheduler stops the unhealthy tasks one-by-one — using the ``minimumHealthyPercent`` as a constraint — to clear up capacity to launch replacement tasks. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html) .
350
+ If any tasks are unhealthy and if ``maximumPercent`` doesn't allow the Amazon ECS scheduler to start replacement tasks, the scheduler stops the unhealthy tasks one-by-one — using the ``minimumHealthyPercent`` as a constraint — to clear up capacity to launch replacement tasks. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
348
351
  For services that *do not* use a load balancer, the following should be noted:
349
352
  + A service is considered healthy if all essential containers within the tasks in the service pass their health checks.
350
353
  + If a task has no essential containers with a health check defined, the service scheduler will wait for 40 seconds after a task reaches a ``RUNNING`` state before the task is counted towards the minimum healthy percent total.
@@ -419,6 +422,10 @@ export type DeploymentController = {
419
422
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentlifecyclehook.html}
420
423
  */
421
424
  export type DeploymentLifecycleHook = {
425
+ /**
426
+ * Use this field to specify custom parameters that ECS passes to your hook target invocations (such as a Lambda function).
427
+ This field must be a JSON object as a string.
428
+ */
422
429
  HookDetails?: string | Record<string, any>;
423
430
  /**
424
431
  * The Amazon Resource Name (ARN) of the hook target. Currently, only Lambda function ARNs are supported.
@@ -125,6 +125,10 @@ export type ImageTestsConfiguration = {
125
125
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html}
126
126
  */
127
127
  export type Schedule = {
128
+ /**
129
+ * The auto-disable policy for the image pipeline.
130
+ */
131
+ AutoDisablePolicy?: any;
128
132
  /**
129
133
  * The condition configures when the pipeline should trigger a new image build.
130
134
  */
@@ -39,6 +39,7 @@ export type LambdaPermissionProperties = {
39
39
  * The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
40
40
  */
41
41
  FunctionUrlAuthType?: "AWS_IAM" | "NONE";
42
+ InvokedViaFunctionUrl?: boolean;
42
43
  /**
43
44
  * The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
44
45
  * @minLength `1`
@@ -94,6 +94,10 @@ export type NetworkManagerConnectPeerAttributes = {
94
94
  * The Connect peer Regions where edges are located.
95
95
  */
96
96
  EdgeLocation: string;
97
+ /**
98
+ * Errors from the last modification of the connect peer.
99
+ */
100
+ LastModificationErrors: string[];
97
101
  /**
98
102
  * State of the connect peer.
99
103
  */
@@ -10,6 +10,13 @@ export type OmicsWorkflowProperties = {
10
10
  * @maxLength `64`
11
11
  */
12
12
  Accelerators?: Accelerators;
13
+ ContainerRegistryMap?: ContainerRegistryMap;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `750`
17
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
18
+ */
19
+ ContainerRegistryMapUri?: string;
13
20
  DefinitionRepository?: DefinitionRepository;
14
21
  /**
15
22
  * @minLength `1`
@@ -120,6 +127,14 @@ export type OmicsWorkflowAttributes = {
120
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
121
128
  */
122
129
  export type Accelerators = "GPU";
130
+ /**
131
+ * Type definition for `AWS::Omics::Workflow.ContainerRegistryMap`.
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html}
133
+ */
134
+ export type ContainerRegistryMap = {
135
+ ImageMappings?: ImageMapping[];
136
+ RegistryMappings?: RegistryMapping[];
137
+ };
123
138
  /**
124
139
  * Type definition for `AWS::Omics::Workflow.DefinitionRepository`.
125
140
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html}
@@ -142,6 +157,54 @@ export type DefinitionRepository = {
142
157
  fullRepositoryId?: string;
143
158
  sourceReference?: SourceReference;
144
159
  };
160
+ /**
161
+ * Type definition for `AWS::Omics::Workflow.ImageMapping`.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html}
163
+ */
164
+ export type ImageMapping = {
165
+ /**
166
+ * @minLength `1`
167
+ * @maxLength `750`
168
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
169
+ */
170
+ DestinationImage?: string;
171
+ /**
172
+ * @minLength `1`
173
+ * @maxLength `750`
174
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
175
+ */
176
+ SourceImage?: string;
177
+ };
178
+ /**
179
+ * Type definition for `AWS::Omics::Workflow.RegistryMapping`.
180
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html}
181
+ */
182
+ export type RegistryMapping = {
183
+ /**
184
+ * @minLength `12`
185
+ * @maxLength `12`
186
+ * @pattern `^[0-9]+$`
187
+ */
188
+ EcrAccountId?: string;
189
+ /**
190
+ * @minLength `1`
191
+ * @maxLength `256`
192
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
193
+ */
194
+ EcrRepositoryPrefix?: string;
195
+ /**
196
+ * @minLength `1`
197
+ * @maxLength `750`
198
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
199
+ */
200
+ UpstreamRegistryUrl?: string;
201
+ /**
202
+ * @minLength `2`
203
+ * @maxLength `30`
204
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
205
+ */
206
+ UpstreamRepositoryPrefix?: string;
207
+ };
145
208
  /**
146
209
  * Type definition for `AWS::Omics::Workflow.SourceReference`.
147
210
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html}
@@ -10,6 +10,13 @@ export type OmicsWorkflowVersionProperties = {
10
10
  * @maxLength `64`
11
11
  */
12
12
  Accelerators?: Accelerators;
13
+ ContainerRegistryMap?: ContainerRegistryMap;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `750`
17
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
18
+ */
19
+ ContainerRegistryMapUri?: string;
13
20
  DefinitionRepository?: DefinitionRepository;
14
21
  /**
15
22
  * @minLength `1`
@@ -123,6 +130,14 @@ export type OmicsWorkflowVersionAttributes = {
123
130
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
124
131
  */
125
132
  export type Accelerators = "GPU";
133
+ /**
134
+ * Type definition for `AWS::Omics::WorkflowVersion.ContainerRegistryMap`.
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html}
136
+ */
137
+ export type ContainerRegistryMap = {
138
+ ImageMappings?: ImageMapping[];
139
+ RegistryMappings?: RegistryMapping[];
140
+ };
126
141
  /**
127
142
  * Type definition for `AWS::Omics::WorkflowVersion.DefinitionRepository`.
128
143
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html}
@@ -145,6 +160,54 @@ export type DefinitionRepository = {
145
160
  fullRepositoryId?: string;
146
161
  sourceReference?: SourceReference;
147
162
  };
163
+ /**
164
+ * Type definition for `AWS::Omics::WorkflowVersion.ImageMapping`.
165
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html}
166
+ */
167
+ export type ImageMapping = {
168
+ /**
169
+ * @minLength `1`
170
+ * @maxLength `750`
171
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
172
+ */
173
+ DestinationImage?: string;
174
+ /**
175
+ * @minLength `1`
176
+ * @maxLength `750`
177
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
178
+ */
179
+ SourceImage?: string;
180
+ };
181
+ /**
182
+ * Type definition for `AWS::Omics::WorkflowVersion.RegistryMapping`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html}
184
+ */
185
+ export type RegistryMapping = {
186
+ /**
187
+ * @minLength `12`
188
+ * @maxLength `12`
189
+ * @pattern `^[0-9]+$`
190
+ */
191
+ EcrAccountId?: string;
192
+ /**
193
+ * @minLength `1`
194
+ * @maxLength `256`
195
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
196
+ */
197
+ EcrRepositoryPrefix?: string;
198
+ /**
199
+ * @minLength `1`
200
+ * @maxLength `750`
201
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
202
+ */
203
+ UpstreamRegistryUrl?: string;
204
+ /**
205
+ * @minLength `2`
206
+ * @maxLength `30`
207
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
208
+ */
209
+ UpstreamRepositoryPrefix?: string;
210
+ };
148
211
  /**
149
212
  * Type definition for `AWS::Omics::WorkflowVersion.SourceReference`.
150
213
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html}
@@ -41,9 +41,9 @@ export type PCSComputeNodeGroupProperties = {
41
41
  */
42
42
  Name?: string;
43
43
  /**
44
- * 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.
44
+ * Specifies how EC2 instances are purchased on your behalf. AWS PCS supports On-Demand, Spot and Capacity Block 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.
45
45
  */
46
- PurchaseOption?: "ONDEMAND" | "SPOT";
46
+ PurchaseOption?: "ONDEMAND" | "SPOT" | "CAPACITY_BLOCK";
47
47
  /**
48
48
  * Specifies the boundaries of the compute node group auto scaling.
49
49
  */
@@ -1556,6 +1556,8 @@ export type DashboardPublishOptions = {
1556
1556
  */
1557
1557
  DataPointTooltipOption?: DataPointTooltipOption;
1558
1558
  DataQAEnabledOption?: DataQAEnabledOption;
1559
+ DataStoriesSharingOption?: DataStoriesSharingOption;
1560
+ ExecutiveSummaryOption?: ExecutiveSummaryOption;
1559
1561
  /**
1560
1562
  * <p>Export to .csv option.</p>
1561
1563
  */
@@ -1935,6 +1937,13 @@ export type DataSetReference = {
1935
1937
  */
1936
1938
  DataSetPlaceholder: string;
1937
1939
  };
1940
+ /**
1941
+ * Type definition for `AWS::QuickSight::Dashboard.DataStoriesSharingOption`.
1942
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datastoriessharingoption.html}
1943
+ */
1944
+ export type DataStoriesSharingOption = {
1945
+ AvailabilityStatus?: DashboardBehavior;
1946
+ };
1938
1947
  /**
1939
1948
  * Type definition for `AWS::QuickSight::Dashboard.DateAggregationFunction`.
1940
1949
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dateaggregationfunction.html}
@@ -2401,6 +2410,13 @@ export type ExcludePeriodConfiguration = {
2401
2410
  Granularity: TimeGranularity;
2402
2411
  Status?: WidgetStatus;
2403
2412
  };
2413
+ /**
2414
+ * Type definition for `AWS::QuickSight::Dashboard.ExecutiveSummaryOption`.
2415
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-executivesummaryoption.html}
2416
+ */
2417
+ export type ExecutiveSummaryOption = {
2418
+ AvailabilityStatus?: DashboardBehavior;
2419
+ };
2404
2420
  /**
2405
2421
  * Type definition for `AWS::QuickSight::Dashboard.ExplicitHierarchy`.
2406
2422
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-explicithierarchy.html}
@@ -277,6 +277,7 @@ export type RDSDBClusterProperties = {
277
277
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
278
278
  */
279
279
  ManageMasterUserPassword?: boolean;
280
+ MasterUserAuthenticationType?: string;
280
281
  /**
281
282
  * The master password for the DB instance.
282
283
  If you specify the ``SourceDBClusterIdentifier``, ``SnapshotIdentifier``, or ``GlobalClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, the snapshot, or the primary DB cluster for the global database cluster, respectively.
@@ -510,6 +510,7 @@ export type RDSDBInstanceProperties = {
510
510
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
511
511
  */
512
512
  ManageMasterUserPassword?: boolean;
513
+ MasterUserAuthenticationType?: string;
513
514
  /**
514
515
  * The password for the master user. The password can include any printable ASCII character except "/", """, or "@".
515
516
  *Amazon Aurora*
@@ -5,23 +5,28 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
6
6
  */
7
7
  export type ServiceCatalogPortfolioProductAssociationProperties = {
8
+ /**
9
+ * The language code.
10
+ */
8
11
  AcceptLanguage?: string;
9
- PortfolioId: string;
10
- ProductId: string;
12
+ /**
13
+ * The portfolio identifier.
14
+ */
15
+ PortfolioId?: string;
16
+ /**
17
+ * The product identifier.
18
+ */
19
+ ProductId?: string;
20
+ /**
21
+ * The identifier of the source portfolio. The source portfolio must be a portfolio imported from a different account than the one creating the association. This account must have previously shared this portfolio with the account creating the association.
22
+ */
11
23
  SourcePortfolioId?: string;
12
24
  };
13
- /**
14
- * Attribute type definition for `AWS::ServiceCatalog::PortfolioProductAssociation`.
15
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#aws-resource-servicecatalog-portfolioproductassociation-return-values}
16
- */
17
- export type ServiceCatalogPortfolioProductAssociationAttributes = {
18
- Id: string;
19
- };
20
25
  /**
21
26
  * Resource Type definition for AWS::ServiceCatalog::PortfolioProductAssociation
22
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
23
28
  */
24
- export declare class ServiceCatalogPortfolioProductAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioProductAssociation", ServiceCatalogPortfolioProductAssociationProperties, ServiceCatalogPortfolioProductAssociationAttributes> {
29
+ export declare class ServiceCatalogPortfolioProductAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioProductAssociation", ServiceCatalogPortfolioProductAssociationProperties, Record<string, never>> {
25
30
  static readonly Type = "AWS::ServiceCatalog::PortfolioProductAssociation";
26
31
  constructor(logicalId: string, properties: ServiceCatalogPortfolioProductAssociationProperties, options?: $ResourceOptions);
27
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.430",
3
+ "version": "0.1.432",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },