@awboost/cfn-resource-types 0.1.311 → 0.1.313

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.
@@ -341,7 +341,7 @@ export type PointInTimeRecoverySpecification = {
341
341
  export type Projection = {
342
342
  /**
343
343
  * Represents the non-key attribute names which will be projected into the index.
344
- For local secondary indexes, the total count of ``NonKeyAttributes`` summed across all of the local secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
344
+ For global and local secondary indexes, the total count of ``NonKeyAttributes`` summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. This limit only applies when you specify the ProjectionType of ``INCLUDE``. You still can specify the ProjectionType of ``ALL`` to project all attributes from the source table, even if the table has more than 100 attributes.
345
345
  */
346
346
  NonKeyAttributes?: string[];
347
347
  /**
@@ -273,7 +273,7 @@ export type Ebs = {
273
273
  };
274
274
  /**
275
275
  * Type definition for `AWS::EC2::LaunchTemplate.ElasticGpuSpecification`.
276
- * Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.
276
+ * Amazon Elastic Graphics reached end of life on January 8, 2024.
277
277
  Specifies a specification for an Elastic GPU for an Amazon EC2 launch template.
278
278
  ``ElasticGpuSpecification`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
279
279
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-elasticgpuspecification.html}
@@ -427,7 +427,6 @@ export type InstanceRequirements = {
427
427
  * The accelerator types that must be on the instance type.
428
428
  + For instance types with FPGA accelerators, specify ``fpga``.
429
429
  + For instance types with GPU accelerators, specify ``gpu``.
430
- + For instance types with Inference accelerators, specify ``inference``.
431
430
 
432
431
  Default: Any accelerator type
433
432
  */
@@ -643,14 +642,13 @@ export type LaunchTemplateData = {
643
642
  EbsOptimized?: boolean;
644
643
  /**
645
644
  * Deprecated.
646
- Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.
645
+ Amazon Elastic Graphics reached end of life on January 8, 2024.
647
646
  */
648
647
  ElasticGpuSpecifications?: ElasticGpuSpecification[];
649
648
  /**
650
649
  * Amazon Elastic Inference is no longer available.
651
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.
652
651
  You cannot specify accelerators from different generations in the same request.
653
- 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.
654
652
  */
655
653
  ElasticInferenceAccelerators?: LaunchTemplateElasticInferenceAccelerator[];
656
654
  /**
@@ -774,7 +772,8 @@ export type LaunchTemplateData = {
774
772
  };
775
773
  /**
776
774
  * Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateElasticInferenceAccelerator`.
777
- * Specifies an elastic inference accelerator.
775
+ * Amazon Elastic Inference is no longer available.
776
+ Specifies an elastic inference accelerator.
778
777
  ``LaunchTemplateElasticInferenceAccelerator`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
779
778
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplateelasticinferenceaccelerator.html}
780
779
  */
@@ -954,7 +953,7 @@ export type NetworkInterface = {
954
953
  */
955
954
  Description?: string;
956
955
  /**
957
- * The device index for the network interface attachment. If the network interface is of type ``interface``, you must specify a device index.
956
+ * The device index for the network interface attachment. The primary network interface has a device index of 0. If the network interface is of type ``interface``, you must specify a device index.
958
957
  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``.
959
958
  */
960
959
  DeviceIndex?: number;
@@ -1043,12 +1042,14 @@ export type NetworkInterfaceCount = {
1043
1042
  };
1044
1043
  /**
1045
1044
  * Type definition for `AWS::EC2::LaunchTemplate.NetworkPerformanceOptions`.
1045
+ * Contains settings for the network performance options for the instance.
1046
1046
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkperformanceoptions.html}
1047
1047
  */
1048
1048
  export type NetworkPerformanceOptions = {
1049
1049
  /**
1050
- * Specifies the performance options of your instance or sets it to default.
1051
- */
1050
+ * Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:
1051
+ + default This option uses the standard bandwidth configuration for your instance type. + vpc-1 This option boosts your networking baseline bandwidth and reduces your EBS baseline bandwidth. + ebs-1 This option boosts your EBS baseline bandwidth and reduces your networking baseline bandwidth.
1052
+ */
1052
1053
  BandwidthWeighting?: string;
1053
1054
  };
1054
1055
  /**
@@ -42,6 +42,11 @@ export type EventsApiDestinationAttributes = {
42
42
  * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:api-destination/[\.\-_A-Za-z0-9]+/[\-A-Za-z0-9]+$`
43
43
  */
44
44
  Arn: string;
45
+ /**
46
+ * The arn of the api destination to be used in IAM policies.
47
+ * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:api-destination/[\.\-_A-Za-z0-9]+$`
48
+ */
49
+ ArnForPolicy: string;
45
50
  };
46
51
  /**
47
52
  * Resource Type definition for AWS::Events::ApiDestination.
@@ -13,6 +13,11 @@ export type EventsArchiveProperties = {
13
13
  ArchiveName?: string;
14
14
  Description?: string;
15
15
  EventPattern?: Record<string, any>;
16
+ /**
17
+ * @minLength `0`
18
+ * @maxLength `2048`
19
+ */
20
+ KmsKeyIdentifier?: string;
16
21
  RetentionDays?: number;
17
22
  SourceArn: string;
18
23
  };
@@ -36,6 +36,11 @@ export type EventsConnectionAttributes = {
36
36
  * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+\/[\-A-Za-z0-9]+$`
37
37
  */
38
38
  Arn: string;
39
+ /**
40
+ * The arn of the connection resource to be used in IAM policies.
41
+ * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+$`
42
+ */
43
+ ArnForPolicy: string;
39
44
  AuthParameters: {
40
45
  ConnectivityParameters: {
41
46
  ResourceParameters: {
@@ -31,8 +31,9 @@ export type LambdaEventSourceMappingProperties = {
31
31
  */
32
32
  BatchSize?: number;
33
33
  /**
34
- * (Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry. The default value is false.
35
- */
34
+ * (Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry. The default value is false.
35
+ When using ``BisectBatchOnFunctionError``, check the ``BatchSize`` parameter in the ``OnFailure`` destination message's metadata. The ``BatchSize`` could be greater than 1 since LAM consolidates failed messages metadata when writing to the ``OnFailure`` destination.
36
+ */
36
37
  BisectBatchOnFunctionError?: boolean;
37
38
  /**
38
39
  * (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka event sources only) A configuration object that specifies the destination of an event after Lambda processes it.
@@ -22,7 +22,7 @@ export type LaunchWizardDeploymentProperties = {
22
22
  /**
23
23
  * LaunchWizard deployment specifications
24
24
  */
25
- Specifications: DeploymentSpecifications;
25
+ Specifications?: DeploymentSpecifications;
26
26
  /**
27
27
  * Tags for LaunchWizard deployment
28
28
  */