@awboost/cfn-resource-types 0.1.310 → 0.1.311
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.
- package/lib/AWS-Batch-ConsumableResource.d.ts +2 -2
- package/lib/AWS-Batch-ConsumableResource.js +1 -1
- package/lib/AWS-Batch-JobDefinition.d.ts +8 -0
- package/lib/AWS-CodeBuild-Project.d.ts +2 -0
- package/lib/AWS-DMS-ReplicationInstance.d.ts +1 -0
- package/lib/AWS-EC2-VPCEndpoint.d.ts +32 -0
- package/lib/AWS-PaymentCryptography-Key.d.ts +7 -1
- package/lib/AWS-Transfer-WebApp.d.ts +6 -0
- package/package.json +1 -1
|
@@ -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 Type
|
|
4
|
+
* Resource Type definition for AWS::Batch::ConsumableResource
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
6
6
|
*/
|
|
7
7
|
export type BatchConsumableResourceProperties = {
|
|
@@ -49,7 +49,7 @@ export type BatchConsumableResourceAttributes = {
|
|
|
49
49
|
*/
|
|
50
50
|
export type ResourceType = "REPLENISHABLE" | "NON_REPLENISHABLE";
|
|
51
51
|
/**
|
|
52
|
-
* Resource Type
|
|
52
|
+
* Resource Type definition for AWS::Batch::ConsumableResource
|
|
53
53
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
54
54
|
*/
|
|
55
55
|
export declare class BatchConsumableResource extends $Resource<"AWS::Batch::ConsumableResource", BatchConsumableResourceProperties, BatchConsumableResourceAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource Type
|
|
3
|
+
* Resource Type definition for AWS::Batch::ConsumableResource
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
5
5
|
*/
|
|
6
6
|
export class BatchConsumableResource extends $Resource {
|
|
@@ -58,6 +58,7 @@ export type ConsumableResourceRequirement = {
|
|
|
58
58
|
*/
|
|
59
59
|
export type ContainerProperties = {
|
|
60
60
|
Command?: string[];
|
|
61
|
+
EnableExecuteCommand?: boolean;
|
|
61
62
|
Environment?: Environment[];
|
|
62
63
|
EphemeralStorage?: EphemeralStorage;
|
|
63
64
|
ExecutionRoleArn?: string;
|
|
@@ -104,6 +105,7 @@ export type EcsProperties = {
|
|
|
104
105
|
*/
|
|
105
106
|
export type EcsTaskProperties = {
|
|
106
107
|
Containers?: TaskContainerProperties[];
|
|
108
|
+
EnableExecuteCommand?: boolean;
|
|
107
109
|
EphemeralStorage?: EphemeralStorage;
|
|
108
110
|
ExecutionRoleArn?: string;
|
|
109
111
|
IpcMode?: string;
|
|
@@ -341,6 +343,7 @@ export type MountPoint = {
|
|
|
341
343
|
*/
|
|
342
344
|
export type MultiNodeContainerProperties = {
|
|
343
345
|
Command?: string[];
|
|
346
|
+
EnableExecuteCommand?: boolean;
|
|
344
347
|
Environment?: Environment[];
|
|
345
348
|
EphemeralStorage?: EphemeralStorage;
|
|
346
349
|
ExecutionRoleArn?: string;
|
|
@@ -375,6 +378,7 @@ export type MultiNodeEcsProperties = {
|
|
|
375
378
|
*/
|
|
376
379
|
export type MultiNodeEcsTaskProperties = {
|
|
377
380
|
Containers?: TaskContainerProperties[];
|
|
381
|
+
EnableExecuteCommand?: boolean;
|
|
378
382
|
ExecutionRoleArn?: string;
|
|
379
383
|
IpcMode?: string;
|
|
380
384
|
PidMode?: string;
|
|
@@ -465,6 +469,10 @@ export type TaskContainerProperties = {
|
|
|
465
469
|
DependsOn?: TaskContainerDependency[];
|
|
466
470
|
Environment?: Environment[];
|
|
467
471
|
Essential?: boolean;
|
|
472
|
+
FirelensConfiguration?: {
|
|
473
|
+
Options?: Record<string, string>;
|
|
474
|
+
Type: string;
|
|
475
|
+
};
|
|
468
476
|
Image: string;
|
|
469
477
|
LinuxParameters?: LinuxParameters;
|
|
470
478
|
LogConfiguration?: LogConfiguration;
|
|
@@ -202,7 +202,9 @@ export type S3LogsConfig = {
|
|
|
202
202
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-scopeconfiguration.html}
|
|
203
203
|
*/
|
|
204
204
|
export type ScopeConfiguration = {
|
|
205
|
+
Domain?: string;
|
|
205
206
|
Name: string;
|
|
207
|
+
Scope?: string;
|
|
206
208
|
};
|
|
207
209
|
/**
|
|
208
210
|
* Type definition for `AWS::CodeBuild::Project.Source`.
|
|
@@ -9,7 +9,13 @@ 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
|
+
/**
|
|
13
|
+
* Describes the DNS options for an endpoint.
|
|
14
|
+
*/
|
|
12
15
|
DnsOptions?: DnsOptionsSpecification;
|
|
16
|
+
/**
|
|
17
|
+
* The supported IP address types.
|
|
18
|
+
*/
|
|
13
19
|
IpAddressType?: "ipv4" | "ipv6" | "dualstack" | "not-specified";
|
|
14
20
|
/**
|
|
15
21
|
* 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.
|
|
@@ -24,6 +30,9 @@ export type EC2VPCEndpointProperties = {
|
|
|
24
30
|
Default: ``false``
|
|
25
31
|
*/
|
|
26
32
|
PrivateDnsEnabled?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* The Amazon Resource Name (ARN) of the resource configuration.
|
|
35
|
+
*/
|
|
27
36
|
ResourceConfigurationArn?: string;
|
|
28
37
|
/**
|
|
29
38
|
* The IDs of the route tables. Routing is supported only for gateway endpoints.
|
|
@@ -37,11 +46,18 @@ export type EC2VPCEndpointProperties = {
|
|
|
37
46
|
* The name of the endpoint service.
|
|
38
47
|
*/
|
|
39
48
|
ServiceName?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The Amazon Resource Name (ARN) of the service network.
|
|
51
|
+
*/
|
|
40
52
|
ServiceNetworkArn?: string;
|
|
53
|
+
ServiceRegion?: string;
|
|
41
54
|
/**
|
|
42
55
|
* 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.
|
|
43
56
|
*/
|
|
44
57
|
SubnetIds?: string[];
|
|
58
|
+
/**
|
|
59
|
+
* The tags to associate with the endpoint.
|
|
60
|
+
*/
|
|
45
61
|
Tags?: Tag[];
|
|
46
62
|
/**
|
|
47
63
|
* The type of endpoint.
|
|
@@ -65,18 +81,34 @@ export type EC2VPCEndpointAttributes = {
|
|
|
65
81
|
};
|
|
66
82
|
/**
|
|
67
83
|
* Type definition for `AWS::EC2::VPCEndpoint.DnsOptionsSpecification`.
|
|
84
|
+
* Describes the DNS options for an endpoint.
|
|
68
85
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-dnsoptionsspecification.html}
|
|
69
86
|
*/
|
|
70
87
|
export type DnsOptionsSpecification = {
|
|
88
|
+
/**
|
|
89
|
+
* The DNS records created for the endpoint.
|
|
90
|
+
*/
|
|
71
91
|
DnsRecordIpType?: "ipv4" | "ipv6" | "dualstack" | "service-defined" | "not-specified";
|
|
92
|
+
/**
|
|
93
|
+
* Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.
|
|
94
|
+
*/
|
|
72
95
|
PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
|
|
73
96
|
};
|
|
74
97
|
/**
|
|
75
98
|
* Type definition for `AWS::EC2::VPCEndpoint.Tag`.
|
|
99
|
+
* Describes a tag.
|
|
76
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-tag.html}
|
|
77
101
|
*/
|
|
78
102
|
export type Tag = {
|
|
103
|
+
/**
|
|
104
|
+
* The key of the tag.
|
|
105
|
+
Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.
|
|
106
|
+
*/
|
|
79
107
|
Key: string;
|
|
108
|
+
/**
|
|
109
|
+
* The value of the tag.
|
|
110
|
+
Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
|
|
111
|
+
*/
|
|
80
112
|
Value: string;
|
|
81
113
|
};
|
|
82
114
|
/**
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html}
|
|
6
6
|
*/
|
|
7
7
|
export type PaymentCryptographyKeyProperties = {
|
|
8
|
+
DeriveKeyUsage?: DeriveKeyUsage;
|
|
8
9
|
Enabled?: boolean;
|
|
9
10
|
Exportable: boolean;
|
|
10
11
|
KeyAttributes: KeyAttributes;
|
|
@@ -35,6 +36,11 @@ export type PaymentCryptographyKeyAttributes = {
|
|
|
35
36
|
*/
|
|
36
37
|
KeyState: KeyState;
|
|
37
38
|
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-derivekeyusage.html}
|
|
42
|
+
*/
|
|
43
|
+
export type DeriveKeyUsage = "TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY";
|
|
38
44
|
/**
|
|
39
45
|
* Type definition for `AWS::PaymentCryptography::Key.KeyAlgorithm`.
|
|
40
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyalgorithm.html}
|
|
@@ -54,7 +60,7 @@ export type KeyAttributes = {
|
|
|
54
60
|
* Type definition for `AWS::PaymentCryptography::Key.KeyCheckValueAlgorithm`.
|
|
55
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keycheckvaluealgorithm.html}
|
|
56
62
|
*/
|
|
57
|
-
export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24";
|
|
63
|
+
export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24" | "HMAC";
|
|
58
64
|
/**
|
|
59
65
|
* Type definition for `AWS::PaymentCryptography::Key.KeyClass`.
|
|
60
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyclass.html}
|
|
@@ -21,6 +21,7 @@ export type TransferWebAppProperties = {
|
|
|
21
21
|
*/
|
|
22
22
|
Tags?: Tag[];
|
|
23
23
|
WebAppCustomization?: WebAppCustomization;
|
|
24
|
+
WebAppEndpointPolicy?: WebAppEndpointPolicy;
|
|
24
25
|
/**
|
|
25
26
|
* A union that contains the value for number of concurrent connections or the user sessions on your web app.
|
|
26
27
|
*/
|
|
@@ -119,6 +120,11 @@ export type WebAppCustomization = {
|
|
|
119
120
|
*/
|
|
120
121
|
Title?: string;
|
|
121
122
|
};
|
|
123
|
+
/**
|
|
124
|
+
* Type definition for `AWS::Transfer::WebApp.WebAppEndpointPolicy`.
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappendpointpolicy.html}
|
|
126
|
+
*/
|
|
127
|
+
export type WebAppEndpointPolicy = "STANDARD" | "FIPS";
|
|
122
128
|
/**
|
|
123
129
|
* Type definition for `AWS::Transfer::WebApp.WebAppUnits`.
|
|
124
130
|
* A union that contains the value for number of concurrent connections or the user sessions on your web app.
|