@awboost/cfn-resource-types 0.1.263 → 0.1.264
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.
|
@@ -94,7 +94,9 @@ export type CrlConfiguration = {
|
|
|
94
94
|
* Configures the default behavior of the CRL Distribution Point extension for certificates issued by your certificate authority
|
|
95
95
|
*/
|
|
96
96
|
CrlDistributionPointExtensionConfiguration?: CrlDistributionPointExtensionConfiguration;
|
|
97
|
+
CrlType?: string;
|
|
97
98
|
CustomCname?: string;
|
|
99
|
+
CustomPath?: string;
|
|
98
100
|
Enabled: boolean;
|
|
99
101
|
ExpirationInDays?: number;
|
|
100
102
|
S3BucketName?: string;
|
package/lib/AWS-EC2-IPAM.d.ts
CHANGED
|
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html}
|
|
6
6
|
*/
|
|
7
7
|
export type EC2IPAMProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* A set of organizational unit (OU) exclusions for the default resource discovery, created with this IPAM.
|
|
10
|
+
*/
|
|
11
|
+
DefaultResourceDiscoveryOrganizationalUnitExclusions?: IpamOrganizationalUnitExclusion[];
|
|
8
12
|
Description?: string;
|
|
9
13
|
/**
|
|
10
14
|
* Enable provisioning of GUA space in private pools.
|
|
@@ -73,6 +77,18 @@ export type IpamOperatingRegion = {
|
|
|
73
77
|
*/
|
|
74
78
|
RegionName: string;
|
|
75
79
|
};
|
|
80
|
+
/**
|
|
81
|
+
* Type definition for `AWS::EC2::IPAM.IpamOrganizationalUnitExclusion`.
|
|
82
|
+
* If your IPAM is integrated with AWS Organizations and you add an organizational unit (OU) exclusion, IPAM will not manage the IP addresses in accounts in that OU exclusion.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ipam-ipamorganizationalunitexclusion.html}
|
|
84
|
+
*/
|
|
85
|
+
export type IpamOrganizationalUnitExclusion = {
|
|
86
|
+
/**
|
|
87
|
+
* An AWS Organizations entity path. Build the path for the OU(s) using AWS Organizations IDs separated by a '/'. Include all child OUs by ending the path with '/*'.
|
|
88
|
+
* @minLength `1`
|
|
89
|
+
*/
|
|
90
|
+
OrganizationsEntityPath: string;
|
|
91
|
+
};
|
|
76
92
|
/**
|
|
77
93
|
* Type definition for `AWS::EC2::IPAM.Tag`.
|
|
78
94
|
* A key-value pair to associate with a resource.
|
|
@@ -10,6 +10,10 @@ export type EC2IPAMResourceDiscoveryProperties = {
|
|
|
10
10
|
* The regions Resource Discovery is enabled for. Allows resource discoveries to be created in these regions, as well as enabling monitoring
|
|
11
11
|
*/
|
|
12
12
|
OperatingRegions?: IpamOperatingRegion[];
|
|
13
|
+
/**
|
|
14
|
+
* A set of organizational unit (OU) exclusions for this resource.
|
|
15
|
+
*/
|
|
16
|
+
OrganizationalUnitExclusions?: IpamResourceDiscoveryOrganizationalUnitExclusion[];
|
|
13
17
|
/**
|
|
14
18
|
* An array of key-value pairs to apply to this resource.
|
|
15
19
|
*/
|
|
@@ -56,6 +60,18 @@ export type IpamOperatingRegion = {
|
|
|
56
60
|
*/
|
|
57
61
|
RegionName: string;
|
|
58
62
|
};
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::EC2::IPAMResourceDiscovery.IpamResourceDiscoveryOrganizationalUnitExclusion`.
|
|
65
|
+
* If your IPAM is integrated with AWS Organizations and you add an organizational unit (OU) exclusion, IPAM will not manage the IP addresses in accounts in that OU exclusion.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ipamresourcediscovery-ipamresourcediscoveryorganizationalunitexclusion.html}
|
|
67
|
+
*/
|
|
68
|
+
export type IpamResourceDiscoveryOrganizationalUnitExclusion = {
|
|
69
|
+
/**
|
|
70
|
+
* An AWS Organizations entity path. Build the path for the OU(s) using AWS Organizations IDs separated by a '/'. Include all child OUs by ending the path with '/*'.
|
|
71
|
+
* @minLength `1`
|
|
72
|
+
*/
|
|
73
|
+
OrganizationsEntityPath: string;
|
|
74
|
+
};
|
|
59
75
|
/**
|
|
60
76
|
* Type definition for `AWS::EC2::IPAMResourceDiscovery.Tag`.
|
|
61
77
|
* A key-value pair to associate with a resource.
|
|
@@ -8,7 +8,9 @@ export type MediaLiveChannelProperties = {
|
|
|
8
8
|
AnywhereSettings?: AnywhereSettings;
|
|
9
9
|
CdiInputSpecification?: CdiInputSpecification;
|
|
10
10
|
ChannelClass?: string;
|
|
11
|
+
ChannelEngineVersion?: ChannelEngineVersionRequest;
|
|
11
12
|
Destinations?: OutputDestination[];
|
|
13
|
+
DryRun?: boolean;
|
|
12
14
|
EncoderSettings?: EncoderSettings;
|
|
13
15
|
InputAttachments?: InputAttachment[];
|
|
14
16
|
InputSpecification?: InputSpecification;
|
|
@@ -450,13 +452,26 @@ export type CaptionSelectorSettings = {
|
|
|
450
452
|
export type CdiInputSpecification = {
|
|
451
453
|
Resolution?: string;
|
|
452
454
|
};
|
|
455
|
+
/**
|
|
456
|
+
* Type definition for `AWS::MediaLive::Channel.ChannelEngineVersionRequest`.
|
|
457
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-channelengineversionrequest.html}
|
|
458
|
+
*/
|
|
459
|
+
export type ChannelEngineVersionRequest = {
|
|
460
|
+
Version?: string;
|
|
461
|
+
};
|
|
453
462
|
/**
|
|
454
463
|
* Type definition for `AWS::MediaLive::Channel.CmafIngestGroupSettings`.
|
|
455
464
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html}
|
|
456
465
|
*/
|
|
457
466
|
export type CmafIngestGroupSettings = {
|
|
458
467
|
Destination?: OutputLocationRef;
|
|
468
|
+
Id3Behavior?: string;
|
|
469
|
+
Id3NameModifier?: string;
|
|
470
|
+
KlvBehavior?: string;
|
|
471
|
+
KlvNameModifier?: string;
|
|
459
472
|
NielsenId3Behavior?: string;
|
|
473
|
+
NielsenId3NameModifier?: string;
|
|
474
|
+
Scte35NameModifier?: string;
|
|
460
475
|
Scte35Type?: string;
|
|
461
476
|
SegmentLength?: number;
|
|
462
477
|
SegmentLengthUnits?: string;
|
|
@@ -856,6 +871,7 @@ export type H265Settings = {
|
|
|
856
871
|
BufSize?: number;
|
|
857
872
|
ColorMetadata?: string;
|
|
858
873
|
ColorSpaceSettings?: H265ColorSpaceSettings;
|
|
874
|
+
Deblocking?: string;
|
|
859
875
|
FilterSettings?: H265FilterSettings;
|
|
860
876
|
FixedAfd?: string;
|
|
861
877
|
FlickerAq?: string;
|
|
@@ -1221,7 +1237,9 @@ export type MediaPackageGroupSettings = {
|
|
|
1221
1237
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackageoutputdestinationsettings.html}
|
|
1222
1238
|
*/
|
|
1223
1239
|
export type MediaPackageOutputDestinationSettings = {
|
|
1240
|
+
ChannelGroup?: string;
|
|
1224
1241
|
ChannelId?: string;
|
|
1242
|
+
ChannelName?: string;
|
|
1225
1243
|
};
|
|
1226
1244
|
/**
|
|
1227
1245
|
* Type definition for `AWS::MediaLive::Channel.MediaPackageOutputSettings`.
|