@awboost/cfn-resource-types 0.1.245 → 0.1.247
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-Bedrock-KnowledgeBase.d.ts +4 -0
- package/lib/AWS-EC2-CapacityReservation.d.ts +2 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +5 -3
- package/lib/AWS-EC2-VerifiedAccessEndpoint.d.ts +98 -3
- package/lib/AWS-FMS-Policy.d.ts +1 -0
- package/lib/AWS-QBusiness-WebExperience.d.ts +17 -0
- package/lib/AWS-ResilienceHub-App.d.ts +0 -5
- package/lib/AWS-Timestream-InfluxDBInstance.d.ts +12 -2
- package/package.json +1 -1
|
@@ -82,6 +82,10 @@ export type BedrockEmbeddingModelConfiguration = {
|
|
|
82
82
|
* @max `4096`
|
|
83
83
|
*/
|
|
84
84
|
Dimensions?: number;
|
|
85
|
+
/**
|
|
86
|
+
* The data type for the vectors when using a model to convert text into vector embeddings.
|
|
87
|
+
*/
|
|
88
|
+
EmbeddingDataType?: "FLOAT32" | "BINARY";
|
|
85
89
|
};
|
|
86
90
|
/**
|
|
87
91
|
* Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
|
|
@@ -5,7 +5,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html}
|
|
6
6
|
*/
|
|
7
7
|
export type EC2CapacityReservationProperties = {
|
|
8
|
-
AvailabilityZone
|
|
8
|
+
AvailabilityZone?: string;
|
|
9
|
+
AvailabilityZoneId?: string;
|
|
9
10
|
EbsOptimized?: boolean;
|
|
10
11
|
EndDate?: string;
|
|
11
12
|
EndDateType?: string;
|
|
@@ -425,8 +425,9 @@ export type InstanceRequirements = {
|
|
|
425
425
|
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiB;
|
|
426
426
|
/**
|
|
427
427
|
* The accelerator types that must be on the instance type.
|
|
428
|
-
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
429
428
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
|
429
|
+
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
430
|
+
+ For instance types with Inference accelerators, specify ``inference``.
|
|
430
431
|
|
|
431
432
|
Default: Any accelerator type
|
|
432
433
|
*/
|
|
@@ -950,8 +951,9 @@ export type NetworkInterface = {
|
|
|
950
951
|
*/
|
|
951
952
|
Description?: string;
|
|
952
953
|
/**
|
|
953
|
-
|
|
954
|
-
|
|
954
|
+
* The device index for the network interface attachment. If the network interface is of type ``interface``, you must specify a device index.
|
|
955
|
+
If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance``, then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance``.
|
|
956
|
+
*/
|
|
955
957
|
DeviceIndex?: number;
|
|
956
958
|
/**
|
|
957
959
|
* The ENA Express configuration for the network interface.
|
|
@@ -8,11 +8,15 @@ export type EC2VerifiedAccessEndpointProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The DNS name for users to reach your application.
|
|
10
10
|
*/
|
|
11
|
-
ApplicationDomain
|
|
11
|
+
ApplicationDomain?: string;
|
|
12
12
|
/**
|
|
13
13
|
* The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application.
|
|
14
14
|
*/
|
|
15
15
|
AttachmentType: string;
|
|
16
|
+
/**
|
|
17
|
+
* The options for cidr type endpoint.
|
|
18
|
+
*/
|
|
19
|
+
CidrOptions?: CidrOptions;
|
|
16
20
|
/**
|
|
17
21
|
* A description for the AWS Verified Access endpoint.
|
|
18
22
|
*/
|
|
@@ -20,11 +24,11 @@ export type EC2VerifiedAccessEndpointProperties = {
|
|
|
20
24
|
/**
|
|
21
25
|
* The ARN of a public TLS/SSL certificate imported into or created with ACM.
|
|
22
26
|
*/
|
|
23
|
-
DomainCertificateArn
|
|
27
|
+
DomainCertificateArn?: string;
|
|
24
28
|
/**
|
|
25
29
|
* A custom identifier that gets prepended to a DNS name that is generated for the endpoint.
|
|
26
30
|
*/
|
|
27
|
-
EndpointDomainPrefix
|
|
31
|
+
EndpointDomainPrefix?: string;
|
|
28
32
|
/**
|
|
29
33
|
* The type of AWS Verified Access endpoint. Incoming application requests will be sent to an IP address, load balancer or a network interface depending on the endpoint type specified.The type of AWS Verified Access endpoint. Incoming application requests will be sent to an IP address, load balancer or a network interface depending on the endpoint type specified.
|
|
30
34
|
*/
|
|
@@ -45,6 +49,10 @@ export type EC2VerifiedAccessEndpointProperties = {
|
|
|
45
49
|
* The status of the Verified Access policy.
|
|
46
50
|
*/
|
|
47
51
|
PolicyEnabled?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* The options for rds type endpoint.
|
|
54
|
+
*/
|
|
55
|
+
RdsOptions?: RdsOptions;
|
|
48
56
|
/**
|
|
49
57
|
* The IDs of the security groups for the endpoint.
|
|
50
58
|
*/
|
|
@@ -96,6 +104,29 @@ export type EC2VerifiedAccessEndpointAttributes = {
|
|
|
96
104
|
*/
|
|
97
105
|
VerifiedAccessInstanceId: string;
|
|
98
106
|
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.CidrOptions`.
|
|
109
|
+
* The options for cidr type endpoint.
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.html}
|
|
111
|
+
*/
|
|
112
|
+
export type CidrOptions = {
|
|
113
|
+
/**
|
|
114
|
+
* The IP address range, in CIDR notation.
|
|
115
|
+
*/
|
|
116
|
+
Cidr?: string;
|
|
117
|
+
/**
|
|
118
|
+
* The list of port range.
|
|
119
|
+
*/
|
|
120
|
+
PortRanges?: PortRange[];
|
|
121
|
+
/**
|
|
122
|
+
* The IP protocol.
|
|
123
|
+
*/
|
|
124
|
+
Protocol?: string;
|
|
125
|
+
/**
|
|
126
|
+
* The IDs of the subnets.
|
|
127
|
+
*/
|
|
128
|
+
SubnetIds?: string[];
|
|
129
|
+
};
|
|
99
130
|
/**
|
|
100
131
|
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.LoadBalancerOptions`.
|
|
101
132
|
* The load balancer details if creating the AWS Verified Access endpoint as load-balancertype.
|
|
@@ -112,6 +143,10 @@ export type LoadBalancerOptions = {
|
|
|
112
143
|
* @max `65535`
|
|
113
144
|
*/
|
|
114
145
|
Port?: number;
|
|
146
|
+
/**
|
|
147
|
+
* The list of port range.
|
|
148
|
+
*/
|
|
149
|
+
PortRanges?: PortRange[];
|
|
115
150
|
/**
|
|
116
151
|
* The IP protocol.
|
|
117
152
|
*/
|
|
@@ -137,11 +172,71 @@ export type NetworkInterfaceOptions = {
|
|
|
137
172
|
* @max `65535`
|
|
138
173
|
*/
|
|
139
174
|
Port?: number;
|
|
175
|
+
/**
|
|
176
|
+
* The list of port ranges.
|
|
177
|
+
*/
|
|
178
|
+
PortRanges?: PortRange[];
|
|
140
179
|
/**
|
|
141
180
|
* The IP protocol.
|
|
142
181
|
*/
|
|
143
182
|
Protocol?: string;
|
|
144
183
|
};
|
|
184
|
+
/**
|
|
185
|
+
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.PortRange`.
|
|
186
|
+
* The IP port range.
|
|
187
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-portrange.html}
|
|
188
|
+
*/
|
|
189
|
+
export type PortRange = {
|
|
190
|
+
/**
|
|
191
|
+
* The first port in the range.
|
|
192
|
+
* @min `1`
|
|
193
|
+
* @max `65535`
|
|
194
|
+
*/
|
|
195
|
+
FromPort?: number;
|
|
196
|
+
/**
|
|
197
|
+
* The last port in the range.
|
|
198
|
+
* @min `1`
|
|
199
|
+
* @max `65535`
|
|
200
|
+
*/
|
|
201
|
+
ToPort?: number;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.RdsOptions`.
|
|
205
|
+
* The options for rds type endpoint.
|
|
206
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html}
|
|
207
|
+
*/
|
|
208
|
+
export type RdsOptions = {
|
|
209
|
+
/**
|
|
210
|
+
* The IP port number.
|
|
211
|
+
* @min `1`
|
|
212
|
+
* @max `65535`
|
|
213
|
+
*/
|
|
214
|
+
Port?: number;
|
|
215
|
+
/**
|
|
216
|
+
* The IP protocol.
|
|
217
|
+
*/
|
|
218
|
+
Protocol?: string;
|
|
219
|
+
/**
|
|
220
|
+
* The ARN of the RDS DB cluster.
|
|
221
|
+
*/
|
|
222
|
+
RdsDbClusterArn?: string;
|
|
223
|
+
/**
|
|
224
|
+
* The ARN of the RDS DB instance.
|
|
225
|
+
*/
|
|
226
|
+
RdsDbInstanceArn?: string;
|
|
227
|
+
/**
|
|
228
|
+
* The ARN of the RDS DB proxy.
|
|
229
|
+
*/
|
|
230
|
+
RdsDbProxyArn?: string;
|
|
231
|
+
/**
|
|
232
|
+
* The RDS endpoint.
|
|
233
|
+
*/
|
|
234
|
+
RdsEndpoint?: string;
|
|
235
|
+
/**
|
|
236
|
+
* The IDs of the subnets.
|
|
237
|
+
*/
|
|
238
|
+
SubnetIds?: string[];
|
|
239
|
+
};
|
|
145
240
|
/**
|
|
146
241
|
* Type definition for `AWS::EC2::VerifiedAccessEndpoint.SseSpecification`.
|
|
147
242
|
* The configuration options for customer provided KMS encryption.
|
package/lib/AWS-FMS-Policy.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export type QBusinessWebExperienceProperties = {
|
|
|
11
11
|
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
12
|
*/
|
|
13
13
|
ApplicationId: string;
|
|
14
|
+
BrowserExtensionConfiguration?: BrowserExtensionConfiguration;
|
|
14
15
|
CustomizationConfiguration?: CustomizationConfiguration;
|
|
15
16
|
IdentityProviderConfiguration?: IdentityProviderConfiguration;
|
|
16
17
|
/**
|
|
@@ -75,6 +76,22 @@ export type QBusinessWebExperienceAttributes = {
|
|
|
75
76
|
*/
|
|
76
77
|
WebExperienceId: string;
|
|
77
78
|
};
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::QBusiness::WebExperience.BrowserExtension`.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-browserextension.html}
|
|
82
|
+
*/
|
|
83
|
+
export type BrowserExtension = "FIREFOX" | "CHROME";
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::QBusiness::WebExperience.BrowserExtensionConfiguration`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-browserextensionconfiguration.html}
|
|
87
|
+
*/
|
|
88
|
+
export type BrowserExtensionConfiguration = {
|
|
89
|
+
/**
|
|
90
|
+
* @minLength `0`
|
|
91
|
+
* @maxLength `2`
|
|
92
|
+
*/
|
|
93
|
+
EnabledBrowserExtensions: BrowserExtension[];
|
|
94
|
+
};
|
|
78
95
|
/**
|
|
79
96
|
* Type definition for `AWS::QBusiness::WebExperience.CustomizationConfiguration`.
|
|
80
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html}
|
|
@@ -35,11 +35,6 @@ export type ResilienceHubAppProperties = {
|
|
|
35
35
|
* Defines the roles and credentials that AWS Resilience Hub would use while creating the application, importing its resources, and running an assessment.
|
|
36
36
|
*/
|
|
37
37
|
PermissionModel?: PermissionModel;
|
|
38
|
-
/**
|
|
39
|
-
* Amazon Resource Name (ARN) of the Regulatory Policy.
|
|
40
|
-
* @pattern `^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
|
|
41
|
-
*/
|
|
42
|
-
RegulatoryPolicyArn?: string;
|
|
43
38
|
/**
|
|
44
39
|
* Amazon Resource Name (ARN) of the Resiliency Policy.
|
|
45
40
|
* @pattern `^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
|
|
@@ -62,9 +62,13 @@ export type TimestreamInfluxDBInstanceProperties = {
|
|
|
62
62
|
* The unique name that is associated with the InfluxDB instance.
|
|
63
63
|
* @minLength `3`
|
|
64
64
|
* @maxLength `40`
|
|
65
|
-
* @pattern `^[a-zA-
|
|
65
|
+
* @pattern `^[a-zA-Z][a-zA-Z0-9]*(-[a-zA-Z0-9]+)*$`
|
|
66
66
|
*/
|
|
67
67
|
Name?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Network type of the InfluxDB Instance.
|
|
70
|
+
*/
|
|
71
|
+
NetworkType?: "IPV4" | "DUAL";
|
|
68
72
|
/**
|
|
69
73
|
* The organization for the InfluxDB instance.
|
|
70
74
|
* @minLength `1`
|
|
@@ -78,6 +82,12 @@ export type TimestreamInfluxDBInstanceProperties = {
|
|
|
78
82
|
* @pattern `^[a-zA-Z0-9]+$`
|
|
79
83
|
*/
|
|
80
84
|
Password?: string;
|
|
85
|
+
/**
|
|
86
|
+
* The port number on which InfluxDB accepts connections.
|
|
87
|
+
* @min `1024`
|
|
88
|
+
* @max `65535`
|
|
89
|
+
*/
|
|
90
|
+
Port?: number;
|
|
81
91
|
/**
|
|
82
92
|
* Attach a public IP to the customer ENI.
|
|
83
93
|
*/
|
|
@@ -146,7 +156,7 @@ export type TimestreamInfluxDBInstanceAttributes = {
|
|
|
146
156
|
/**
|
|
147
157
|
* Status of the InfluxDB Instance.
|
|
148
158
|
*/
|
|
149
|
-
Status: "CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED";
|
|
159
|
+
Status: "CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE" | "DELETED" | "FAILED";
|
|
150
160
|
};
|
|
151
161
|
/**
|
|
152
162
|
* Type definition for `AWS::Timestream::InfluxDBInstance.Tag`.
|