@propulsionworks/cloudformation 0.1.27 → 0.1.28

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.
Files changed (35) hide show
  1. package/out/exports/resources.generated/aws-bcmdataexports-export.d.ts +9 -9
  2. package/out/exports/resources.generated/aws-bedrockagentcore-browsercustom.d.ts +9 -4
  3. package/out/exports/resources.generated/aws-bedrockagentcore-codeinterpretercustom.d.ts +9 -5
  4. package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +11 -2
  5. package/out/exports/resources.generated/aws-bedrockagentcore-runtimeendpoint.d.ts +5 -2
  6. package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +0 -4
  7. package/out/exports/resources.generated/aws-cur-reportdefinition.d.ts +5 -1
  8. package/out/exports/resources.generated/aws-datasync-locationsmb.d.ts +50 -0
  9. package/out/exports/resources.generated/aws-datazone-formtype.d.ts +106 -0
  10. package/out/exports/resources.generated/aws-datazone-owner.d.ts +15 -2
  11. package/out/exports/resources.generated/aws-datazone-projectmembership.d.ts +19 -2
  12. package/out/exports/resources.generated/aws-ec2-localgatewayvirtualinterface.d.ts +82 -0
  13. package/out/exports/resources.generated/aws-ec2-localgatewayvirtualinterfacegroup.d.ts +62 -0
  14. package/out/exports/resources.generated/aws-ec2-networkinterfaceattachment.d.ts +5 -0
  15. package/out/exports/resources.generated/aws-ec2-vpc.d.ts +2 -2
  16. package/out/exports/resources.generated/aws-ec2-vpccidrblock.d.ts +2 -2
  17. package/out/exports/resources.generated/aws-entityresolution-idmappingworkflow.d.ts +4 -0
  18. package/out/exports/resources.generated/aws-gamelift-containerfleet.d.ts +2 -2
  19. package/out/exports/resources.generated/aws-gamelift-fleet.d.ts +1 -1
  20. package/out/exports/resources.generated/aws-imagebuilder-imagepipeline.d.ts +5 -0
  21. package/out/exports/resources.generated/aws-lambda-function.d.ts +2 -2
  22. package/out/exports/resources.generated/aws-lambda-permission.d.ts +4 -0
  23. package/out/exports/resources.generated/aws-networkmanager-connectpeer.d.ts +5 -0
  24. package/out/exports/resources.generated/aws-omics-workflow.d.ts +88 -0
  25. package/out/exports/resources.generated/aws-omics-workflowversion.d.ts +88 -0
  26. package/out/exports/resources.generated/aws-opensearchservice-domain.d.ts +1 -0
  27. package/out/exports/resources.generated/aws-pcs-computenodegroup.d.ts +1 -1
  28. package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +8 -0
  29. package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +32 -0
  30. package/out/exports/resources.generated/aws-rds-dbcluster.d.ts +14 -0
  31. package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +12 -0
  32. package/out/exports/resources.generated/aws-rds-dbproxy.d.ts +16 -1
  33. package/out/exports/resources.generated/aws-rds-dbproxyendpoint.d.ts +5 -0
  34. package/out/exports/resources.generated/aws-servicecatalog-portfolioproductassociation.d.ts +4 -13
  35. package/package.json +1 -1
@@ -0,0 +1,62 @@
1
+ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
+ /**
3
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html}
4
+ */
5
+ export type EC2LocalGatewayVirtualInterfaceGroup = ResourceDefinitionWithAttributes<"AWS::EC2::LocalGatewayVirtualInterfaceGroup", EC2LocalGatewayVirtualInterfaceGroupProps, EC2LocalGatewayVirtualInterfaceGroupAttribs>;
6
+ /**
7
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html}
8
+ */
9
+ export type EC2LocalGatewayVirtualInterfaceGroupProps = {
10
+ /**
11
+ * The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP)
12
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localbgpasn}
13
+ */
14
+ LocalBgpAsn?: number | undefined;
15
+ /**
16
+ * The extended 32-bit ASN for the local BGP configuration
17
+ * @format int64
18
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localbgpasnextended}
19
+ */
20
+ LocalBgpAsnExtended?: number | undefined;
21
+ /**
22
+ * The ID of the local gateway
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayid}
24
+ */
25
+ LocalGatewayId: string;
26
+ /**
27
+ * The tags assigned to the virtual interface group
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-tags}
29
+ */
30
+ Tags?: Tag[] | undefined;
31
+ };
32
+ /**
33
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#aws-resource-ec2-localgatewayvirtualinterfacegroup-return-values}
34
+ */
35
+ export type EC2LocalGatewayVirtualInterfaceGroupAttribs = {
36
+ /**
37
+ * The current state of the local gateway virtual interface group
38
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-configurationstate}
39
+ */
40
+ ConfigurationState: string;
41
+ /**
42
+ * The Amazon Resource Number (ARN) of the local gateway virtual interface group
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayvirtualinterfacegrouparn}
44
+ */
45
+ LocalGatewayVirtualInterfaceGroupArn: string;
46
+ /**
47
+ * The ID of the virtual interface group
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayvirtualinterfacegroupid}
49
+ */
50
+ LocalGatewayVirtualInterfaceGroupId: string;
51
+ /**
52
+ * The IDs of the virtual interfaces
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayvirtualinterfaceids}
54
+ */
55
+ LocalGatewayVirtualInterfaceIds: string[];
56
+ /**
57
+ * The ID of the Amazon Web Services account that owns the local gateway virtual interface group
58
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-ownerid}
59
+ */
60
+ OwnerId: string;
61
+ };
62
+ //# sourceMappingURL=aws-ec2-localgatewayvirtualinterfacegroup.d.ts.map
@@ -20,6 +20,11 @@ export type EC2NetworkInterfaceAttachmentProps = {
20
20
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#cfn-ec2-networkinterfaceattachment-deviceindex}
21
21
  */
22
22
  DeviceIndex: string;
23
+ /**
24
+ * The number of ENA queues created with the instance.
25
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#cfn-ec2-networkinterfaceattachment-enaqueuecount}
26
+ */
27
+ EnaQueueCount?: number | undefined;
23
28
  /**
24
29
  * Configures ENA Express for the network interface that this action attaches to the instance.
25
30
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#cfn-ec2-networkinterfaceattachment-enasrdspecification}
@@ -2,7 +2,7 @@ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
3
  * Specifies a virtual private cloud (VPC).
4
4
  *
5
- * To add an IPv6 CIDR block to the VPC, see [AWS::EC2::VPCCidrBlock](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html) .
5
+ * A VPC must have an associated IPv4 CIDR block. You can specify an IPv4 CIDR block or an IPAM-allocated IPv4 CIDR block. To associate an IPv6 CIDR block with the VPC, see [AWS::EC2::VPCCidrBlock](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html) .
6
6
  *
7
7
  * For more information, see [Virtual private clouds (VPC)](https://docs.aws.amazon.com/vpc/latest/userguide/configure-your-vpc.html) in the *Amazon VPC User Guide* .
8
8
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html}
@@ -11,7 +11,7 @@ export type EC2VPC = ResourceDefinitionWithAttributes<"AWS::EC2::VPC", EC2VPCPro
11
11
  /**
12
12
  * Specifies a virtual private cloud (VPC).
13
13
  *
14
- * To add an IPv6 CIDR block to the VPC, see [AWS::EC2::VPCCidrBlock](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html) .
14
+ * A VPC must have an associated IPv4 CIDR block. You can specify an IPv4 CIDR block or an IPAM-allocated IPv4 CIDR block. To associate an IPv6 CIDR block with the VPC, see [AWS::EC2::VPCCidrBlock](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html) .
15
15
  *
16
16
  * For more information, see [Virtual private clouds (VPC)](https://docs.aws.amazon.com/vpc/latest/userguide/configure-your-vpc.html) in the *Amazon VPC User Guide* .
17
17
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html}
@@ -2,7 +2,7 @@ import type { ResourceDefinitionWithAttributes } from "../main.ts";
2
2
  /**
3
3
  * Associates a CIDR block with your VPC.
4
4
  *
5
- * You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
5
+ * A VPC must have an associated IPv4 CIDR block. You can optionally associate additional IPv4 CIDR blocks with a VPC. You can optionally associate an IPv6 CIDR block with a VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
6
6
  *
7
7
  * For more information, see [VPC CIDR blocks](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-cidr-blocks.html) in the *Amazon VPC User Guide* .
8
8
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html}
@@ -11,7 +11,7 @@ export type EC2VPCCidrBlock = ResourceDefinitionWithAttributes<"AWS::EC2::VPCCid
11
11
  /**
12
12
  * Associates a CIDR block with your VPC.
13
13
  *
14
- * You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
14
+ * A VPC must have an associated IPv4 CIDR block. You can optionally associate additional IPv4 CIDR blocks with a VPC. You can optionally associate an IPv6 CIDR block with a VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
15
15
  *
16
16
  * For more information, see [VPC CIDR blocks](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-cidr-blocks.html) in the *Amazon VPC User Guide* .
17
17
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html}
@@ -127,6 +127,10 @@ export type IdMappingTechniques = {
127
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-idmappingtype}
128
128
  */
129
129
  IdMappingType?: "PROVIDER" | "RULE_BASED" | undefined;
130
+ /**
131
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-normalizationversion}
132
+ */
133
+ NormalizationVersion?: string | undefined;
130
134
  /**
131
135
  * An object which defines any additional configurations required by the provider service.
132
136
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html#cfn-entityresolution-idmappingworkflow-idmappingtechniques-providerproperties}
@@ -289,11 +289,11 @@ export type IpPermission = {
289
289
  */
290
290
  export type LocationCapacity = {
291
291
  /**
292
- * The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits. If any auto-scaling policy is defined for the container fleet, the desired instance will only be applied once during fleet creation and will be ignored in updates to avoid conflicts with auto-scaling. During updates with any auto-scaling policy defined, if current desired instance is lower than the new MinSize, it will be increased to the new MinSize; if current desired instance is larger than the new MaxSize, it will be decreased to the new MaxSize.
292
+ * Defaults to MinSize if not defined. The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits. If any auto-scaling policy is defined for the container fleet, the desired instance will only be applied once during fleet creation and will be ignored in updates to avoid conflicts with auto-scaling. During updates with any auto-scaling policy defined, if current desired instance is lower than the new MinSize, it will be increased to the new MinSize; if current desired instance is larger than the new MaxSize, it will be decreased to the new MaxSize.
293
293
  * @min 0
294
294
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-locationcapacity.html#cfn-gamelift-containerfleet-locationcapacity-desiredec2instances}
295
295
  */
296
- DesiredEC2Instances: number;
296
+ DesiredEC2Instances?: number | undefined;
297
297
  /**
298
298
  * The maximum value that is allowed for the fleet's instance count for a location.
299
299
  * @min 0
@@ -286,7 +286,7 @@ export type LocationCapacity = {
286
286
  * @min 0
287
287
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-locationcapacity.html#cfn-gamelift-fleet-locationcapacity-desiredec2instances}
288
288
  */
289
- DesiredEC2Instances: number;
289
+ DesiredEC2Instances?: number | undefined;
290
290
  /**
291
291
  * The maximum number of instances that are allowed in the specified fleet location. If this parameter is not set, the default is 1.
292
292
  * @min 0
@@ -223,6 +223,11 @@ export type ImageTestsConfiguration = {
223
223
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html}
224
224
  */
225
225
  export type Schedule = {
226
+ /**
227
+ * The auto-disable policy for the image pipeline.
228
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-autodisablepolicy}
229
+ */
230
+ AutoDisablePolicy?: unknown;
226
231
  /**
227
232
  * The condition configures when the pipeline should trigger a new image build. When the `pipelineExecutionStartCondition` is set to `EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE` , and you use semantic version filters on the base image or components in your image recipe, Image Builder will build a new image only when there are new versions of the image or components in your recipe that match the semantic version filter. When it is set to `EXPRESSION_MATCH_ONLY` , it will build a new image every time the CRON expression matches the current time. For semantic version syntax, see [CreateComponent](https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_CreateComponent.html) in the *Image Builder API Reference* .
228
233
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-pipelineexecutionstartcondition}
@@ -50,7 +50,7 @@ export type LambdaFunctionProps = {
50
50
  /**
51
51
  * To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration
52
52
  * includes a set of signing profiles, which define the trusted publishers for this function.
53
- * @pattern arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:code-signing-config:csc-[a-z0-9]{17}
53
+ * @pattern arn:(aws[a-zA-Z-]*)?:lambda:(eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:code-signing-config:csc-[a-z0-9]{17}
54
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html#cfn-lambda-function-codesigningconfigarn}
55
55
  */
56
56
  CodeSigningConfigArn?: string | undefined;
@@ -319,7 +319,7 @@ export type FileSystemConfig = {
319
319
  /**
320
320
  * The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
321
321
  * @maxLength 200
322
- * @pattern ^arn:aws[a-zA-Z-]*:elasticfilesystem:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:access-point/fsap-[a-f0-9]{17}$
322
+ * @pattern ^arn:aws[a-zA-Z-]*:elasticfilesystem:(eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:access-point/fsap-[a-f0-9]{17}$
323
323
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-filesystemconfig.html#cfn-lambda-function-filesystemconfig-arn}
324
324
  */
325
325
  Arn: string;
@@ -56,6 +56,10 @@ export type LambdaPermissionProps = {
56
56
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-functionurlauthtype}
57
57
  */
58
58
  FunctionUrlAuthType?: "AWS_IAM" | "NONE" | undefined;
59
+ /**
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html#cfn-lambda-permission-invokedviafunctionurl}
61
+ */
62
+ InvokedViaFunctionUrl?: boolean | undefined;
59
63
  /**
60
64
  * 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.
61
65
  * @minLength 1
@@ -69,6 +69,11 @@ export type NetworkManagerConnectPeerAttribs = {
69
69
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectpeer.html#cfn-networkmanager-connectpeer-edgelocation}
70
70
  */
71
71
  EdgeLocation: string;
72
+ /**
73
+ * Describes the error associated with the attachment request.
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectpeer.html#cfn-networkmanager-connectpeer-lastmodificationerrors}
75
+ */
76
+ LastModificationErrors: string[];
72
77
  /**
73
78
  * The state of the Connect peer. This will be: `REJECTED` | `PENDING_ATTACHMENT_ACCEPTANCE` | `CREATING` | `FAILED` | `AVAILABLE` | `UPDATING` | `PENDING_NETWORK_UPDATE` | `PENDING_TAG_ACCEPTANCE` | `DELETING` .
74
79
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectpeer.html#cfn-networkmanager-connectpeer-state}
@@ -31,6 +31,18 @@ export type OmicsWorkflowProps = {
31
31
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-accelerators}
32
32
  */
33
33
  Accelerators?: Accelerators | undefined;
34
+ /**
35
+ * Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see [Container images](https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html) in the *AWS HealthOmics User Guide* .
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-containerregistrymap}
37
+ */
38
+ ContainerRegistryMap?: ContainerRegistryMap | undefined;
39
+ /**
40
+ * @minLength 1
41
+ * @maxLength 750
42
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-containerregistrymapuri}
44
+ */
45
+ ContainerRegistryMapUri?: string | undefined;
34
46
  /**
35
47
  * Contains information about a source code repository that hosts the workflow definition files.
36
48
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-definitionrepository}
@@ -173,6 +185,22 @@ export type OmicsWorkflowAttribs = {
173
185
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
174
186
  */
175
187
  export type Accelerators = "GPU";
188
+ /**
189
+ * Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see [Container images](https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html) in the *AWS HealthOmics User Guide* .
190
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html}
191
+ */
192
+ export type ContainerRegistryMap = {
193
+ /**
194
+ * Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.
195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html#cfn-omics-workflow-containerregistrymap-imagemappings}
196
+ */
197
+ ImageMappings?: ImageMapping[] | undefined;
198
+ /**
199
+ * Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.
200
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html#cfn-omics-workflow-containerregistrymap-registrymappings}
201
+ */
202
+ RegistryMappings?: RegistryMapping[] | undefined;
203
+ };
176
204
  /**
177
205
  * Contains information about a source code repository that hosts the workflow definition files.
178
206
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html}
@@ -203,6 +231,66 @@ export type DefinitionRepository = {
203
231
  */
204
232
  sourceReference?: SourceReference | undefined;
205
233
  };
234
+ /**
235
+ * Specifies image mappings that workflow tasks can use. For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository.
236
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html}
237
+ */
238
+ export type ImageMapping = {
239
+ /**
240
+ * Specifies the URI of the corresponding image in the private ECR registry.
241
+ * @minLength 1
242
+ * @maxLength 750
243
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
244
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html#cfn-omics-workflow-imagemapping-destinationimage}
245
+ */
246
+ DestinationImage?: string | undefined;
247
+ /**
248
+ * Specifies the URI of the source image in the upstream registry.
249
+ * @minLength 1
250
+ * @maxLength 750
251
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
252
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html#cfn-omics-workflow-imagemapping-sourceimage}
253
+ */
254
+ SourceImage?: string | undefined;
255
+ };
256
+ /**
257
+ * If you are using the ECR pull through cache feature, the registry mapping maps between the ECR repository and the upstream registry where container images are pulled and synchronized.
258
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html}
259
+ */
260
+ export type RegistryMapping = {
261
+ /**
262
+ * Account ID of the account that owns the upstream container image.
263
+ * @minLength 12
264
+ * @maxLength 12
265
+ * @pattern ^[0-9]+$
266
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-ecraccountid}
267
+ */
268
+ EcrAccountId?: string | undefined;
269
+ /**
270
+ * The repository prefix to use in the ECR private repository.
271
+ * @minLength 1
272
+ * @maxLength 256
273
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
274
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-ecrrepositoryprefix}
275
+ */
276
+ EcrRepositoryPrefix?: string | undefined;
277
+ /**
278
+ * The URI of the upstream registry.
279
+ * @minLength 1
280
+ * @maxLength 750
281
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
282
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-upstreamregistryurl}
283
+ */
284
+ UpstreamRegistryUrl?: string | undefined;
285
+ /**
286
+ * The repository prefix of the corresponding repository in the upstream registry.
287
+ * @minLength 2
288
+ * @maxLength 30
289
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
290
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-upstreamrepositoryprefix}
291
+ */
292
+ UpstreamRepositoryPrefix?: string | undefined;
293
+ };
206
294
  /**
207
295
  * Contains information about the source reference in a code repository, such as a branch, tag, or commit.
208
296
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html}
@@ -29,6 +29,18 @@ export type OmicsWorkflowVersionProps = {
29
29
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-accelerators}
30
30
  */
31
31
  Accelerators?: Accelerators | undefined;
32
+ /**
33
+ * Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see [Container images](https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html) in the *AWS HealthOmics User Guide* .
34
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-containerregistrymap}
35
+ */
36
+ ContainerRegistryMap?: ContainerRegistryMap | undefined;
37
+ /**
38
+ * @minLength 1
39
+ * @maxLength 750
40
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
41
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-containerregistrymapuri}
42
+ */
43
+ ContainerRegistryMapUri?: string | undefined;
32
44
  /**
33
45
  * Contains information about a source code repository that hosts the workflow definition files.
34
46
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-definitionrepository}
@@ -170,6 +182,22 @@ export type OmicsWorkflowVersionAttribs = {
170
182
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
171
183
  */
172
184
  export type Accelerators = "GPU";
185
+ /**
186
+ * Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see [Container images](https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html) in the *AWS HealthOmics User Guide* .
187
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html}
188
+ */
189
+ export type ContainerRegistryMap = {
190
+ /**
191
+ * Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.
192
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html#cfn-omics-workflowversion-containerregistrymap-imagemappings}
193
+ */
194
+ ImageMappings?: ImageMapping[] | undefined;
195
+ /**
196
+ * Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.
197
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html#cfn-omics-workflowversion-containerregistrymap-registrymappings}
198
+ */
199
+ RegistryMappings?: RegistryMapping[] | undefined;
200
+ };
173
201
  /**
174
202
  * Contains information about a source code repository that hosts the workflow definition files.
175
203
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html}
@@ -200,6 +228,66 @@ export type DefinitionRepository = {
200
228
  */
201
229
  sourceReference?: SourceReference | undefined;
202
230
  };
231
+ /**
232
+ * Specifies image mappings that workflow tasks can use. For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository.
233
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html}
234
+ */
235
+ export type ImageMapping = {
236
+ /**
237
+ * Specifies the URI of the corresponding image in the private ECR registry.
238
+ * @minLength 1
239
+ * @maxLength 750
240
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
241
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html#cfn-omics-workflowversion-imagemapping-destinationimage}
242
+ */
243
+ DestinationImage?: string | undefined;
244
+ /**
245
+ * Specifies the URI of the source image in the upstream registry.
246
+ * @minLength 1
247
+ * @maxLength 750
248
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
249
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html#cfn-omics-workflowversion-imagemapping-sourceimage}
250
+ */
251
+ SourceImage?: string | undefined;
252
+ };
253
+ /**
254
+ * If you are using the ECR pull through cache feature, the registry mapping maps between the ECR repository and the upstream registry where container images are pulled and synchronized.
255
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html}
256
+ */
257
+ export type RegistryMapping = {
258
+ /**
259
+ * Account ID of the account that owns the upstream container image.
260
+ * @minLength 12
261
+ * @maxLength 12
262
+ * @pattern ^[0-9]+$
263
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-ecraccountid}
264
+ */
265
+ EcrAccountId?: string | undefined;
266
+ /**
267
+ * The repository prefix to use in the ECR private repository.
268
+ * @minLength 1
269
+ * @maxLength 256
270
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
271
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-ecrrepositoryprefix}
272
+ */
273
+ EcrRepositoryPrefix?: string | undefined;
274
+ /**
275
+ * The URI of the upstream registry.
276
+ * @minLength 1
277
+ * @maxLength 750
278
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
279
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-upstreamregistryurl}
280
+ */
281
+ UpstreamRegistryUrl?: string | undefined;
282
+ /**
283
+ * The repository prefix of the corresponding repository in the upstream registry.
284
+ * @minLength 2
285
+ * @maxLength 30
286
+ * @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
287
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-upstreamrepositoryprefix}
288
+ */
289
+ UpstreamRepositoryPrefix?: string | undefined;
290
+ };
203
291
  /**
204
292
  * Contains information about the source reference in a code repository, such as a branch, tag, or commit.
205
293
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html}
@@ -183,6 +183,7 @@ export type AdvancedSecurityOptionsInput = {
183
183
  */
184
184
  Enabled?: boolean | undefined;
185
185
  /**
186
+ * Input configuration for IAM identity federation within advanced security options.
186
187
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-advancedsecurityoptionsinput.html#cfn-opensearchservice-domain-advancedsecurityoptionsinput-iamfederationoptions}
187
188
  */
188
189
  IAMFederationOptions?: IAMFederationOptions | undefined;
@@ -54,7 +54,7 @@ export type PCSComputeNodeGroupProps = {
54
54
  * Specifies how EC2 instances are purchased on your behalf. AWS AWS PCS supports On-Demand and Spot instances. For more information, see [Instance purchasing options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-purchasing-options.html) in the *Amazon Elastic Compute Cloud User Guide* . If you don't provide this option, it defaults to On-Demand.
55
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#cfn-pcs-computenodegroup-purchaseoption}
56
56
  */
57
- PurchaseOption?: "ONDEMAND" | "SPOT" | undefined;
57
+ PurchaseOption?: "ONDEMAND" | "SPOT" | "CAPACITY_BLOCK" | undefined;
58
58
  /**
59
59
  * Specifies the boundaries of the compute node group auto scaling.
60
60
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#cfn-pcs-computenodegroup-scalingconfiguration}
@@ -56,6 +56,10 @@ export type Capabilities = {
56
56
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-addorrunanomalydetectionforanalyses}
57
57
  */
58
58
  AddOrRunAnomalyDetectionForAnalyses?: CapabilityState | undefined;
59
+ /**
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-analysis}
61
+ */
62
+ Analysis?: CapabilityState | undefined;
59
63
  /**
60
64
  * The ability to create and update email reports.
61
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-createandupdatedashboardemailreports}
@@ -91,6 +95,10 @@ export type Capabilities = {
91
95
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-createsharedfolders}
92
96
  */
93
97
  CreateSharedFolders?: CapabilityState | undefined;
98
+ /**
99
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-dashboard}
100
+ */
101
+ Dashboard?: CapabilityState | undefined;
94
102
  /**
95
103
  * The ability to export to CSV files from the UI.
96
104
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html#cfn-quicksight-custompermissions-capabilities-exporttocsv}
@@ -2492,6 +2492,16 @@ export type DashboardPublishOptions = {
2492
2492
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardpublishoptions.html#cfn-quicksight-dashboard-dashboardpublishoptions-dataqaenabledoption}
2493
2493
  */
2494
2494
  DataQAEnabledOption?: DataQAEnabledOption | undefined;
2495
+ /**
2496
+ * Data stories sharing option.
2497
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardpublishoptions.html#cfn-quicksight-dashboard-dashboardpublishoptions-datastoriessharingoption}
2498
+ */
2499
+ DataStoriesSharingOption?: DataStoriesSharingOption | undefined;
2500
+ /**
2501
+ * Executive summary option.
2502
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardpublishoptions.html#cfn-quicksight-dashboard-dashboardpublishoptions-executivesummaryoption}
2503
+ */
2504
+ ExecutiveSummaryOption?: ExecutiveSummaryOption | undefined;
2495
2505
  /**
2496
2506
  * Export to .csv option.
2497
2507
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardpublishoptions.html#cfn-quicksight-dashboard-dashboardpublishoptions-exporttocsvoption}
@@ -2980,6 +2990,17 @@ export type DataSetReference = {
2980
2990
  */
2981
2991
  DataSetPlaceholder: string;
2982
2992
  };
2993
+ /**
2994
+ * Executive summary option.
2995
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datastoriessharingoption.html}
2996
+ */
2997
+ export type DataStoriesSharingOption = {
2998
+ /**
2999
+ * Availability status.
3000
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datastoriessharingoption.html#cfn-quicksight-dashboard-datastoriessharingoption-availabilitystatus}
3001
+ */
3002
+ AvailabilityStatus?: DashboardBehavior | undefined;
3003
+ };
2983
3004
  /**
2984
3005
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dateaggregationfunction.html}
2985
3006
  */
@@ -3845,6 +3866,17 @@ export type ExcludePeriodConfiguration = {
3845
3866
  */
3846
3867
  Status?: WidgetStatus | undefined;
3847
3868
  };
3869
+ /**
3870
+ * Data stories sharing option.
3871
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-executivesummaryoption.html}
3872
+ */
3873
+ export type ExecutiveSummaryOption = {
3874
+ /**
3875
+ * Availability status.
3876
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-executivesummaryoption.html#cfn-quicksight-dashboard-executivesummaryoption-availabilitystatus}
3877
+ */
3878
+ AvailabilityStatus?: DashboardBehavior | undefined;
3879
+ };
3848
3880
  /**
3849
3881
  * The option that determines the hierarchy of the fields that are built within a visual's field wells. These fields can't be duplicated to other visuals.
3850
3882
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-explicithierarchy.html}
@@ -451,6 +451,20 @@ export type RDSDBClusterProps = {
451
451
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-managemasteruserpassword}
452
452
  */
453
453
  ManageMasterUserPassword?: boolean | undefined;
454
+ /**
455
+ * Specifies the authentication type for the master user. With IAM master user authentication, you can configure the master DB user with IAM database authentication when you create a DB cluster.
456
+ *
457
+ * You can specify one of the following values:
458
+ *
459
+ * - `password` - Use standard database authentication with a password.
460
+ * - `iam-db-auth` - Use IAM database authentication for the master user.
461
+ *
462
+ * Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
463
+ *
464
+ * This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.
465
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserauthenticationtype}
466
+ */
467
+ MasterUserAuthenticationType?: string | undefined;
454
468
  /**
455
469
  * The master password for the DB instance.
456
470
  *
@@ -766,6 +766,18 @@ export type RDSDBInstanceProps = {
766
766
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-managemasteruserpassword}
767
767
  */
768
768
  ManageMasterUserPassword?: boolean | undefined;
769
+ /**
770
+ * Specifies the authentication type for the master user. With IAM master user authentication, you can configure the master DB user with IAM database authentication when you create a DB instance.
771
+ *
772
+ * You can specify one of the following values:
773
+ *
774
+ * - `password` - Use standard database authentication with a password.
775
+ * - `iam-db-auth` - Use IAM database authentication for the master user.
776
+ *
777
+ * This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.
778
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-masteruserauthenticationtype}
779
+ */
780
+ MasterUserAuthenticationType?: string | undefined;
769
781
  /**
770
782
  * The password for the master user. The password can include any printable ASCII character except "/", """, or "@".
771
783
  *
@@ -33,7 +33,7 @@ export type RDSDBProxyProps = {
33
33
  * The authorization mechanism that the proxy uses.
34
34
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-auth}
35
35
  */
36
- Auth: AuthFormat[];
36
+ Auth?: AuthFormat[] | undefined;
37
37
  /**
38
38
  * The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region . An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.
39
39
  * @maxLength 64
@@ -46,6 +46,16 @@ export type RDSDBProxyProps = {
46
46
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-debuglogging}
47
47
  */
48
48
  DebugLogging?: boolean | undefined;
49
+ /**
50
+ * The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-defaultauthscheme}
52
+ */
53
+ DefaultAuthScheme?: "IAM_AUTH" | "NONE" | undefined;
54
+ /**
55
+ * The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-endpointnetworktype}
57
+ */
58
+ EndpointNetworkType?: "IPV4" | "IPV6" | "DUAL" | undefined;
49
59
  /**
50
60
  * The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases, specify `MYSQL` . For Aurora PostgreSQL and RDS for PostgreSQL databases, specify `POSTGRESQL` . For RDS for Microsoft SQL Server, specify `SQLSERVER` .
51
61
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-enginefamily}
@@ -71,6 +81,11 @@ export type RDSDBProxyProps = {
71
81
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-tags}
72
82
  */
73
83
  Tags?: TagFormat[] | undefined;
84
+ /**
85
+ * The network type that the proxy uses to connect to the target database. The network type determines the IP version that the proxy uses for connections to the database.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html#cfn-rds-dbproxy-targetconnectionnetworktype}
87
+ */
88
+ TargetConnectionNetworkType?: "IPV4" | "IPV6" | undefined;
74
89
  /**
75
90
  * One or more VPC security group IDs to associate with the new proxy.
76
91
  *
@@ -27,6 +27,11 @@ export type RDSDBProxyEndpointProps = {
27
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxyendpoint.html#cfn-rds-dbproxyendpoint-dbproxyname}
28
28
  */
29
29
  DBProxyName: string;
30
+ /**
31
+ * The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.
32
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxyendpoint.html#cfn-rds-dbproxyendpoint-endpointnetworktype}
33
+ */
34
+ EndpointNetworkType?: "IPV4" | "IPV6" | "DUAL" | undefined;
30
35
  /**
31
36
  * An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
32
37
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxyendpoint.html#cfn-rds-dbproxyendpoint-tags}