@awboost/cfn-resource-types 0.1.223 → 0.1.225
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-CloudFront-AnycastIpList.d.ts +90 -0
- package/lib/AWS-CloudFront-AnycastIpList.js +12 -0
- package/lib/AWS-CloudFront-Distribution.d.ts +24 -6
- package/lib/AWS-Connect-Queue.d.ts +0 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +40 -15
- package/lib/AWS-MediaConnect-Bridge.d.ts +15 -0
- package/lib/AWS-MediaConnect-BridgeSource.d.ts +15 -0
- package/lib/AWS-RDS-DBCluster.d.ts +5 -0
- package/lib/AWS-RDS-DBInstance.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,90 @@
|
|
|
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::CloudFront::AnycastIpList Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CloudFrontAnycastIpListProperties = {
|
|
8
|
+
IpCount: number;
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `64`
|
|
12
|
+
* @pattern `^[a-zA-Z0-9-_]{1,64}$`
|
|
13
|
+
*/
|
|
14
|
+
Name: string;
|
|
15
|
+
Tags?: Tags;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Attribute type definition for `AWS::CloudFront::AnycastIpList`.
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html#aws-resource-cloudfront-anycastiplist-return-values}
|
|
20
|
+
*/
|
|
21
|
+
export type CloudFrontAnycastIpListAttributes = {
|
|
22
|
+
AnycastIpList: {
|
|
23
|
+
AnycastIps: string[];
|
|
24
|
+
Arn: string;
|
|
25
|
+
Id: string;
|
|
26
|
+
IpCount: number;
|
|
27
|
+
LastModifiedTime: string;
|
|
28
|
+
/**
|
|
29
|
+
* @minLength `1`
|
|
30
|
+
* @maxLength `64`
|
|
31
|
+
* @pattern `^[a-zA-Z0-9-_]{1,64}$`
|
|
32
|
+
*/
|
|
33
|
+
Name: string;
|
|
34
|
+
Status: string;
|
|
35
|
+
};
|
|
36
|
+
ETag: string;
|
|
37
|
+
Id: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.AnycastIpList`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-anycastiplist.html}
|
|
42
|
+
*/
|
|
43
|
+
export type AnycastIpList = {
|
|
44
|
+
AnycastIps: string[];
|
|
45
|
+
Arn: string;
|
|
46
|
+
Id: string;
|
|
47
|
+
IpCount: number;
|
|
48
|
+
LastModifiedTime: string;
|
|
49
|
+
/**
|
|
50
|
+
* @minLength `1`
|
|
51
|
+
* @maxLength `64`
|
|
52
|
+
* @pattern `^[a-zA-Z0-9-_]{1,64}$`
|
|
53
|
+
*/
|
|
54
|
+
Name: string;
|
|
55
|
+
Status: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-tag.html}
|
|
60
|
+
*/
|
|
61
|
+
export type Tag = {
|
|
62
|
+
/**
|
|
63
|
+
* @minLength `1`
|
|
64
|
+
* @maxLength `128`
|
|
65
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
66
|
+
*/
|
|
67
|
+
Key: string;
|
|
68
|
+
/**
|
|
69
|
+
* @minLength `0`
|
|
70
|
+
* @maxLength `256`
|
|
71
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
72
|
+
*/
|
|
73
|
+
Value?: string;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.Tags`.
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-tags.html}
|
|
78
|
+
*/
|
|
79
|
+
export type Tags = {
|
|
80
|
+
Items?: Tag[];
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Definition of AWS::CloudFront::AnycastIpList Resource Type
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html}
|
|
85
|
+
*/
|
|
86
|
+
export declare class CloudFrontAnycastIpList extends $Resource<"AWS::CloudFront::AnycastIpList", CloudFrontAnycastIpListProperties, CloudFrontAnycastIpListAttributes> {
|
|
87
|
+
static readonly Type = "AWS::CloudFront::AnycastIpList";
|
|
88
|
+
constructor(logicalId: string, properties: CloudFrontAnycastIpListProperties, options?: $ResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=AWS-CloudFront-AnycastIpList.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::CloudFront::AnycastIpList Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CloudFrontAnycastIpList extends $Resource {
|
|
7
|
+
static Type = "AWS::CloudFront::AnycastIpList";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CloudFrontAnycastIpList.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-CloudFront-AnycastIpList.js.map
|
|
@@ -82,6 +82,9 @@ export type CacheBehavior = {
|
|
|
82
82
|
* A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
|
|
83
83
|
*/
|
|
84
84
|
FunctionAssociations?: FunctionAssociation[];
|
|
85
|
+
/**
|
|
86
|
+
* The gRPC configuration for your cache behavior.
|
|
87
|
+
*/
|
|
85
88
|
GrpcConfig?: GrpcConfig;
|
|
86
89
|
/**
|
|
87
90
|
* A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.
|
|
@@ -302,6 +305,9 @@ export type DefaultCacheBehavior = {
|
|
|
302
305
|
* A list of CloudFront functions that are associated with this cache behavior. Your functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
|
|
303
306
|
*/
|
|
304
307
|
FunctionAssociations?: FunctionAssociation[];
|
|
308
|
+
/**
|
|
309
|
+
* The gRPC configuration for your cache behavior.
|
|
310
|
+
*/
|
|
305
311
|
GrpcConfig?: GrpcConfig;
|
|
306
312
|
/**
|
|
307
313
|
* A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.
|
|
@@ -370,6 +376,7 @@ export type DistributionConfig = {
|
|
|
370
376
|
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
|
|
371
377
|
*/
|
|
372
378
|
Aliases?: string[];
|
|
379
|
+
AnycastIpListId?: string;
|
|
373
380
|
/**
|
|
374
381
|
* An alias for the CF distribution's domain name.
|
|
375
382
|
This property is legacy. We recommend that you use [Aliases](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-aliases) instead.
|
|
@@ -405,12 +412,12 @@ export type DistributionConfig = {
|
|
|
405
412
|
*/
|
|
406
413
|
DefaultCacheBehavior: DefaultCacheBehavior;
|
|
407
414
|
/**
|
|
408
|
-
*
|
|
409
|
-
|
|
415
|
+
* When a viewer requests the root URL for your distribution, the default root object is the object that you want CloudFront to request from your origin. For example, if your root URL is ``https://www.example.com``, you can specify CloudFront to return the ``index.html`` file as the default root object. You can specify a default root object so that viewers see a specific file or object, instead of another object in your distribution (for example, ``https://www.example.com/product-description.html``). A default root object avoids exposing the contents of your distribution.
|
|
416
|
+
You can specify the object name or a path to the object name (for example, ``index.html`` or ``exampleFolderName/index.html``). Your string can't begin with a forward slash (``/``). Only specify the object name or the path to the object.
|
|
410
417
|
If you don't want to specify a default root object when you create a distribution, include an empty ``DefaultRootObject`` element.
|
|
411
418
|
To delete the default root object from an existing distribution, update the distribution configuration and include an empty ``DefaultRootObject`` element.
|
|
412
419
|
To replace the default root object, update the distribution configuration and specify the new object.
|
|
413
|
-
For more information about the default root object, see [
|
|
420
|
+
For more information about the default root object, see [Specify a default root object](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html) in the *Amazon CloudFront Developer Guide*.
|
|
414
421
|
*/
|
|
415
422
|
DefaultRootObject?: string;
|
|
416
423
|
/**
|
|
@@ -558,9 +565,15 @@ export type GeoRestriction = {
|
|
|
558
565
|
};
|
|
559
566
|
/**
|
|
560
567
|
* Type definition for `AWS::CloudFront::Distribution.GrpcConfig`.
|
|
568
|
+
* Amazon CloudFront supports gRPC, an open-source remote procedure call (RPC) framework built on HTTP/2. gRPC offers bi-directional streaming and binary protocol that buffers payloads, making it suitable for applications that require low latency communications.
|
|
569
|
+
To enable your distribution to handle gRPC requests, you must include HTTP/2 as one of the supported ``HTTP`` versions and allow ``HTTP`` methods, including ``POST``.
|
|
570
|
+
For more information, see [Using gRPC with CloudFront distributions](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-using-grpc.html) in the *Amazon CloudFront Developer Guide*.
|
|
561
571
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-grpcconfig.html}
|
|
562
572
|
*/
|
|
563
573
|
export type GrpcConfig = {
|
|
574
|
+
/**
|
|
575
|
+
* Enables your CloudFront distribution to receive gRPC requests and to proxy them directly to your origins.
|
|
576
|
+
*/
|
|
564
577
|
Enabled: boolean;
|
|
565
578
|
};
|
|
566
579
|
/**
|
|
@@ -635,12 +648,13 @@ export type LegacyS3Origin = {
|
|
|
635
648
|
};
|
|
636
649
|
/**
|
|
637
650
|
* Type definition for `AWS::CloudFront::Distribution.Logging`.
|
|
638
|
-
* A complex type that
|
|
651
|
+
* A complex type that specifies whether access logs are written for the distribution.
|
|
652
|
+
If you already enabled standard logging (legacy) and you want to enable standard logging (v2) to send your access logs to Amazon S3, we recommend that you specify a *different* Amazon S3 bucket or use a *separate path* in the same bucket (for example, use a log prefix or partitioning). This helps you keep track of which log files are associated with which logging subscription and prevents log files from overwriting each other. For more information, see [Standard logging (access logs)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html) in the *Amazon CloudFront Developer Guide*.
|
|
639
653
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-logging.html}
|
|
640
654
|
*/
|
|
641
655
|
export type Logging = {
|
|
642
656
|
/**
|
|
643
|
-
* The Amazon S3 bucket to store the access logs in, for example, ``
|
|
657
|
+
* The Amazon S3 bucket to store the access logs in, for example, ``amzn-s3-demo-bucket.s3.amazonaws.com``.
|
|
644
658
|
*/
|
|
645
659
|
Bucket?: string;
|
|
646
660
|
/**
|
|
@@ -736,7 +750,8 @@ export type OriginCustomHeader = {
|
|
|
736
750
|
};
|
|
737
751
|
/**
|
|
738
752
|
* Type definition for `AWS::CloudFront::Distribution.OriginGroup`.
|
|
739
|
-
* An origin group includes two origins (a primary origin and a
|
|
753
|
+
* An origin group includes two origins (a primary origin and a secondary origin to failover to) and a failover criteria that you specify. You create an origin group to support origin failover in CloudFront. When you create or update a distribution, you can specify the origin group instead of a single origin, and CloudFront will failover from the primary origin to the secondary origin under the failover conditions that you've chosen.
|
|
754
|
+
Optionally, you can choose selection criteria for your origin group to specify how your origins are selected when your distribution routes viewer requests.
|
|
740
755
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroup.html}
|
|
741
756
|
*/
|
|
742
757
|
export type OriginGroup = {
|
|
@@ -752,6 +767,9 @@ export type OriginGroup = {
|
|
|
752
767
|
* A complex type that contains information about the origins in an origin group.
|
|
753
768
|
*/
|
|
754
769
|
Members: OriginGroupMembers;
|
|
770
|
+
/**
|
|
771
|
+
* The selection criteria for the origin group. For more information, see [Create an origin group](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/high_availability_origin_failover.html#concept_origin_groups.creating) in the *Amazon CloudFront Developer Guide*.
|
|
772
|
+
*/
|
|
755
773
|
SelectionCriteria?: OriginGroupSelectionCriteria;
|
|
756
774
|
};
|
|
757
775
|
/**
|
|
@@ -22,7 +22,7 @@ export type EC2LaunchTemplateProperties = {
|
|
|
22
22
|
LaunchTemplateName?: string;
|
|
23
23
|
/**
|
|
24
24
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
|
25
|
-
To specify the tags for
|
|
25
|
+
To specify the tags for resources that are created during instance launch, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications).
|
|
26
26
|
*/
|
|
27
27
|
TagSpecifications?: LaunchTemplateTagSpecification[];
|
|
28
28
|
/**
|
|
@@ -86,9 +86,14 @@ export type BaselineEbsBandwidthMbps = {
|
|
|
86
86
|
};
|
|
87
87
|
/**
|
|
88
88
|
* Type definition for `AWS::EC2::LaunchTemplate.BaselinePerformanceFactors`.
|
|
89
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
|
|
90
|
+
Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying ``c6i`` would use the CPU performance of the ``c6i`` family as the baseline reference.
|
|
89
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-baselineperformancefactors.html}
|
|
90
92
|
*/
|
|
91
93
|
export type BaselinePerformanceFactors = {
|
|
94
|
+
/**
|
|
95
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
96
|
+
*/
|
|
92
97
|
Cpu?: Cpu;
|
|
93
98
|
};
|
|
94
99
|
/**
|
|
@@ -124,7 +129,8 @@ export type BlockDeviceMapping = {
|
|
|
124
129
|
export type CapacityReservationSpecification = {
|
|
125
130
|
/**
|
|
126
131
|
* Indicates the instance's Capacity Reservation preferences. Possible preferences include:
|
|
127
|
-
+ ``
|
|
132
|
+
+ ``capacity-reservations-only`` - The instance will only run in a Capacity Reservation or Capacity Reservation group. If capacity isn't available, the instance will fail to launch.
|
|
133
|
+
+ ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone, tenancy).
|
|
128
134
|
+ ``none`` - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.
|
|
129
135
|
*/
|
|
130
136
|
CapacityReservationPreference?: string;
|
|
@@ -170,11 +176,12 @@ export type ConnectionTrackingSpecification = {
|
|
|
170
176
|
};
|
|
171
177
|
/**
|
|
172
178
|
* Type definition for `AWS::EC2::LaunchTemplate.Cpu`.
|
|
179
|
+
* Specifies the CPU performance to consider when using an instance family as the baseline reference.
|
|
173
180
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-cpu.html}
|
|
174
181
|
*/
|
|
175
182
|
export type Cpu = {
|
|
176
183
|
/**
|
|
177
|
-
*
|
|
184
|
+
* The instance family to use as the baseline reference for CPU performance. All instance types that match your specified attributes are compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
|
178
185
|
*/
|
|
179
186
|
References?: Reference[];
|
|
180
187
|
};
|
|
@@ -238,7 +245,7 @@ export type Ebs = {
|
|
|
238
245
|
*/
|
|
239
246
|
Iops?: number;
|
|
240
247
|
/**
|
|
241
|
-
*
|
|
248
|
+
* Identifier (key ID, key alias, key ARN, or alias ARN) of the customer managed KMS key to use for EBS encryption.
|
|
242
249
|
*/
|
|
243
250
|
KmsKeyId?: string;
|
|
244
251
|
/**
|
|
@@ -372,7 +379,7 @@ export type InstanceMarketOptions = {
|
|
|
372
379
|
|
|
373
380
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
374
381
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
375
|
-
For more information, see [
|
|
382
|
+
For more information, see [Specify attributes for instance type selection for EC2 Fleet or Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html) and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
376
383
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-instancerequirements.html}
|
|
377
384
|
*/
|
|
378
385
|
export type InstanceRequirements = {
|
|
@@ -420,7 +427,6 @@ export type InstanceRequirements = {
|
|
|
420
427
|
* The accelerator types that must be on the instance type.
|
|
421
428
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
422
429
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
|
423
|
-
+ For instance types with inference accelerators, specify ``inference``.
|
|
424
430
|
|
|
425
431
|
Default: Any accelerator type
|
|
426
432
|
*/
|
|
@@ -447,6 +453,9 @@ export type InstanceRequirements = {
|
|
|
447
453
|
Default: No minimum or maximum limits
|
|
448
454
|
*/
|
|
449
455
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbps;
|
|
456
|
+
/**
|
|
457
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application. Currently, this parameter only supports CPU performance as a baseline performance factor. For more information, see [Performance protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection) in the *Amazon EC2 User Guide*.
|
|
458
|
+
*/
|
|
450
459
|
BaselinePerformanceFactors?: BaselinePerformanceFactors;
|
|
451
460
|
/**
|
|
452
461
|
* Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html).
|
|
@@ -462,6 +471,7 @@ export type InstanceRequirements = {
|
|
|
462
471
|
+ For instance types with Intel CPUs, specify ``intel``.
|
|
463
472
|
+ For instance types with AMD CPUs, specify ``amd``.
|
|
464
473
|
+ For instance types with AWS CPUs, specify ``amazon-web-services``.
|
|
474
|
+
+ For instance types with Apple CPUs, specify ``apple``.
|
|
465
475
|
|
|
466
476
|
Don't confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.
|
|
467
477
|
Default: Any manufacturer
|
|
@@ -636,7 +646,8 @@ export type LaunchTemplateData = {
|
|
|
636
646
|
*/
|
|
637
647
|
ElasticGpuSpecifications?: ElasticGpuSpecification[];
|
|
638
648
|
/**
|
|
639
|
-
*
|
|
649
|
+
* Amazon Elastic Inference is no longer available.
|
|
650
|
+
An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
640
651
|
You cannot specify accelerators from different generations in the same request.
|
|
641
652
|
Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
|
642
653
|
*/
|
|
@@ -684,7 +695,7 @@ export type LaunchTemplateData = {
|
|
|
684
695
|
|
|
685
696
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
686
697
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
687
|
-
For more information, see [
|
|
698
|
+
For more information, see [Specify attributes for instance type selection for EC2 Fleet or Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html) and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
688
699
|
*/
|
|
689
700
|
InstanceRequirements?: InstanceRequirements;
|
|
690
701
|
/**
|
|
@@ -747,8 +758,7 @@ export type LaunchTemplateData = {
|
|
|
747
758
|
*/
|
|
748
759
|
SecurityGroups?: string[];
|
|
749
760
|
/**
|
|
750
|
-
* The tags to apply to
|
|
751
|
-
To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
|
761
|
+
* The tags to apply to resources that are created during instance launch.
|
|
752
762
|
To tag the launch template itself, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-tagspecifications).
|
|
753
763
|
*/
|
|
754
764
|
TagSpecifications?: TagSpecification[];
|
|
@@ -778,6 +788,7 @@ export type LaunchTemplateElasticInferenceAccelerator = {
|
|
|
778
788
|
/**
|
|
779
789
|
* Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
|
|
780
790
|
* Specifies the tags to apply to the launch template during creation.
|
|
791
|
+
To specify the tags for the resources that are created during instance launch, use [AWS::EC2::LaunchTemplate TagSpecification](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html).
|
|
781
792
|
``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
|
|
782
793
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatetagspecification.html}
|
|
783
794
|
*/
|
|
@@ -951,9 +962,10 @@ export type NetworkInterface = {
|
|
|
951
962
|
*/
|
|
952
963
|
Groups?: string[];
|
|
953
964
|
/**
|
|
954
|
-
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
965
|
+
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa`` or ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
955
966
|
If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
|
956
|
-
|
|
967
|
+
If you specify ``efa-only``, do not assign any IP addresses to the network interface. EFA-only network interfaces do not support IP addresses.
|
|
968
|
+
Valid values: ``interface`` | ``efa`` | ``efa-only``
|
|
957
969
|
*/
|
|
958
970
|
InterfaceType?: string;
|
|
959
971
|
/**
|
|
@@ -1105,12 +1117,25 @@ export type PrivateIpAdd = {
|
|
|
1105
1117
|
};
|
|
1106
1118
|
/**
|
|
1107
1119
|
* Type definition for `AWS::EC2::LaunchTemplate.Reference`.
|
|
1120
|
+
* Specifies an instance family to use as the baseline reference for CPU performance.
|
|
1108
1121
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-reference.html}
|
|
1109
1122
|
*/
|
|
1110
1123
|
export type Reference = {
|
|
1111
1124
|
/**
|
|
1112
|
-
|
|
1113
|
-
|
|
1125
|
+
* The instance family to use as a baseline reference.
|
|
1126
|
+
Ensure that you specify the correct value for the instance family. The instance family is everything before the period (``.``) in the instance type name. For example, in the instance type ``c6i.large``, the instance family is ``c6i``, not ``c6``. For more information, see [Amazon EC2 instance type naming conventions](https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html) in *Amazon EC2 Instance Types*.
|
|
1127
|
+
The following instance families are *not supported* for performance protection:
|
|
1128
|
+
+ ``c1``
|
|
1129
|
+
+ ``g3`` | ``g3s``
|
|
1130
|
+
+ ``hpc7g``
|
|
1131
|
+
+ ``m1`` | ``m2``
|
|
1132
|
+
+ ``mac1`` | ``mac2`` | ``mac2-m1ultra`` | ``mac2-m2`` | ``mac2-m2pro``
|
|
1133
|
+
+ ``p3dn`` | ``p4d`` | ``p5``
|
|
1134
|
+
+ ``t1``
|
|
1135
|
+
+ ``u-12tb1`` | ``u-18tb1`` | ``u-24tb1`` | ``u-3tb1`` | ``u-6tb1`` | ``u-9tb1`` | ``u7i-12tb`` | ``u7in-16tb`` | ``u7in-24tb`` | ``u7in-32tb``
|
|
1136
|
+
|
|
1137
|
+
If you enable performance protection by specifying a supported instance family, the returned instance types will exclude the above unsupported instance families.
|
|
1138
|
+
*/
|
|
1114
1139
|
InstanceFamily?: string;
|
|
1115
1140
|
};
|
|
1116
1141
|
/**
|
|
@@ -1164,7 +1189,7 @@ export type Tag = {
|
|
|
1164
1189
|
};
|
|
1165
1190
|
/**
|
|
1166
1191
|
* Type definition for `AWS::EC2::LaunchTemplate.TagSpecification`.
|
|
1167
|
-
* Specifies the tags to apply to
|
|
1192
|
+
* Specifies the tags to apply to resources that are created during instance launch.
|
|
1168
1193
|
``TagSpecification`` is a property type of [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications). [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications) is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
|
1169
1194
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html}
|
|
1170
1195
|
*/
|
|
@@ -103,6 +103,10 @@ export type BridgeNetworkSource = {
|
|
|
103
103
|
* The network source multicast IP.
|
|
104
104
|
*/
|
|
105
105
|
MulticastIp: string;
|
|
106
|
+
/**
|
|
107
|
+
* The settings related to the multicast source.
|
|
108
|
+
*/
|
|
109
|
+
MulticastSourceSettings?: MulticastSourceSettings;
|
|
106
110
|
/**
|
|
107
111
|
* The name of the network source.
|
|
108
112
|
*/
|
|
@@ -201,6 +205,17 @@ export type IngressGatewayBridge = {
|
|
|
201
205
|
*/
|
|
202
206
|
MaxOutputs: number;
|
|
203
207
|
};
|
|
208
|
+
/**
|
|
209
|
+
* Type definition for `AWS::MediaConnect::Bridge.MulticastSourceSettings`.
|
|
210
|
+
* The settings related to the multicast source.
|
|
211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-multicastsourcesettings.html}
|
|
212
|
+
*/
|
|
213
|
+
export type MulticastSourceSettings = {
|
|
214
|
+
/**
|
|
215
|
+
* The IP address of the source for source-specific multicast (SSM).
|
|
216
|
+
*/
|
|
217
|
+
MulticastSourceIp?: string;
|
|
218
|
+
};
|
|
204
219
|
/**
|
|
205
220
|
* Type definition for `AWS::MediaConnect::Bridge.ProtocolEnum`.
|
|
206
221
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridge-protocolenum.html}
|
|
@@ -47,6 +47,10 @@ export type BridgeNetworkSource = {
|
|
|
47
47
|
* The network source multicast IP.
|
|
48
48
|
*/
|
|
49
49
|
MulticastIp: string;
|
|
50
|
+
/**
|
|
51
|
+
* The settings related to the multicast source.
|
|
52
|
+
*/
|
|
53
|
+
MulticastSourceSettings?: MulticastSourceSettings;
|
|
50
54
|
/**
|
|
51
55
|
* The network source's gateway network name.
|
|
52
56
|
*/
|
|
@@ -60,6 +64,17 @@ export type BridgeNetworkSource = {
|
|
|
60
64
|
*/
|
|
61
65
|
Protocol: ProtocolEnum;
|
|
62
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::MediaConnect::BridgeSource.MulticastSourceSettings`.
|
|
69
|
+
* The settings related to the multicast source.
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridgesource-multicastsourcesettings.html}
|
|
71
|
+
*/
|
|
72
|
+
export type MulticastSourceSettings = {
|
|
73
|
+
/**
|
|
74
|
+
* The IP address of the source for source-specific multicast (SSM).
|
|
75
|
+
*/
|
|
76
|
+
MulticastSourceIp?: string;
|
|
77
|
+
};
|
|
63
78
|
/**
|
|
64
79
|
* Type definition for `AWS::MediaConnect::BridgeSource.ProtocolEnum`.
|
|
65
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-bridgesource-protocolenum.html}
|
|
@@ -120,6 +120,7 @@ export type RDSDBClusterProperties = {
|
|
|
120
120
|
* Reserved for future use.
|
|
121
121
|
*/
|
|
122
122
|
DBSystemId?: string;
|
|
123
|
+
DatabaseInsightsMode?: string;
|
|
123
124
|
/**
|
|
124
125
|
* The name of your database. If you don't provide a name, then Amazon RDS won't create a database in this DB cluster. For naming constraints, see [Naming Constraints](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_Limits.html#RDS_Limits.Constraints) in the *Amazon Aurora User Guide*.
|
|
125
126
|
Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
@@ -646,6 +647,10 @@ export type ServerlessV2ScalingConfiguration = {
|
|
|
646
647
|
* The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don't support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.
|
|
647
648
|
*/
|
|
648
649
|
MinCapacity?: number;
|
|
650
|
+
/**
|
|
651
|
+
* Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it.
|
|
652
|
+
Specify a value between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.
|
|
653
|
+
*/
|
|
649
654
|
SecondsUntilAutoPause?: number;
|
|
650
655
|
};
|
|
651
656
|
/**
|