@awboost/cfn-resource-types 0.1.115 → 0.1.117
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-EC2-EIPAssociation.d.ts +10 -13
- package/lib/AWS-EC2-EIPAssociation.js +2 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +14 -15
- package/lib/AWS-EC2-NetworkInterfaceAttachment.d.ts +17 -7
- package/lib/AWS-EC2-NetworkInterfaceAttachment.js +2 -1
- package/lib/AWS-ECR-Repository.d.ts +1 -1
- package/lib/AWS-Lightsail-Alarm.d.ts +1 -1
- package/lib/AWS-Lightsail-Certificate.d.ts +2 -4
- package/lib/AWS-Lightsail-Certificate.js +1 -2
- package/lib/AWS-MediaConnect-FlowOutput.d.ts +4 -0
- package/lib/AWS-MediaPackageV2-Channel.d.ts +6 -0
- package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +34 -0
- package/lib/AWS-RDS-DBInstance.d.ts +1 -4
- package/lib/AWS-WorkSpacesWeb-UserSettings.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,28 +2,27 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::EC2::EIPAssociation`.
|
|
5
|
-
*
|
|
5
|
+
* Associates an Elastic IP address with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account. For more information about working with Elastic IP addresses, see [Elastic IP address concepts and rules](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#vpc-eip-overview).
|
|
6
|
+
You must specify ``AllocationId`` and either ``InstanceId``, ``NetworkInterfaceId``, or ``PrivateIpAddress``.
|
|
6
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-eipassociation.html}
|
|
7
8
|
*/
|
|
8
9
|
export type EC2EIPAssociationProperties = {
|
|
9
10
|
/**
|
|
10
|
-
* The allocation ID. This is required
|
|
11
|
+
* The allocation ID. This is required.
|
|
11
12
|
*/
|
|
12
13
|
AllocationId?: string;
|
|
13
|
-
/**
|
|
14
|
-
* The Elastic IP address to associate with the instance.
|
|
15
|
-
*/
|
|
16
14
|
EIP?: string;
|
|
17
15
|
/**
|
|
18
|
-
* The ID of the instance.
|
|
16
|
+
* The ID of the instance. The instance must have exactly one attached network interface. You can specify either the instance ID or the network interface ID, but not both.
|
|
19
17
|
*/
|
|
20
18
|
InstanceId?: string;
|
|
21
19
|
/**
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
* The ID of the network interface. If the instance has more than one network interface, you must specify a network interface ID.
|
|
21
|
+
You can specify either the instance ID or the network interface ID, but not both.
|
|
22
|
+
*/
|
|
24
23
|
NetworkInterfaceId?: string;
|
|
25
24
|
/**
|
|
26
|
-
* The primary or secondary private IP address to associate with the Elastic IP address.
|
|
25
|
+
* The primary or secondary private IP address to associate with the Elastic IP address. If no private IP address is specified, the Elastic IP address is associated with the primary private IP address.
|
|
27
26
|
*/
|
|
28
27
|
PrivateIpAddress?: string;
|
|
29
28
|
};
|
|
@@ -32,14 +31,12 @@ export type EC2EIPAssociationProperties = {
|
|
|
32
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-eipassociation.html#aws-resource-ec2-eipassociation-return-values}
|
|
33
32
|
*/
|
|
34
33
|
export type EC2EIPAssociationAttributes = {
|
|
35
|
-
/**
|
|
36
|
-
* Composite ID of non-empty properties, to determine the identification.
|
|
37
|
-
*/
|
|
38
34
|
Id: string;
|
|
39
35
|
};
|
|
40
36
|
/**
|
|
41
37
|
* Resource type definition for `AWS::EC2::EIPAssociation`.
|
|
42
|
-
*
|
|
38
|
+
* Associates an Elastic IP address with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account. For more information about working with Elastic IP addresses, see [Elastic IP address concepts and rules](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#vpc-eip-overview).
|
|
39
|
+
You must specify ``AllocationId`` and either ``InstanceId``, ``NetworkInterfaceId``, or ``PrivateIpAddress``.
|
|
43
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-eipassociation.html}
|
|
44
41
|
*/
|
|
45
42
|
export declare class EC2EIPAssociation extends $Resource<"AWS::EC2::EIPAssociation", EC2EIPAssociationProperties, EC2EIPAssociationAttributes> {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::EC2::EIPAssociation`.
|
|
4
|
-
*
|
|
4
|
+
* Associates an Elastic IP address with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account. For more information about working with Elastic IP addresses, see [Elastic IP address concepts and rules](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#vpc-eip-overview).
|
|
5
|
+
You must specify ``AllocationId`` and either ``InstanceId``, ``NetworkInterfaceId``, or ``PrivateIpAddress``.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-eipassociation.html}
|
|
6
7
|
*/
|
|
7
8
|
export class EC2EIPAssociation extends $Resource {
|
|
@@ -144,7 +144,7 @@ export type CapacityReservationTarget = {
|
|
|
144
144
|
};
|
|
145
145
|
/**
|
|
146
146
|
* Type definition for `AWS::EC2::LaunchTemplate.ConnectionTrackingSpecification`.
|
|
147
|
-
* A security group connection tracking specification that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see [Connection tracking timeouts](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts) in the *Amazon
|
|
147
|
+
* A security group connection tracking specification that enables you to set the idle timeout for connection tracking on an Elastic network interface. For more information, see [Connection tracking timeouts](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts) in the *Amazon EC2 User Guide*.
|
|
148
148
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-connectiontrackingspecification.html}
|
|
149
149
|
*/
|
|
150
150
|
export type ConnectionTrackingSpecification = {
|
|
@@ -256,7 +256,7 @@ export type Ebs = {
|
|
|
256
256
|
*/
|
|
257
257
|
export type ElasticGpuSpecification = {
|
|
258
258
|
/**
|
|
259
|
-
* The type of Elastic Graphics accelerator.
|
|
259
|
+
* The type of Elastic Graphics accelerator.
|
|
260
260
|
*/
|
|
261
261
|
Type?: string;
|
|
262
262
|
};
|
|
@@ -484,7 +484,7 @@ export type InstanceRequirements = {
|
|
|
484
484
|
/**
|
|
485
485
|
* [Price protection] The price protection threshold for Spot Instances, as a percentage of an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from the lowest priced current generation instance types, and failing that, from the lowest priced previous generation instance types that match your attributes. When Amazon EC2 selects instance types with your attributes, it will exclude instance types whose price exceeds your specified threshold.
|
|
486
486
|
The parameter accepts an integer, which Amazon EC2 interprets as a percentage.
|
|
487
|
-
If you set ``
|
|
487
|
+
If you set ``TargetCapacityUnitType`` to ``vcpu`` or ``memory-mib``, the price protection threshold is based on the per vCPU or per memory price instead of the per instance price.
|
|
488
488
|
Only one of ``SpotMaxPricePercentageOverLowestPrice`` or ``MaxSpotPriceAsPercentageOfOptimalOnDemandPrice`` can be specified. If you don't specify either, Amazon EC2 will automatically apply optimal price protection to consistently select from a wide range of instance types. To indicate no price protection threshold for Spot Instances, meaning you want to consider all instance types that match your attributes, include one of these parameters and specify a high value, such as ``999999``.
|
|
489
489
|
*/
|
|
490
490
|
MaxSpotPriceAsPercentageOfOptimalOnDemandPrice?: number;
|
|
@@ -549,7 +549,7 @@ export type InstanceRequirements = {
|
|
|
549
549
|
*/
|
|
550
550
|
export type Ipv4PrefixSpecification = {
|
|
551
551
|
/**
|
|
552
|
-
* The IPv4 prefix. For information, see [Assigning prefixes to
|
|
552
|
+
* The IPv4 prefix. For information, see [Assigning prefixes to network interfaces](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-eni.html) in the *Amazon EC2 User Guide*.
|
|
553
553
|
*/
|
|
554
554
|
Ipv4Prefix?: string;
|
|
555
555
|
};
|
|
@@ -593,7 +593,7 @@ export type LaunchTemplateData = {
|
|
|
593
593
|
*/
|
|
594
594
|
CapacityReservationSpecification?: CapacityReservationSpecification;
|
|
595
595
|
/**
|
|
596
|
-
* The CPU options for the instance. For more information, see [
|
|
596
|
+
* The CPU options for the instance. For more information, see [Optimize CPU options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-optimize-cpu.html) in the *Amazon EC2 User Guide*.
|
|
597
597
|
*/
|
|
598
598
|
CpuOptions?: CpuOptions;
|
|
599
599
|
/**
|
|
@@ -601,7 +601,7 @@ export type LaunchTemplateData = {
|
|
|
601
601
|
*/
|
|
602
602
|
CreditSpecification?: CreditSpecification;
|
|
603
603
|
/**
|
|
604
|
-
* Indicates whether to enable the instance for stop protection. For more information, see [
|
|
604
|
+
* Indicates whether to enable the instance for stop protection. For more information, see [Enable stop protection for your instance](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-stop-protection.html) in the *Amazon EC2 User Guide*.
|
|
605
605
|
*/
|
|
606
606
|
DisableApiStop?: boolean;
|
|
607
607
|
/**
|
|
@@ -629,7 +629,7 @@ export type LaunchTemplateData = {
|
|
|
629
629
|
*/
|
|
630
630
|
EnclaveOptions?: EnclaveOptions;
|
|
631
631
|
/**
|
|
632
|
-
* Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the [hibernation prerequisites](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/hibernating-prerequisites.html). For more information, see [Hibernate your instance](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html) in the *Amazon
|
|
632
|
+
* Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the [hibernation prerequisites](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/hibernating-prerequisites.html). For more information, see [Hibernate your Amazon EC2 instance](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html) in the *Amazon EC2 User Guide*.
|
|
633
633
|
*/
|
|
634
634
|
HibernationOptions?: HibernationOptions;
|
|
635
635
|
/**
|
|
@@ -670,7 +670,7 @@ export type LaunchTemplateData = {
|
|
|
670
670
|
*/
|
|
671
671
|
InstanceRequirements?: InstanceRequirements;
|
|
672
672
|
/**
|
|
673
|
-
* The instance type. For more information, see [
|
|
673
|
+
* The instance type. For more information, see [Amazon EC2 instance types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html) in the *Amazon EC2 User Guide*.
|
|
674
674
|
If you specify ``InstanceType``, you can't specify ``InstanceRequirements``.
|
|
675
675
|
*/
|
|
676
676
|
InstanceType?: string;
|
|
@@ -693,7 +693,7 @@ export type LaunchTemplateData = {
|
|
|
693
693
|
*/
|
|
694
694
|
MaintenanceOptions?: MaintenanceOptions;
|
|
695
695
|
/**
|
|
696
|
-
* The metadata options for the instance. For more information, see [Instance metadata and user data](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html) in the *Amazon
|
|
696
|
+
* The metadata options for the instance. For more information, see [Instance metadata and user data](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html) in the *Amazon EC2 User Guide*.
|
|
697
697
|
*/
|
|
698
698
|
MetadataOptions?: MetadataOptions;
|
|
699
699
|
/**
|
|
@@ -714,7 +714,7 @@ export type LaunchTemplateData = {
|
|
|
714
714
|
PrivateDnsNameOptions?: PrivateDnsNameOptions;
|
|
715
715
|
/**
|
|
716
716
|
* The ID of the RAM disk.
|
|
717
|
-
We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see [User provided kernels](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html) in the *Amazon
|
|
717
|
+
We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see [User provided kernels](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html) in the *Amazon EC2 User Guide*.
|
|
718
718
|
*/
|
|
719
719
|
RamDiskId?: string;
|
|
720
720
|
/**
|
|
@@ -734,7 +734,7 @@ export type LaunchTemplateData = {
|
|
|
734
734
|
*/
|
|
735
735
|
TagSpecifications?: TagSpecification[];
|
|
736
736
|
/**
|
|
737
|
-
* The user data to make available to the instance. You must provide base64-encoded text. User data is limited to 16 KB. For more information, see [Run commands on your
|
|
737
|
+
* The user data to make available to the instance. You must provide base64-encoded text. User data is limited to 16 KB. For more information, see [Run commands on your Amazon EC2 instance at launch](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html) in the *Amazon EC2 User Guide*.
|
|
738
738
|
If you are creating the launch template for use with BATCH, the user data must be provided in the [MIME multi-part archive format](https://docs.aws.amazon.com/https://cloudinit.readthedocs.io/en/latest/topics/format.html#mime-multi-part-archive). For more information, see [Amazon EC2 user data in launch templates](https://docs.aws.amazon.com/batch/latest/userguide/launch-templates.html) in the *User Guide*.
|
|
739
739
|
*/
|
|
740
740
|
UserData?: string;
|
|
@@ -764,7 +764,7 @@ export type LaunchTemplateElasticInferenceAccelerator = {
|
|
|
764
764
|
*/
|
|
765
765
|
export type LaunchTemplateTagSpecification = {
|
|
766
766
|
/**
|
|
767
|
-
* The type of resource. To tag
|
|
767
|
+
* The type of resource. To tag a launch template, ``ResourceType`` must be ``launch-template``.
|
|
768
768
|
*/
|
|
769
769
|
ResourceType?: string;
|
|
770
770
|
/**
|
|
@@ -932,7 +932,7 @@ export type NetworkInterface = {
|
|
|
932
932
|
*/
|
|
933
933
|
Groups?: string[];
|
|
934
934
|
/**
|
|
935
|
-
* 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
|
|
935
|
+
* 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*.
|
|
936
936
|
If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
|
937
937
|
Valid values: ``interface`` | ``efa``
|
|
938
938
|
*/
|
|
@@ -1141,8 +1141,7 @@ export type Tag = {
|
|
|
1141
1141
|
*/
|
|
1142
1142
|
export type TagSpecification = {
|
|
1143
1143
|
/**
|
|
1144
|
-
* The type of resource to tag.
|
|
1145
|
-
Valid Values lists all resource types for Amazon EC2 that can be tagged. When you create a launch template, you can specify tags for the following resource types only: ``instance`` | ``volume`` | ``network-interface`` | ``spot-instances-request``. If the instance does not include the resource type that you specify, the instance launch fails. For example, not all instance types include a volume.
|
|
1144
|
+
* The type of resource to tag. You can specify tags for the following resource types only: ``instance`` | ``volume`` | ``network-interface`` | ``spot-instances-request``. If the instance does not include the resource type that you specify, the instance launch fails. For example, not all instance types include a volume.
|
|
1146
1145
|
To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
|
1147
1146
|
*/
|
|
1148
1147
|
ResourceType?: string;
|
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
|
|
5
|
+
* Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
6
7
|
*/
|
|
7
8
|
export type EC2NetworkInterfaceAttachmentProperties = {
|
|
8
9
|
/**
|
|
9
|
-
* Whether to delete the network interface when the instance terminates. By default, this value is set to true
|
|
10
|
+
* Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
|
|
10
11
|
*/
|
|
11
12
|
DeleteOnTermination?: boolean;
|
|
12
13
|
/**
|
|
13
|
-
* The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
|
|
14
|
+
* The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
|
|
14
15
|
*/
|
|
15
16
|
DeviceIndex: string;
|
|
17
|
+
/**
|
|
18
|
+
* Configures ENA Express for the network interface that this action attaches to the instance.
|
|
19
|
+
*/
|
|
16
20
|
EnaSrdSpecification?: EnaSrdSpecification;
|
|
17
21
|
/**
|
|
18
22
|
* The ID of the instance to which you will attach the ENI.
|
|
@@ -28,23 +32,29 @@ export type EC2NetworkInterfaceAttachmentProperties = {
|
|
|
28
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
|
|
29
33
|
*/
|
|
30
34
|
export type EC2NetworkInterfaceAttachmentAttributes = {
|
|
31
|
-
/**
|
|
32
|
-
* The ID of the network interface attachment.
|
|
33
|
-
*/
|
|
34
35
|
AttachmentId: string;
|
|
35
36
|
};
|
|
36
37
|
/**
|
|
37
38
|
* Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
|
|
39
|
+
* ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
|
|
40
|
+
To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
|
|
38
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
|
|
39
42
|
*/
|
|
40
43
|
export type EnaSrdSpecification = {
|
|
44
|
+
/**
|
|
45
|
+
* Indicates whether ENA Express is enabled for the network interface.
|
|
46
|
+
*/
|
|
41
47
|
EnaSrdEnabled?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Configures ENA Express for UDP network traffic.
|
|
50
|
+
*/
|
|
42
51
|
EnaSrdUdpSpecification?: {
|
|
43
52
|
EnaSrdUdpEnabled?: boolean;
|
|
44
53
|
};
|
|
45
54
|
};
|
|
46
55
|
/**
|
|
47
|
-
* Resource
|
|
56
|
+
* Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
|
|
57
|
+
* Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
|
|
48
58
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
49
59
|
*/
|
|
50
60
|
export declare class EC2NetworkInterfaceAttachment extends $Resource<"AWS::EC2::NetworkInterfaceAttachment", EC2NetworkInterfaceAttachmentProperties, EC2NetworkInterfaceAttachmentAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
|
|
4
|
+
* Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
5
6
|
*/
|
|
6
7
|
export class EC2NetworkInterfaceAttachment extends $Resource {
|
|
@@ -63,7 +63,7 @@ export type EncryptionConfiguration = {
|
|
|
63
63
|
/**
|
|
64
64
|
* The encryption type to use.
|
|
65
65
|
If you use the ``KMS`` encryption type, the contents of the repository will be encrypted using server-side encryption with KMSlong key stored in KMS. When you use KMS to encrypt your data, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you already created. For more information, see [Protecting data using server-side encryption with an key stored in (SSE-KMS)](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html) in the *Amazon Simple Storage Service Console Developer Guide*.
|
|
66
|
-
If you use the ``AES256`` encryption type, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts the images in the repository using an AES-256 encryption algorithm. For more information, see [Protecting data using server-side encryption with Amazon S3-managed encryption keys (SSE-S3)](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html) in the *
|
|
66
|
+
If you use the ``AES256`` encryption type, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts the images in the repository using an AES-256 encryption algorithm. For more information, see [Protecting data using server-side encryption with Amazon S3-managed encryption keys (SSE-S3)](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html) in the *Amazon Simple Storage Service Console Developer Guide*.
|
|
67
67
|
*/
|
|
68
68
|
EncryptionType: EncryptionType;
|
|
69
69
|
/**
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
5
|
-
* An example resource schema demonstrating some basic constructs and validation rules.
|
|
4
|
+
* Resource Type definition for AWS::Lightsail::Certificate.
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-certificate.html}
|
|
7
6
|
*/
|
|
8
7
|
export type LightsailCertificateProperties = {
|
|
@@ -54,8 +53,7 @@ export type Tag = {
|
|
|
54
53
|
Value?: string;
|
|
55
54
|
};
|
|
56
55
|
/**
|
|
57
|
-
* Resource
|
|
58
|
-
* An example resource schema demonstrating some basic constructs and validation rules.
|
|
56
|
+
* Resource Type definition for AWS::Lightsail::Certificate.
|
|
59
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-certificate.html}
|
|
60
58
|
*/
|
|
61
59
|
export declare class LightsailCertificate extends $Resource<"AWS::Lightsail::Certificate", LightsailCertificateProperties, LightsailCertificateAttributes> {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
4
|
-
* An example resource schema demonstrating some basic constructs and validation rules.
|
|
3
|
+
* Resource Type definition for AWS::Lightsail::Certificate.
|
|
5
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-certificate.html}
|
|
6
5
|
*/
|
|
7
6
|
export class LightsailCertificate extends $Resource {
|
|
@@ -41,6 +41,10 @@ export type MediaConnectFlowOutputProperties = {
|
|
|
41
41
|
* The name of the output. This value must be unique within the current flow.
|
|
42
42
|
*/
|
|
43
43
|
Name?: string;
|
|
44
|
+
/**
|
|
45
|
+
* An indication of whether the output should transmit data or not.
|
|
46
|
+
*/
|
|
47
|
+
OutputStatus?: "ENABLED" | "DISABLED";
|
|
44
48
|
/**
|
|
45
49
|
* The port to use when content is distributed to this output.
|
|
46
50
|
*/
|
|
@@ -24,6 +24,7 @@ export type MediaPackageV2ChannelProperties = {
|
|
|
24
24
|
* @maxLength `1024`
|
|
25
25
|
*/
|
|
26
26
|
Description?: string;
|
|
27
|
+
InputType?: InputType;
|
|
27
28
|
Tags?: Tag[];
|
|
28
29
|
};
|
|
29
30
|
/**
|
|
@@ -73,6 +74,11 @@ export type IngestEndpoint = {
|
|
|
73
74
|
*/
|
|
74
75
|
Url?: string;
|
|
75
76
|
};
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::MediaPackageV2::Channel.InputType`.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-channel-inputtype.html}
|
|
80
|
+
*/
|
|
81
|
+
export type InputType = "HLS" | "CMAF";
|
|
76
82
|
/**
|
|
77
83
|
* Type definition for `AWS::MediaPackageV2::Channel.Tag`.
|
|
78
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-channel-tag.html}
|
|
@@ -29,6 +29,10 @@ export type MediaPackageV2OriginEndpointProperties = {
|
|
|
29
29
|
* @maxLength `1024`
|
|
30
30
|
*/
|
|
31
31
|
Description?: string;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The failover settings for the endpoint.</p>
|
|
34
|
+
*/
|
|
35
|
+
ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
|
|
32
36
|
/**
|
|
33
37
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
34
38
|
*/
|
|
@@ -252,6 +256,11 @@ export type EncryptionMethod = {
|
|
|
252
256
|
CmafEncryptionMethod?: CmafEncryptionMethod;
|
|
253
257
|
TsEncryptionMethod?: TsEncryptionMethod;
|
|
254
258
|
};
|
|
259
|
+
/**
|
|
260
|
+
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.EndpointErrorCondition`.
|
|
261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-endpointerrorcondition.html}
|
|
262
|
+
*/
|
|
263
|
+
export type EndpointErrorCondition = "STALE_MANIFEST" | "INCOMPLETE_MANIFEST" | "MISSING_DRM_KEY" | "SLATE_INPUT";
|
|
255
264
|
/**
|
|
256
265
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.FilterConfiguration`.
|
|
257
266
|
* <p>Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest. </p>
|
|
@@ -279,6 +288,31 @@ export type FilterConfiguration = {
|
|
|
279
288
|
*/
|
|
280
289
|
TimeDelaySeconds?: number;
|
|
281
290
|
};
|
|
291
|
+
/**
|
|
292
|
+
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.ForceEndpointErrorConfiguration`.
|
|
293
|
+
* <p>The failover settings for the endpoint.</p>
|
|
294
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-forceendpointerrorconfiguration.html}
|
|
295
|
+
*/
|
|
296
|
+
export type ForceEndpointErrorConfiguration = {
|
|
297
|
+
/**
|
|
298
|
+
* <p>The failover settings for the endpoint. The options are:</p>
|
|
299
|
+
<ul>
|
|
300
|
+
<li>
|
|
301
|
+
<p>
|
|
302
|
+
<code>STALE_MANIFEST</code> - The manifest stalled and there a no new segments or parts.</p>
|
|
303
|
+
</li>
|
|
304
|
+
<li>
|
|
305
|
+
<p>
|
|
306
|
+
<code>INCOMPLETE_MANIFEST</code> - There is a gap in the manifest.</p>
|
|
307
|
+
</li>
|
|
308
|
+
<li>
|
|
309
|
+
<p>
|
|
310
|
+
<code>MISSING_DRM_KEY</code> - Key rotation is enabled but we're unable to fetch the key for the current key period.</p>
|
|
311
|
+
</li>
|
|
312
|
+
</ul>
|
|
313
|
+
*/
|
|
314
|
+
EndpointErrorConditions?: EndpointErrorCondition[];
|
|
315
|
+
};
|
|
282
316
|
/**
|
|
283
317
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.HlsManifestConfiguration`.
|
|
284
318
|
* <p>Retrieve the HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -94,9 +94,6 @@ export type RDSDBInstanceProperties = {
|
|
|
94
94
|
* The AWS KMS key identifier for encryption of the replicated automated backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS encryption key in the destination AWS-Region, for example, ``arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE``.
|
|
95
95
|
*/
|
|
96
96
|
AutomaticBackupReplicationKmsKeyId?: string;
|
|
97
|
-
/**
|
|
98
|
-
* The destination region for the backup replication of the DB instance. For more info, see [Replicating automated backups to another Region](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) in the *Amazon RDS User Guide*.
|
|
99
|
-
*/
|
|
100
97
|
AutomaticBackupReplicationRegion?: string;
|
|
101
98
|
/**
|
|
102
99
|
* The Availability Zone (AZ) where the database will be created. For information on AWS-Regions and Availability Zones, see [Regions and Availability Zones](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
@@ -858,7 +855,7 @@ export type MasterUserSecret = {
|
|
|
858
855
|
};
|
|
859
856
|
/**
|
|
860
857
|
* Type definition for `AWS::RDS::DBInstance.ProcessorFeature`.
|
|
861
|
-
* The ``ProcessorFeature`` property type specifies the processor features of a DB instance class
|
|
858
|
+
* The ``ProcessorFeature`` property type specifies the processor features of a DB instance class.
|
|
862
859
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-processorfeature.html}
|
|
863
860
|
*/
|
|
864
861
|
export type ProcessorFeature = {
|