@awboost/cfn-resource-types 0.1.349 → 0.1.351

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.
@@ -59,6 +59,16 @@ export type BaselineEbsBandwidthMbpsRequest = {
59
59
  export type BaselinePerformanceFactorsRequest = {
60
60
  Cpu?: CpuPerformanceFactorRequest;
61
61
  };
62
+ /**
63
+ * Type definition for `AWS::EC2::EC2Fleet.BlockDeviceMapping`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-blockdevicemapping.html}
65
+ */
66
+ export type BlockDeviceMapping = {
67
+ DeviceName?: string;
68
+ Ebs?: EbsBlockDevice;
69
+ NoDevice?: string;
70
+ VirtualName?: string;
71
+ };
62
72
  /**
63
73
  * Type definition for `AWS::EC2::EC2Fleet.CapacityRebalance`.
64
74
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-capacityrebalance.html}
@@ -81,6 +91,19 @@ export type CapacityReservationOptionsRequest = {
81
91
  export type CpuPerformanceFactorRequest = {
82
92
  References?: PerformanceFactorReferenceRequest[];
83
93
  };
94
+ /**
95
+ * Type definition for `AWS::EC2::EC2Fleet.EbsBlockDevice`.
96
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-ebsblockdevice.html}
97
+ */
98
+ export type EbsBlockDevice = {
99
+ DeleteOnTermination?: boolean;
100
+ Encrypted?: boolean;
101
+ Iops?: number;
102
+ KmsKeyId?: string;
103
+ SnapshotId?: string;
104
+ VolumeSize?: number;
105
+ VolumeType?: "gp2" | "gp3" | "io1" | "io2" | "sc1" | "st1" | "standard";
106
+ };
84
107
  /**
85
108
  * Type definition for `AWS::EC2::EC2Fleet.FleetLaunchTemplateConfigRequest`.
86
109
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateconfigrequest.html}
@@ -95,6 +118,7 @@ export type FleetLaunchTemplateConfigRequest = {
95
118
  */
96
119
  export type FleetLaunchTemplateOverridesRequest = {
97
120
  AvailabilityZone?: string;
121
+ BlockDeviceMappings?: BlockDeviceMapping[];
98
122
  InstanceRequirements?: InstanceRequirementsRequest;
99
123
  InstanceType?: string;
100
124
  MaxPrice?: string;
@@ -0,0 +1,238 @@
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::EVS::Environment`.
5
+ * An environment created within the EVS service
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html}
7
+ */
8
+ export type EVSEnvironmentProperties = {
9
+ ConnectivityInfo: {
10
+ /**
11
+ * @minLength `2`
12
+ * @maxLength `2`
13
+ */
14
+ PrivateRouteServerPeerings: string[];
15
+ };
16
+ /**
17
+ * The name of an EVS environment
18
+ * @pattern `^[a-zA-Z0-9_-]{1,100}$`
19
+ */
20
+ EnvironmentName?: string;
21
+ /**
22
+ * The initial hosts for environment only required upon creation. Modification after creation will have no effect
23
+ * @minLength `4`
24
+ * @maxLength `4`
25
+ */
26
+ Hosts?: HostInfoForCreate[];
27
+ /**
28
+ * The initial Vlan configuration only required upon creation. Modification after creation will have no effect
29
+ */
30
+ InitialVlans?: {
31
+ EdgeVTep: InitialVlanInfo;
32
+ ExpansionVlan1: InitialVlanInfo;
33
+ ExpansionVlan2: InitialVlanInfo;
34
+ Hcx: InitialVlanInfo;
35
+ NsxUpLink: InitialVlanInfo;
36
+ VMotion: InitialVlanInfo;
37
+ VSan: InitialVlanInfo;
38
+ VTep: InitialVlanInfo;
39
+ VmManagement: InitialVlanInfo;
40
+ VmkManagement: InitialVlanInfo;
41
+ };
42
+ KmsKeyId?: string;
43
+ /**
44
+ * The license information for an EVS environment
45
+ */
46
+ LicenseInfo: {
47
+ /**
48
+ * @pattern `^[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}$`
49
+ */
50
+ SolutionKey: string;
51
+ /**
52
+ * @pattern `^[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}-[a-zA-Z0-9]{5}$`
53
+ */
54
+ VsanKey: string;
55
+ };
56
+ ServiceAccessSecurityGroups?: {
57
+ SecurityGroups?: string[];
58
+ };
59
+ /**
60
+ * @minLength `15`
61
+ * @maxLength `24`
62
+ * @pattern `^subnet-[a-f0-9]{8}([a-f0-9]{9})?$`
63
+ */
64
+ ServiceAccessSubnetId: string;
65
+ SiteId: string;
66
+ /**
67
+ * An array of key-value pairs to apply to this resource.
68
+ */
69
+ Tags?: Tag[];
70
+ TermsAccepted: boolean;
71
+ VcfHostnames: {
72
+ /**
73
+ * @pattern `^([a-zA-Z0-9\-]*)$`
74
+ */
75
+ CloudBuilder: string;
76
+ /**
77
+ * @pattern `^([a-zA-Z0-9\-]*)$`
78
+ */
79
+ Nsx: string;
80
+ /**
81
+ * @pattern `^([a-zA-Z0-9\-]*)$`
82
+ */
83
+ NsxEdge1: string;
84
+ /**
85
+ * @pattern `^([a-zA-Z0-9\-]*)$`
86
+ */
87
+ NsxEdge2: string;
88
+ /**
89
+ * @pattern `^([a-zA-Z0-9\-]*)$`
90
+ */
91
+ NsxManager1: string;
92
+ /**
93
+ * @pattern `^([a-zA-Z0-9\-]*)$`
94
+ */
95
+ NsxManager2: string;
96
+ /**
97
+ * @pattern `^([a-zA-Z0-9\-]*)$`
98
+ */
99
+ NsxManager3: string;
100
+ /**
101
+ * @pattern `^([a-zA-Z0-9\-]*)$`
102
+ */
103
+ SddcManager: string;
104
+ /**
105
+ * @pattern `^([a-zA-Z0-9\-]*)$`
106
+ */
107
+ VCenter: string;
108
+ };
109
+ VcfVersion: "VCF-5.2.1";
110
+ /**
111
+ * @minLength `12`
112
+ * @maxLength `21`
113
+ * @pattern `^vpc-[a-f0-9]{8}([a-f0-9]{9})?$`
114
+ */
115
+ VpcId: string;
116
+ };
117
+ /**
118
+ * Attribute type definition for `AWS::EVS::Environment`.
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#aws-resource-evs-environment-return-values}
120
+ */
121
+ export type EVSEnvironmentAttributes = {
122
+ Checks: {
123
+ ImpairedSince: string;
124
+ Result: CheckResult;
125
+ Type: "KEY_REUSE" | "KEY_COVERAGE" | "REACHABILITY" | "VCF_VERSION" | "HOST_COUNT";
126
+ }[];
127
+ CreatedAt: string;
128
+ Credentials: {
129
+ SecretArn: string;
130
+ }[];
131
+ /**
132
+ * @minLength `1`
133
+ * @maxLength `1011`
134
+ * @pattern `^arn:aws:evs:[a-z]{2}-[a-z]+-[0-9]:[0-9]{12}:environment/[a-zA-Z0-9_-]+$`
135
+ */
136
+ EnvironmentArn: string;
137
+ /**
138
+ * @pattern `^(env-[a-zA-Z0-9]{10})$`
139
+ */
140
+ EnvironmentId: string;
141
+ EnvironmentState: EnvironmentState;
142
+ ModifiedAt: string;
143
+ StateDetails: string;
144
+ };
145
+ /**
146
+ * Type definition for `AWS::EVS::Environment.Check`.
147
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-check.html}
148
+ */
149
+ export type Check = {
150
+ ImpairedSince?: string;
151
+ Result: CheckResult;
152
+ Type: "KEY_REUSE" | "KEY_COVERAGE" | "REACHABILITY" | "VCF_VERSION" | "HOST_COUNT";
153
+ };
154
+ /**
155
+ * Type definition for `AWS::EVS::Environment.CheckResult`.
156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-checkresult.html}
157
+ */
158
+ export type CheckResult = "PASSED" | "FAILED" | "UNKNOWN";
159
+ /**
160
+ * Type definition for `AWS::EVS::Environment.EnvironmentState`.
161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-environmentstate.html}
162
+ */
163
+ export type EnvironmentState = "CREATING" | "CREATED" | "DELETING" | "DELETED" | "CREATE_FAILED";
164
+ /**
165
+ * Type definition for `AWS::EVS::Environment.HostInfoForCreate`.
166
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-hostinfoforcreate.html}
167
+ */
168
+ export type HostInfoForCreate = {
169
+ /**
170
+ * @minLength `1`
171
+ * @maxLength `25`
172
+ * @pattern `^h-[a-f0-9]{8}([a-f0-9]{9})?$`
173
+ */
174
+ DedicatedHostId?: string;
175
+ /**
176
+ * @pattern `^([a-zA-Z0-9\-]*)$`
177
+ */
178
+ HostName: string;
179
+ InstanceType: "i4i.metal";
180
+ /**
181
+ * @minLength `1`
182
+ * @maxLength `255`
183
+ * @pattern `^[a-zA-Z0-9_-]+$`
184
+ */
185
+ KeyName: string;
186
+ /**
187
+ * @minLength `1`
188
+ * @maxLength `25`
189
+ * @pattern `^pg-[a-f0-9]{8}([a-f0-9]{9})?$`
190
+ */
191
+ PlacementGroupId?: string;
192
+ };
193
+ /**
194
+ * Type definition for `AWS::EVS::Environment.InitialVlanInfo`.
195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-initialvlaninfo.html}
196
+ */
197
+ export type InitialVlanInfo = {
198
+ /**
199
+ * @pattern `^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/(3[0-2]|[1-2][0-9]|[0-9])$`
200
+ */
201
+ Cidr: string;
202
+ };
203
+ /**
204
+ * Type definition for `AWS::EVS::Environment.Secret`.
205
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-secret.html}
206
+ */
207
+ export type Secret = {
208
+ SecretArn?: string;
209
+ };
210
+ /**
211
+ * Type definition for `AWS::EVS::Environment.Tag`.
212
+ * A key-value pair to associate with a resource.
213
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-tag.html}
214
+ */
215
+ export type Tag = {
216
+ /**
217
+ * 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 -.
218
+ * @minLength `1`
219
+ * @maxLength `128`
220
+ */
221
+ Key: string;
222
+ /**
223
+ * 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 -.
224
+ * @minLength `0`
225
+ * @maxLength `256`
226
+ */
227
+ Value: string;
228
+ };
229
+ /**
230
+ * Resource type definition for `AWS::EVS::Environment`.
231
+ * An environment created within the EVS service
232
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html}
233
+ */
234
+ export declare class EVSEnvironment extends $Resource<"AWS::EVS::Environment", EVSEnvironmentProperties, EVSEnvironmentAttributes> {
235
+ static readonly Type = "AWS::EVS::Environment";
236
+ constructor(logicalId: string, properties: EVSEnvironmentProperties, options?: $ResourceOptions);
237
+ }
238
+ //# sourceMappingURL=AWS-EVS-Environment.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::EVS::Environment`.
4
+ * An environment created within the EVS service
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html}
6
+ */
7
+ export class EVSEnvironment extends $Resource {
8
+ static Type = "AWS::EVS::Environment";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, EVSEnvironment.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-EVS-Environment.js.map
@@ -53,7 +53,7 @@ export type LexBotAttributes = {
53
53
  /**
54
54
  * @minLength `1`
55
55
  * @maxLength `1011`
56
- * @pattern `^arn:aws[a-zA-Z-]*:lex:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:bot/[0-9a-zA-Z]+$`
56
+ * @pattern `^arn:aws[a-zA-Z-]*:lex:[a-z]+-(?:[a-z]+-)*[0-9]:[0-9]{12}:bot/[0-9a-zA-Z]+$`
57
57
  */
58
58
  Arn: string;
59
59
  /**
@@ -699,7 +699,7 @@ export type KendraConfiguration = {
699
699
  /**
700
700
  * @minLength `32`
701
701
  * @maxLength `2048`
702
- * @pattern `^arn:aws[a-zA-Z-]*:kendra:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:index/[a-zA-Z0-9][a-zA-Z0-9_-]*$`
702
+ * @pattern `^arn:aws[a-zA-Z-]*:kendra:[a-z]+-(?:[a-z]+-)*[0-9]:[0-9]{12}:index/[a-zA-Z0-9][a-zA-Z0-9_-]*$`
703
703
  */
704
704
  KendraIndex: string;
705
705
  /**
@@ -0,0 +1,92 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for AWS::NetworkFirewall::VpcEndpointAssociation
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html}
6
+ */
7
+ export type NetworkFirewallVpcEndpointAssociationProperties = {
8
+ /**
9
+ * @maxLength `512`
10
+ * @pattern `^.*$`
11
+ */
12
+ Description?: string;
13
+ /**
14
+ * A resource ARN.
15
+ * @minLength `1`
16
+ * @maxLength `256`
17
+ * @pattern `^(arn:aws.*)$`
18
+ */
19
+ FirewallArn: string;
20
+ SubnetMapping: SubnetMapping;
21
+ Tags?: Tag[];
22
+ /**
23
+ * @minLength `1`
24
+ * @maxLength `128`
25
+ * @pattern `^vpc-[0-9a-f]+$`
26
+ */
27
+ VpcId: string;
28
+ };
29
+ /**
30
+ * Attribute type definition for `AWS::NetworkFirewall::VpcEndpointAssociation`.
31
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#aws-resource-networkfirewall-vpcendpointassociation-return-values}
32
+ */
33
+ export type NetworkFirewallVpcEndpointAssociationAttributes = {
34
+ /**
35
+ * An endpoint Id.
36
+ */
37
+ EndpointId: string;
38
+ /**
39
+ * A resource ARN.
40
+ * @minLength `1`
41
+ * @maxLength `256`
42
+ * @pattern `^(arn:aws.*)$`
43
+ */
44
+ VpcEndpointAssociationArn: string;
45
+ /**
46
+ * @minLength `36`
47
+ * @maxLength `36`
48
+ * @pattern `^([0-9a-f]{8})-([0-9a-f]{4}-){3}([0-9a-f]{12})$`
49
+ */
50
+ VpcEndpointAssociationId: string;
51
+ };
52
+ /**
53
+ * Type definition for `AWS::NetworkFirewall::VpcEndpointAssociation.SubnetMapping`.
54
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-vpcendpointassociation-subnetmapping.html}
55
+ */
56
+ export type SubnetMapping = {
57
+ /**
58
+ * A IPAddressType
59
+ */
60
+ IPAddressType?: string;
61
+ /**
62
+ * A SubnetId.
63
+ */
64
+ SubnetId: string;
65
+ };
66
+ /**
67
+ * Type definition for `AWS::NetworkFirewall::VpcEndpointAssociation.Tag`.
68
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-vpcendpointassociation-tag.html}
69
+ */
70
+ export type Tag = {
71
+ /**
72
+ * @minLength `1`
73
+ * @maxLength `128`
74
+ * @pattern `^.*$`
75
+ */
76
+ Key: string;
77
+ /**
78
+ * @minLength `0`
79
+ * @maxLength `255`
80
+ * @pattern `^.*$`
81
+ */
82
+ Value: string;
83
+ };
84
+ /**
85
+ * Resource type definition for AWS::NetworkFirewall::VpcEndpointAssociation
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html}
87
+ */
88
+ export declare class NetworkFirewallVpcEndpointAssociation extends $Resource<"AWS::NetworkFirewall::VpcEndpointAssociation", NetworkFirewallVpcEndpointAssociationProperties, NetworkFirewallVpcEndpointAssociationAttributes> {
89
+ static readonly Type = "AWS::NetworkFirewall::VpcEndpointAssociation";
90
+ constructor(logicalId: string, properties: NetworkFirewallVpcEndpointAssociationProperties, options?: $ResourceOptions);
91
+ }
92
+ //# sourceMappingURL=AWS-NetworkFirewall-VpcEndpointAssociation.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for AWS::NetworkFirewall::VpcEndpointAssociation
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html}
5
+ */
6
+ export class NetworkFirewallVpcEndpointAssociation extends $Resource {
7
+ static Type = "AWS::NetworkFirewall::VpcEndpointAssociation";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NetworkFirewallVpcEndpointAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-NetworkFirewall-VpcEndpointAssociation.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.349",
3
+ "version": "0.1.351",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },