@awboost/cfn-resource-types 0.1.51 → 0.1.52

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 (29) hide show
  1. package/lib/AWS-CleanRoomsML-TrainingDataset.d.ts +155 -0
  2. package/lib/AWS-CleanRoomsML-TrainingDataset.js +12 -0
  3. package/lib/AWS-Deadline-Farm.d.ts +45 -0
  4. package/lib/AWS-Deadline-Farm.js +12 -0
  5. package/lib/AWS-Deadline-Fleet.d.ts +348 -0
  6. package/lib/AWS-Deadline-Fleet.js +12 -0
  7. package/lib/AWS-Deadline-LicenseEndpoint.d.ts +58 -0
  8. package/lib/AWS-Deadline-LicenseEndpoint.js +12 -0
  9. package/lib/AWS-Deadline-MeteredProduct.d.ts +50 -0
  10. package/lib/AWS-Deadline-MeteredProduct.js +12 -0
  11. package/lib/AWS-Deadline-Queue.d.ts +134 -0
  12. package/lib/AWS-Deadline-Queue.js +12 -0
  13. package/lib/AWS-Deadline-QueueEnvironment.d.ts +52 -0
  14. package/lib/AWS-Deadline-QueueEnvironment.js +12 -0
  15. package/lib/AWS-Deadline-QueueFleetAssociation.d.ts +29 -0
  16. package/lib/AWS-Deadline-QueueFleetAssociation.js +12 -0
  17. package/lib/AWS-Deadline-StorageProfile.d.ts +70 -0
  18. package/lib/AWS-Deadline-StorageProfile.js +12 -0
  19. package/lib/AWS-EC2-Subnet.d.ts +7 -4
  20. package/lib/AWS-EntityResolution-IdNamespace.d.ts +130 -0
  21. package/lib/AWS-EntityResolution-IdNamespace.js +13 -0
  22. package/lib/AWS-EntityResolution-PolicyStatement.d.ts +44 -0
  23. package/lib/AWS-EntityResolution-PolicyStatement.js +13 -0
  24. package/lib/AWS-GlobalAccelerator-CrossAccountAttachment.d.ts +71 -0
  25. package/lib/AWS-GlobalAccelerator-CrossAccountAttachment.js +12 -0
  26. package/lib/AWS-Lambda-Function.d.ts +5 -5
  27. package/lib/AWS-MediaTailor-Channel.d.ts +4 -0
  28. package/lib/AWS-RDS-CustomDBEngineVersion.d.ts +13 -1
  29. package/package.json +2 -2
@@ -0,0 +1,50 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::Deadline::MeteredProduct Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html}
6
+ */
7
+ export type DeadlineMeteredProductProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `64`
11
+ */
12
+ Family?: string;
13
+ /**
14
+ * @pattern `^le-[0-9a-f]{32}$`
15
+ */
16
+ LicenseEndpointId?: string;
17
+ /**
18
+ * @min `1024`
19
+ * @max `65535`
20
+ */
21
+ Port?: number;
22
+ /**
23
+ * @pattern `^[0-9a-z]{1,32}-[.0-9a-z]{1,32}$`
24
+ */
25
+ ProductId?: string;
26
+ /**
27
+ * @minLength `1`
28
+ * @maxLength `64`
29
+ */
30
+ Vendor?: string;
31
+ };
32
+ /**
33
+ * Attribute type definition for `AWS::Deadline::MeteredProduct`.
34
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html#aws-resource-deadline-meteredproduct-return-values}
35
+ */
36
+ export type DeadlineMeteredProductAttributes = {
37
+ /**
38
+ * @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]{12}:license-endpoint/le-[0-9a-z]{32}/metered-product/[0-9a-z]{1,32}-[.0-9a-z]{1,32}`
39
+ */
40
+ Arn: string;
41
+ };
42
+ /**
43
+ * Definition of AWS::Deadline::MeteredProduct Resource Type
44
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html}
45
+ */
46
+ export declare class DeadlineMeteredProduct extends $Resource<"AWS::Deadline::MeteredProduct", DeadlineMeteredProductProperties, DeadlineMeteredProductAttributes> {
47
+ static readonly Type = "AWS::Deadline::MeteredProduct";
48
+ constructor(logicalId: string, properties: DeadlineMeteredProductProperties, options?: $ResourceOptions);
49
+ }
50
+ //# sourceMappingURL=AWS-Deadline-MeteredProduct.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Deadline::MeteredProduct Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html}
5
+ */
6
+ export class DeadlineMeteredProduct extends $Resource {
7
+ static Type = "AWS::Deadline::MeteredProduct";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DeadlineMeteredProduct.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Deadline-MeteredProduct.js.map
@@ -0,0 +1,134 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::Deadline::Queue Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queue.html}
6
+ */
7
+ export type DeadlineQueueProperties = {
8
+ /**
9
+ * @minLength `0`
10
+ * @maxLength `20`
11
+ */
12
+ AllowedStorageProfileIds?: string[];
13
+ DefaultBudgetAction?: DefaultQueueBudgetAction;
14
+ /**
15
+ * @minLength `0`
16
+ * @maxLength `100`
17
+ */
18
+ Description?: string;
19
+ /**
20
+ * @minLength `1`
21
+ * @maxLength `100`
22
+ */
23
+ DisplayName: string;
24
+ /**
25
+ * @pattern `^farm-[0-9a-f]{32}$`
26
+ */
27
+ FarmId?: string;
28
+ JobAttachmentSettings?: JobAttachmentSettings;
29
+ JobRunAsUser?: JobRunAsUser;
30
+ /**
31
+ * @minLength `0`
32
+ * @maxLength `20`
33
+ */
34
+ RequiredFileSystemLocationNames?: string[];
35
+ /**
36
+ * @pattern `^arn:(aws[a-zA-Z-]*):iam::\d{12}:role(/[!-.0-~]+)/‍*[\w+=,.@-]+$`
37
+ */
38
+ RoleArn?: string;
39
+ };
40
+ /**
41
+ * Attribute type definition for `AWS::Deadline::Queue`.
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queue.html#aws-resource-deadline-queue-return-values}
43
+ */
44
+ export type DeadlineQueueAttributes = {
45
+ /**
46
+ * @pattern `^arn:*`
47
+ */
48
+ Arn: string;
49
+ /**
50
+ * @pattern `^queue-[0-9a-f]{32}$`
51
+ */
52
+ QueueId: string;
53
+ };
54
+ /**
55
+ * Type definition for `AWS::Deadline::Queue.DefaultQueueBudgetAction`.
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-defaultqueuebudgetaction.html}
57
+ */
58
+ export type DefaultQueueBudgetAction = "NONE" | "STOP_SCHEDULING_AND_COMPLETE_TASKS" | "STOP_SCHEDULING_AND_CANCEL_TASKS";
59
+ /**
60
+ * Type definition for `AWS::Deadline::Queue.JobAttachmentSettings`.
61
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-jobattachmentsettings.html}
62
+ */
63
+ export type JobAttachmentSettings = {
64
+ /**
65
+ * @minLength `1`
66
+ * @maxLength `63`
67
+ */
68
+ RootPrefix: string;
69
+ /**
70
+ * @minLength `3`
71
+ * @maxLength `63`
72
+ * @pattern `(?!^(\d+\.)+\d+$)(^(([a-z0-9]|[a-z0-9][a-z0-9\-]*[a-z0-9])\.)*([a-z0-9]|[a-z0-9][a-z0-9\-]*[a-z0-9])$)`
73
+ */
74
+ S3BucketName: string;
75
+ };
76
+ /**
77
+ * Type definition for `AWS::Deadline::Queue.JobRunAsUser`.
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-jobrunasuser.html}
79
+ */
80
+ export type JobRunAsUser = {
81
+ Posix?: PosixUser;
82
+ RunAs: RunAs;
83
+ Windows?: WindowsUser;
84
+ };
85
+ /**
86
+ * Type definition for `AWS::Deadline::Queue.PosixUser`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-posixuser.html}
88
+ */
89
+ export type PosixUser = {
90
+ /**
91
+ * @minLength `0`
92
+ * @maxLength `31`
93
+ * @pattern `^(?:[a-z][a-z0-9-]{0,30})?$`
94
+ */
95
+ Group: string;
96
+ /**
97
+ * @minLength `0`
98
+ * @maxLength `31`
99
+ * @pattern `^(?:[a-z][a-z0-9-]{0,30})?$`
100
+ */
101
+ User: string;
102
+ };
103
+ /**
104
+ * Type definition for `AWS::Deadline::Queue.RunAs`.
105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-runas.html}
106
+ */
107
+ export type RunAs = "QUEUE_CONFIGURED_USER" | "WORKER_AGENT_USER";
108
+ /**
109
+ * Type definition for `AWS::Deadline::Queue.WindowsUser`.
110
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-windowsuser.html}
111
+ */
112
+ export type WindowsUser = {
113
+ /**
114
+ * @minLength `20`
115
+ * @maxLength `2048`
116
+ * @pattern `^arn:(aws[a-zA-Z-]*):secretsmanager:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\d{1}:\d{12}:secret:[a-zA-Z0-9-/_+=.@]{1,2028}$`
117
+ */
118
+ PasswordArn: string;
119
+ /**
120
+ * @minLength `0`
121
+ * @maxLength `111`
122
+ * @pattern `^[^"'/\[\]:;|=,+*?<>\s]*$`
123
+ */
124
+ User: string;
125
+ };
126
+ /**
127
+ * Definition of AWS::Deadline::Queue Resource Type
128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queue.html}
129
+ */
130
+ export declare class DeadlineQueue extends $Resource<"AWS::Deadline::Queue", DeadlineQueueProperties, DeadlineQueueAttributes> {
131
+ static readonly Type = "AWS::Deadline::Queue";
132
+ constructor(logicalId: string, properties: DeadlineQueueProperties, options?: $ResourceOptions);
133
+ }
134
+ //# sourceMappingURL=AWS-Deadline-Queue.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Deadline::Queue Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queue.html}
5
+ */
6
+ export class DeadlineQueue extends $Resource {
7
+ static Type = "AWS::Deadline::Queue";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DeadlineQueue.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Deadline-Queue.js.map
@@ -0,0 +1,52 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::Deadline::QueueEnvironment Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html}
6
+ */
7
+ export type DeadlineQueueEnvironmentProperties = {
8
+ /**
9
+ * @pattern `^farm-[0-9a-f]{32}$`
10
+ */
11
+ FarmId: string;
12
+ /**
13
+ * @min `0`
14
+ * @max `10000`
15
+ */
16
+ Priority: number;
17
+ /**
18
+ * @pattern `^queue-[0-9a-f]{32}$`
19
+ */
20
+ QueueId: string;
21
+ /**
22
+ * @minLength `1`
23
+ * @maxLength `15000`
24
+ */
25
+ Template: string;
26
+ TemplateType: EnvironmentTemplateType;
27
+ };
28
+ /**
29
+ * Attribute type definition for `AWS::Deadline::QueueEnvironment`.
30
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html#aws-resource-deadline-queueenvironment-return-values}
31
+ */
32
+ export type DeadlineQueueEnvironmentAttributes = {
33
+ Name: string;
34
+ /**
35
+ * @pattern `^queueenv-[0-9a-f]{32}$`
36
+ */
37
+ QueueEnvironmentId: string;
38
+ };
39
+ /**
40
+ * Type definition for `AWS::Deadline::QueueEnvironment.EnvironmentTemplateType`.
41
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queueenvironment-environmenttemplatetype.html}
42
+ */
43
+ export type EnvironmentTemplateType = "JSON" | "YAML";
44
+ /**
45
+ * Definition of AWS::Deadline::QueueEnvironment Resource Type
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html}
47
+ */
48
+ export declare class DeadlineQueueEnvironment extends $Resource<"AWS::Deadline::QueueEnvironment", DeadlineQueueEnvironmentProperties, DeadlineQueueEnvironmentAttributes> {
49
+ static readonly Type = "AWS::Deadline::QueueEnvironment";
50
+ constructor(logicalId: string, properties: DeadlineQueueEnvironmentProperties, options?: $ResourceOptions);
51
+ }
52
+ //# sourceMappingURL=AWS-Deadline-QueueEnvironment.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Deadline::QueueEnvironment Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queueenvironment.html}
5
+ */
6
+ export class DeadlineQueueEnvironment extends $Resource {
7
+ static Type = "AWS::Deadline::QueueEnvironment";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DeadlineQueueEnvironment.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Deadline-QueueEnvironment.js.map
@@ -0,0 +1,29 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::Deadline::QueueFleetAssociation Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuefleetassociation.html}
6
+ */
7
+ export type DeadlineQueueFleetAssociationProperties = {
8
+ /**
9
+ * @pattern `^farm-[0-9a-f]{32}$`
10
+ */
11
+ FarmId: string;
12
+ /**
13
+ * @pattern `^fleet-[0-9a-f]{32}$`
14
+ */
15
+ FleetId: string;
16
+ /**
17
+ * @pattern `^queue-[0-9a-f]{32}$`
18
+ */
19
+ QueueId: string;
20
+ };
21
+ /**
22
+ * Definition of AWS::Deadline::QueueFleetAssociation Resource Type
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuefleetassociation.html}
24
+ */
25
+ export declare class DeadlineQueueFleetAssociation extends $Resource<"AWS::Deadline::QueueFleetAssociation", DeadlineQueueFleetAssociationProperties, Record<string, never>> {
26
+ static readonly Type = "AWS::Deadline::QueueFleetAssociation";
27
+ constructor(logicalId: string, properties: DeadlineQueueFleetAssociationProperties, options?: $ResourceOptions);
28
+ }
29
+ //# sourceMappingURL=AWS-Deadline-QueueFleetAssociation.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Deadline::QueueFleetAssociation Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuefleetassociation.html}
5
+ */
6
+ export class DeadlineQueueFleetAssociation extends $Resource {
7
+ static Type = "AWS::Deadline::QueueFleetAssociation";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DeadlineQueueFleetAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Deadline-QueueFleetAssociation.js.map
@@ -0,0 +1,70 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::Deadline::StorageProfile Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-storageprofile.html}
6
+ */
7
+ export type DeadlineStorageProfileProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `100`
11
+ */
12
+ DisplayName: string;
13
+ /**
14
+ * @pattern `^farm-[0-9a-f]{32}$`
15
+ */
16
+ FarmId?: string;
17
+ /**
18
+ * @minLength `0`
19
+ * @maxLength `20`
20
+ */
21
+ FileSystemLocations?: FileSystemLocation[];
22
+ OsFamily: StorageProfileOperatingSystemFamily;
23
+ };
24
+ /**
25
+ * Attribute type definition for `AWS::Deadline::StorageProfile`.
26
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-storageprofile.html#aws-resource-deadline-storageprofile-return-values}
27
+ */
28
+ export type DeadlineStorageProfileAttributes = {
29
+ /**
30
+ * @pattern `^sp-[0-9a-f]{32}$`
31
+ */
32
+ StorageProfileId: string;
33
+ };
34
+ /**
35
+ * Type definition for `AWS::Deadline::StorageProfile.FileSystemLocation`.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-storageprofile-filesystemlocation.html}
37
+ */
38
+ export type FileSystemLocation = {
39
+ /**
40
+ * @minLength `1`
41
+ * @maxLength `64`
42
+ * @pattern `^[0-9A-Za-z ]*$`
43
+ */
44
+ Name: string;
45
+ /**
46
+ * @minLength `0`
47
+ * @maxLength `1024`
48
+ */
49
+ Path: string;
50
+ Type: FileSystemLocationType;
51
+ };
52
+ /**
53
+ * Type definition for `AWS::Deadline::StorageProfile.FileSystemLocationType`.
54
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-storageprofile-filesystemlocationtype.html}
55
+ */
56
+ export type FileSystemLocationType = "SHARED" | "LOCAL";
57
+ /**
58
+ * Type definition for `AWS::Deadline::StorageProfile.StorageProfileOperatingSystemFamily`.
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-storageprofile-storageprofileoperatingsystemfamily.html}
60
+ */
61
+ export type StorageProfileOperatingSystemFamily = "WINDOWS" | "LINUX" | "MACOS";
62
+ /**
63
+ * Definition of AWS::Deadline::StorageProfile Resource Type
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-storageprofile.html}
65
+ */
66
+ export declare class DeadlineStorageProfile extends $Resource<"AWS::Deadline::StorageProfile", DeadlineStorageProfileProperties, DeadlineStorageProfileAttributes> {
67
+ static readonly Type = "AWS::Deadline::StorageProfile";
68
+ constructor(logicalId: string, properties: DeadlineStorageProfileProperties, options?: $ResourceOptions);
69
+ }
70
+ //# sourceMappingURL=AWS-Deadline-StorageProfile.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Deadline::StorageProfile Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-storageprofile.html}
5
+ */
6
+ export class DeadlineStorageProfile extends $Resource {
7
+ static Type = "AWS::Deadline::StorageProfile";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DeadlineStorageProfile.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Deadline-StorageProfile.js.map
@@ -31,6 +31,9 @@ export type EC2SubnetProperties = {
31
31
  * Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations. For more information, see [DNS64 and NAT64](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-nat64-dns64) in the *User Guide*.
32
32
  */
33
33
  EnableDns64?: boolean;
34
+ /**
35
+ * Indicates the device position for local network interfaces in this subnet. For example, ``1`` indicates local network interfaces in this subnet are the secondary network interface (eth1).
36
+ */
34
37
  EnableLniAtDeviceIndex?: number;
35
38
  /**
36
39
  * An IPv4 IPAM pool ID for the subnet.
@@ -63,7 +66,7 @@ export type EC2SubnetProperties = {
63
66
  Ipv6NetmaskLength?: number;
64
67
  /**
65
68
  * Indicates whether instances launched in this subnet receive a public IPv4 address. The default value is ``false``.
66
- AWS charges for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the *Public IPv4 Address* tab on the [VPC pricing page](https://docs.aws.amazon.com/vpc/pricing/).
69
+ AWS charges for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the *Public IPv4 Address* tab on the [VPC pricing page](https://docs.aws.amazon.com/vpc/pricing/).
67
70
  */
68
71
  MapPublicIpOnLaunch?: boolean;
69
72
  /**
@@ -73,9 +76,9 @@ export type EC2SubnetProperties = {
73
76
  /**
74
77
  * The hostname type for EC2 instances launched into this subnet and how DNS A and AAAA record queries to the instances should be handled. For more information, see [Amazon EC2 instance hostname types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-naming.html) in the *User Guide*.
75
78
  Available options:
76
- + EnableResourceNameDnsAAAARecord (true | false)
77
- + EnableResourceNameDnsARecord (true | false)
78
- + HostnameType (ip-name | resource-name)
79
+ + EnableResourceNameDnsAAAARecord (true | false)
80
+ + EnableResourceNameDnsARecord (true | false)
81
+ + HostnameType (ip-name | resource-name)
79
82
  */
80
83
  PrivateDnsNameOptionsOnLaunch?: {
81
84
  EnableResourceNameDnsAAAARecord?: boolean;
@@ -0,0 +1,130 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::EntityResolution::IdNamespace`.
5
+ * IdNamespace defined in AWS Entity Resolution service
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html}
7
+ */
8
+ export type EntityResolutionIdNamespaceProperties = {
9
+ /**
10
+ * @minLength `0`
11
+ * @maxLength `255`
12
+ */
13
+ Description?: string;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `1`
17
+ */
18
+ IdMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
19
+ /**
20
+ * @minLength `1`
21
+ * @maxLength `255`
22
+ * @pattern `^[a-zA-Z_0-9-]*$`
23
+ */
24
+ IdNamespaceName: string;
25
+ /**
26
+ * @minLength `0`
27
+ * @maxLength `20`
28
+ */
29
+ InputSourceConfig?: IdNamespaceInputSource[];
30
+ /**
31
+ * @minLength `32`
32
+ * @maxLength `512`
33
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn):iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
34
+ */
35
+ RoleArn?: string;
36
+ /**
37
+ * @minLength `0`
38
+ * @maxLength `200`
39
+ */
40
+ Tags?: Tag[];
41
+ Type: "SOURCE" | "TARGET";
42
+ };
43
+ /**
44
+ * Attribute type definition for `AWS::EntityResolution::IdNamespace`.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html#aws-resource-entityresolution-idnamespace-return-values}
46
+ */
47
+ export type EntityResolutionIdNamespaceAttributes = {
48
+ /**
49
+ * The date and time when the IdNamespace was created
50
+ */
51
+ CreatedAt: string;
52
+ /**
53
+ * The arn associated with the IdNamespace
54
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(idnamespace/[a-zA-Z_0-9-]{1,255})$`
55
+ */
56
+ IdNamespaceArn: string;
57
+ /**
58
+ * The date and time when the IdNamespace was updated
59
+ */
60
+ UpdatedAt: string;
61
+ };
62
+ /**
63
+ * Type definition for `AWS::EntityResolution::IdNamespace.IdNamespaceIdMappingWorkflowProperties`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties.html}
65
+ */
66
+ export type IdNamespaceIdMappingWorkflowProperties = {
67
+ IdMappingType: "PROVIDER";
68
+ ProviderProperties?: NamespaceProviderProperties;
69
+ };
70
+ /**
71
+ * Type definition for `AWS::EntityResolution::IdNamespace.IdNamespaceInputSource`.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceinputsource.html}
73
+ */
74
+ export type IdNamespaceInputSource = {
75
+ /**
76
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(idnamespace/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):glue:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(table/[a-zA-Z_0-9-]{1,255}/[a-zA-Z_0-9-]{1,255})$`
77
+ */
78
+ InputSourceARN: string;
79
+ /**
80
+ * @minLength `1`
81
+ * @maxLength `255`
82
+ * @pattern `^[a-zA-Z_0-9-]*$`
83
+ */
84
+ SchemaName?: string;
85
+ };
86
+ /**
87
+ * Type definition for `AWS::EntityResolution::IdNamespace.NamespaceProviderProperties`.
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespaceproviderproperties.html}
89
+ */
90
+ export type NamespaceProviderProperties = {
91
+ /**
92
+ * Additional Provider configuration that would be required for the provider service. The Configuration must be in JSON string format.
93
+ */
94
+ ProviderConfiguration?: Record<string, string>;
95
+ /**
96
+ * @minLength `20`
97
+ * @maxLength `255`
98
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn):(entityresolution):([a-z]{2}-[a-z]{1,10}-[0-9])::providerservice/([a-zA-Z0-9_-]{1,255})/([a-zA-Z0-9_-]{1,255})$`
99
+ */
100
+ ProviderServiceArn: string;
101
+ };
102
+ /**
103
+ * Type definition for `AWS::EntityResolution::IdNamespace.Tag`.
104
+ * A key-value pair to associate with a resource.
105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-tag.html}
106
+ */
107
+ export type Tag = {
108
+ /**
109
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
110
+ * @minLength `1`
111
+ * @maxLength `128`
112
+ */
113
+ Key: string;
114
+ /**
115
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
116
+ * @minLength `0`
117
+ * @maxLength `256`
118
+ */
119
+ Value: string;
120
+ };
121
+ /**
122
+ * Resource type definition for `AWS::EntityResolution::IdNamespace`.
123
+ * IdNamespace defined in AWS Entity Resolution service
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html}
125
+ */
126
+ export declare class EntityResolutionIdNamespace extends $Resource<"AWS::EntityResolution::IdNamespace", EntityResolutionIdNamespaceProperties, EntityResolutionIdNamespaceAttributes> {
127
+ static readonly Type = "AWS::EntityResolution::IdNamespace";
128
+ constructor(logicalId: string, properties: EntityResolutionIdNamespaceProperties, options?: $ResourceOptions);
129
+ }
130
+ //# sourceMappingURL=AWS-EntityResolution-IdNamespace.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::EntityResolution::IdNamespace`.
4
+ * IdNamespace defined in AWS Entity Resolution service
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html}
6
+ */
7
+ export class EntityResolutionIdNamespace extends $Resource {
8
+ static Type = "AWS::EntityResolution::IdNamespace";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, EntityResolutionIdNamespace.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-EntityResolution-IdNamespace.js.map
@@ -0,0 +1,44 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::EntityResolution::PolicyStatement`.
5
+ * Policy Statement defined in AWS Entity Resolution Service
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html}
7
+ */
8
+ export type EntityResolutionPolicyStatementProperties = {
9
+ Action?: string[];
10
+ /**
11
+ * Arn of the resource to which the policy statement is being attached.
12
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:((schemamapping|matchingworkflow|idmappingworkflow|idnamespace)/[a-zA-Z_0-9-]{1,255})$`
13
+ */
14
+ Arn: string;
15
+ /**
16
+ * @minLength `1`
17
+ * @maxLength `40960`
18
+ */
19
+ Condition?: string;
20
+ Effect?: StatementEffect;
21
+ Principal?: string[];
22
+ /**
23
+ * The Statement Id of the policy statement that is being attached.
24
+ * @minLength `1`
25
+ * @maxLength `64`
26
+ * @pattern `^[0-9A-Za-z]+$`
27
+ */
28
+ StatementId: string;
29
+ };
30
+ /**
31
+ * Type definition for `AWS::EntityResolution::PolicyStatement.StatementEffect`.
32
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-policystatement-statementeffect.html}
33
+ */
34
+ export type StatementEffect = "Allow" | "Deny";
35
+ /**
36
+ * Resource type definition for `AWS::EntityResolution::PolicyStatement`.
37
+ * Policy Statement defined in AWS Entity Resolution Service
38
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html}
39
+ */
40
+ export declare class EntityResolutionPolicyStatement extends $Resource<"AWS::EntityResolution::PolicyStatement", EntityResolutionPolicyStatementProperties, Record<string, never>> {
41
+ static readonly Type = "AWS::EntityResolution::PolicyStatement";
42
+ constructor(logicalId: string, properties: EntityResolutionPolicyStatementProperties, options?: $ResourceOptions);
43
+ }
44
+ //# sourceMappingURL=AWS-EntityResolution-PolicyStatement.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::EntityResolution::PolicyStatement`.
4
+ * Policy Statement defined in AWS Entity Resolution Service
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-policystatement.html}
6
+ */
7
+ export class EntityResolutionPolicyStatement extends $Resource {
8
+ static Type = "AWS::EntityResolution::PolicyStatement";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, EntityResolutionPolicyStatement.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-EntityResolution-PolicyStatement.js.map