@awboost/cfn-resource-types 0.1.210 → 0.1.211

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.
@@ -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 the resources that are created when an instance is launched, you must use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications).
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
- + ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).
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;
@@ -238,7 +244,7 @@ export type Ebs = {
238
244
  */
239
245
  Iops?: number;
240
246
  /**
241
- * The ARN of the symmetric KMSlong (KMS) CMK used for encryption.
247
+ * Identifier (key ID, key alias, key ARN, or alias ARN) of the customer managed KMS key to use for EBS encryption.
242
248
  */
243
249
  KmsKeyId?: string;
244
250
  /**
@@ -372,7 +378,7 @@ export type InstanceMarketOptions = {
372
378
 
373
379
  If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
374
380
  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 [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-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*.
381
+ 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
382
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-instancerequirements.html}
377
383
  */
378
384
  export type InstanceRequirements = {
@@ -420,7 +426,6 @@ export type InstanceRequirements = {
420
426
  * The accelerator types that must be on the instance type.
421
427
  + For instance types with GPU accelerators, specify ``gpu``.
422
428
  + For instance types with FPGA accelerators, specify ``fpga``.
423
- + For instance types with inference accelerators, specify ``inference``.
424
429
 
425
430
  Default: Any accelerator type
426
431
  */
@@ -447,6 +452,9 @@ export type InstanceRequirements = {
447
452
  Default: No minimum or maximum limits
448
453
  */
449
454
  BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbps;
455
+ /**
456
+ * 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*.
457
+ */
450
458
  BaselinePerformanceFactors?: BaselinePerformanceFactors;
451
459
  /**
452
460
  * 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 +470,7 @@ export type InstanceRequirements = {
462
470
  + For instance types with Intel CPUs, specify ``intel``.
463
471
  + For instance types with AMD CPUs, specify ``amd``.
464
472
  + For instance types with AWS CPUs, specify ``amazon-web-services``.
473
+ + For instance types with Apple CPUs, specify ``apple``.
465
474
 
466
475
  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
476
  Default: Any manufacturer
@@ -636,7 +645,8 @@ export type LaunchTemplateData = {
636
645
  */
637
646
  ElasticGpuSpecifications?: ElasticGpuSpecification[];
638
647
  /**
639
- * 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.
648
+ * Amazon Elastic Inference is no longer available.
649
+ 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
650
  You cannot specify accelerators from different generations in the same request.
641
651
  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
652
  */
@@ -684,7 +694,7 @@ export type LaunchTemplateData = {
684
694
 
685
695
  If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
686
696
  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 [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-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*.
697
+ 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
698
  */
689
699
  InstanceRequirements?: InstanceRequirements;
690
700
  /**
@@ -722,6 +732,7 @@ export type LaunchTemplateData = {
722
732
  * The network interfaces for the instance.
723
733
  */
724
734
  NetworkInterfaces?: NetworkInterface[];
735
+ NetworkPerformanceOptions?: unknown;
725
736
  /**
726
737
  * The placement for the instance.
727
738
  */
@@ -746,8 +757,7 @@ export type LaunchTemplateData = {
746
757
  */
747
758
  SecurityGroups?: string[];
748
759
  /**
749
- * The tags to apply to the resources that are created during instance launch.
750
- To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
760
+ * The tags to apply to resources that are created during instance launch.
751
761
  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).
752
762
  */
753
763
  TagSpecifications?: TagSpecification[];
@@ -777,6 +787,7 @@ export type LaunchTemplateElasticInferenceAccelerator = {
777
787
  /**
778
788
  * Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
779
789
  * Specifies the tags to apply to the launch template during creation.
790
+ 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).
780
791
  ``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
781
792
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatetagspecification.html}
782
793
  */
@@ -950,9 +961,10 @@ export type NetworkInterface = {
950
961
  */
951
962
  Groups?: string[];
952
963
  /**
953
- * 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*.
964
+ * 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*.
954
965
  If you are not creating an EFA, specify ``interface`` or omit this parameter.
955
- Valid values: ``interface`` | ``efa``
966
+ If you specify ``efa-only``, do not assign any IP addresses to the network interface. EFA-only network interfaces do not support IP addresses.
967
+ Valid values: ``interface`` | ``efa`` | ``efa-only``
956
968
  */
957
969
  InterfaceType?: string;
958
970
  /**
@@ -1107,9 +1119,6 @@ export type PrivateIpAdd = {
1107
1119
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-reference.html}
1108
1120
  */
1109
1121
  export type Reference = {
1110
- /**
1111
- * The instance family to refer. Ensure that you specify the correct family name. For example, C6i and C6g are valid values, but C6 is not.
1112
- */
1113
1122
  InstanceFamily?: string;
1114
1123
  };
1115
1124
  /**
@@ -1163,7 +1172,7 @@ export type Tag = {
1163
1172
  };
1164
1173
  /**
1165
1174
  * Type definition for `AWS::EC2::LaunchTemplate.TagSpecification`.
1166
- * Specifies the tags to apply to a resource when the resource is created for the launch template.
1175
+ * Specifies the tags to apply to resources that are created during instance launch.
1167
1176
  ``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).
1168
1177
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html}
1169
1178
  */
@@ -31,6 +31,7 @@ export type QBusinessDataSourceProperties = {
31
31
  * @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
32
32
  */
33
33
  IndexId: string;
34
+ MediaExtractionConfiguration?: MediaExtractionConfiguration;
34
35
  /**
35
36
  * @minLength `0`
36
37
  * @maxLength `1284`
@@ -189,6 +190,18 @@ export type HookConfiguration = {
189
190
  */
190
191
  S3BucketName?: string;
191
192
  };
193
+ /**
194
+ * Type definition for `AWS::QBusiness::DataSource.ImageExtractionConfiguration`.
195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-imageextractionconfiguration.html}
196
+ */
197
+ export type ImageExtractionConfiguration = {
198
+ ImageExtractionStatus: ImageExtractionStatus;
199
+ };
200
+ /**
201
+ * Type definition for `AWS::QBusiness::DataSource.ImageExtractionStatus`.
202
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-imageextractionstatus.html}
203
+ */
204
+ export type ImageExtractionStatus = "ENABLED" | "DISABLED";
192
205
  /**
193
206
  * Type definition for `AWS::QBusiness::DataSource.InlineDocumentEnrichmentConfiguration`.
194
207
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-inlinedocumentenrichmentconfiguration.html}
@@ -198,6 +211,13 @@ export type InlineDocumentEnrichmentConfiguration = {
198
211
  DocumentContentOperator?: DocumentContentOperator;
199
212
  Target?: DocumentAttributeTarget;
200
213
  };
214
+ /**
215
+ * Type definition for `AWS::QBusiness::DataSource.MediaExtractionConfiguration`.
216
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-mediaextractionconfiguration.html}
217
+ */
218
+ export type MediaExtractionConfiguration = {
219
+ ImageExtractionConfiguration?: ImageExtractionConfiguration;
220
+ };
201
221
  /**
202
222
  * Type definition for `AWS::QBusiness::DataSource.Tag`.
203
223
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-tag.html}
@@ -0,0 +1,71 @@
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::VpcLattice::ServiceNetworkResourceAssociation`.
5
+ * VpcLattice ServiceNetworkResourceAssociation CFN resource
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
7
+ */
8
+ export type VpcLatticeServiceNetworkResourceAssociationProperties = {
9
+ /**
10
+ * @minLength `17`
11
+ * @maxLength `2048`
12
+ * @pattern `^rcfg-[0-9a-z]{17}$`
13
+ */
14
+ ResourceConfigurationId?: string;
15
+ /**
16
+ * @minLength `3`
17
+ * @maxLength `2048`
18
+ * @pattern `^((sn-[0-9a-z]{17})|(arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetwork/sn-[0-9a-z]{17}))$`
19
+ */
20
+ ServiceNetworkId?: string;
21
+ /**
22
+ * @minLength `0`
23
+ * @maxLength `50`
24
+ */
25
+ Tags?: Tag[];
26
+ };
27
+ /**
28
+ * Attribute type definition for `AWS::VpcLattice::ServiceNetworkResourceAssociation`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html#aws-resource-vpclattice-servicenetworkresourceassociation-return-values}
30
+ */
31
+ export type VpcLatticeServiceNetworkResourceAssociationAttributes = {
32
+ /**
33
+ * @minLength `22`
34
+ * @maxLength `2048`
35
+ * @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetworkresourceassociation/snra-[0-9a-f]{17}$`
36
+ */
37
+ Arn: string;
38
+ /**
39
+ * @minLength `22`
40
+ * @maxLength `22`
41
+ * @pattern `^snra-[0-9a-f]{17}$`
42
+ */
43
+ Id: string;
44
+ };
45
+ /**
46
+ * Type definition for `AWS::VpcLattice::ServiceNetworkResourceAssociation.Tag`.
47
+ * A key-value pair to associate with a resource.
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkresourceassociation-tag.html}
49
+ */
50
+ export type Tag = {
51
+ /**
52
+ * @minLength `1`
53
+ * @maxLength `128`
54
+ */
55
+ Key: string;
56
+ /**
57
+ * @minLength `1`
58
+ * @maxLength `256`
59
+ */
60
+ Value: string;
61
+ };
62
+ /**
63
+ * Resource type definition for `AWS::VpcLattice::ServiceNetworkResourceAssociation`.
64
+ * VpcLattice ServiceNetworkResourceAssociation CFN resource
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
66
+ */
67
+ export declare class VpcLatticeServiceNetworkResourceAssociation extends $Resource<"AWS::VpcLattice::ServiceNetworkResourceAssociation", VpcLatticeServiceNetworkResourceAssociationProperties, VpcLatticeServiceNetworkResourceAssociationAttributes> {
68
+ static readonly Type = "AWS::VpcLattice::ServiceNetworkResourceAssociation";
69
+ constructor(logicalId: string, properties: VpcLatticeServiceNetworkResourceAssociationProperties, options?: $ResourceOptions);
70
+ }
71
+ //# sourceMappingURL=AWS-VpcLattice-ServiceNetworkResourceAssociation.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::VpcLattice::ServiceNetworkResourceAssociation`.
4
+ * VpcLattice ServiceNetworkResourceAssociation CFN resource
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
6
+ */
7
+ export class VpcLatticeServiceNetworkResourceAssociation extends $Resource {
8
+ static Type = "AWS::VpcLattice::ServiceNetworkResourceAssociation";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, VpcLatticeServiceNetworkResourceAssociation.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-VpcLattice-ServiceNetworkResourceAssociation.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.210",
3
+ "version": "0.1.211",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },