@awboost/cfn-resource-types 0.1.457 → 0.1.458
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.
|
@@ -21,6 +21,10 @@ export type ImageBuilderImageProperties = {
|
|
|
21
21
|
* The execution role name/ARN for the image build, if provided
|
|
22
22
|
*/
|
|
23
23
|
ExecutionRole?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The image pipeline execution settings of the image.
|
|
26
|
+
*/
|
|
27
|
+
ImagePipelineExecutionSettings?: ImagePipelineExecutionSettings;
|
|
24
28
|
/**
|
|
25
29
|
* The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
|
|
26
30
|
*/
|
|
@@ -119,6 +123,21 @@ export type ImageLoggingConfiguration = {
|
|
|
119
123
|
*/
|
|
120
124
|
LogGroupName?: string;
|
|
121
125
|
};
|
|
126
|
+
/**
|
|
127
|
+
* Type definition for `AWS::ImageBuilder::Image.ImagePipelineExecutionSettings`.
|
|
128
|
+
* The settings for starting an image pipeline execution.
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagepipelineexecutionsettings.html}
|
|
130
|
+
*/
|
|
131
|
+
export type ImagePipelineExecutionSettings = {
|
|
132
|
+
/**
|
|
133
|
+
* The deployment ID of the pipeline, used to trigger new image pipeline executions.
|
|
134
|
+
*/
|
|
135
|
+
DeploymentId?: string;
|
|
136
|
+
/**
|
|
137
|
+
* Whether to trigger the image pipeline when the pipeline is updated. False by default.
|
|
138
|
+
*/
|
|
139
|
+
OnUpdate?: boolean;
|
|
140
|
+
};
|
|
122
141
|
/**
|
|
123
142
|
* Type definition for `AWS::ImageBuilder::Image.ImageScanningConfiguration`.
|
|
124
143
|
* Contains settings for Image Builder image resource and container image scans.
|
|
@@ -75,6 +75,10 @@ export type ImageBuilderImagePipelineAttributes = {
|
|
|
75
75
|
* The Amazon Resource Name (ARN) of the image pipeline.
|
|
76
76
|
*/
|
|
77
77
|
Arn: string;
|
|
78
|
+
/**
|
|
79
|
+
* The deployment ID of the pipeline, used for resource create/update triggers.
|
|
80
|
+
*/
|
|
81
|
+
DeploymentId: string;
|
|
78
82
|
};
|
|
79
83
|
/**
|
|
80
84
|
* Type definition for `AWS::ImageBuilder::ImagePipeline.AutoDisablePolicy`.
|
|
@@ -41,6 +41,10 @@ export type MediaPackageV2OriginEndpointProperties = {
|
|
|
41
41
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
42
42
|
*/
|
|
43
43
|
LowLatencyHlsManifests?: LowLatencyHlsManifestConfiguration[];
|
|
44
|
+
/**
|
|
45
|
+
* <p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
|
|
46
|
+
*/
|
|
47
|
+
MssManifests?: MssManifestConfiguration[];
|
|
44
48
|
/**
|
|
45
49
|
* @minLength `1`
|
|
46
50
|
* @maxLength `256`
|
|
@@ -97,6 +101,7 @@ export type MediaPackageV2OriginEndpointAttributes = {
|
|
|
97
101
|
* <p>The date and time the origin endpoint was modified.</p>
|
|
98
102
|
*/
|
|
99
103
|
ModifiedAt: string;
|
|
104
|
+
MssManifestUrls: string[];
|
|
100
105
|
};
|
|
101
106
|
/**
|
|
102
107
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.AdMarkerDash`.
|
|
@@ -107,7 +112,7 @@ export type AdMarkerDash = "BINARY" | "XML";
|
|
|
107
112
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.AdMarkerHls`.
|
|
108
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-admarkerhls.html}
|
|
109
114
|
*/
|
|
110
|
-
export type AdMarkerHls = "DATERANGE";
|
|
115
|
+
export type AdMarkerHls = "DATERANGE" | "SCTE35_ENHANCED";
|
|
111
116
|
/**
|
|
112
117
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.CmafEncryptionMethod`.
|
|
113
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-cmafencryptionmethod.html}
|
|
@@ -117,7 +122,7 @@ export type CmafEncryptionMethod = "CENC" | "CBCS";
|
|
|
117
122
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.ContainerType`.
|
|
118
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-containertype.html}
|
|
119
124
|
*/
|
|
120
|
-
export type ContainerType = "TS" | "CMAF";
|
|
125
|
+
export type ContainerType = "TS" | "CMAF" | "ISM";
|
|
121
126
|
/**
|
|
122
127
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashBaseUrl`.
|
|
123
128
|
* <p>The base URLs to use for retrieving segments. You can specify multiple locations and indicate the priority and weight for when each should be used, for use in mutli-CDN workflows.</p>
|
|
@@ -445,6 +450,7 @@ export type EncryptionContractConfiguration = {
|
|
|
445
450
|
*/
|
|
446
451
|
export type EncryptionMethod = {
|
|
447
452
|
CmafEncryptionMethod?: CmafEncryptionMethod;
|
|
453
|
+
IsmEncryptionMethod?: IsmEncryptionMethod;
|
|
448
454
|
TsEncryptionMethod?: TsEncryptionMethod;
|
|
449
455
|
};
|
|
450
456
|
/**
|
|
@@ -539,6 +545,11 @@ export type HlsManifestConfiguration = {
|
|
|
539
545
|
*/
|
|
540
546
|
UrlEncodeChildManifest?: boolean;
|
|
541
547
|
};
|
|
548
|
+
/**
|
|
549
|
+
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.IsmEncryptionMethod`.
|
|
550
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-ismencryptionmethod.html}
|
|
551
|
+
*/
|
|
552
|
+
export type IsmEncryptionMethod = "CENC";
|
|
542
553
|
/**
|
|
543
554
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.LowLatencyHlsManifestConfiguration`.
|
|
544
555
|
* <p>Retrieve the low-latency HTTP live streaming (HLS) manifest configuration.</p>
|
|
@@ -584,6 +595,34 @@ export type LowLatencyHlsManifestConfiguration = {
|
|
|
584
595
|
*/
|
|
585
596
|
UrlEncodeChildManifest?: boolean;
|
|
586
597
|
};
|
|
598
|
+
/**
|
|
599
|
+
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.MssManifestConfiguration`.
|
|
600
|
+
* <p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint. This includes all the settings and properties that define how the MSS content is packaged and delivered.</p>
|
|
601
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-mssmanifestconfiguration.html}
|
|
602
|
+
*/
|
|
603
|
+
export type MssManifestConfiguration = {
|
|
604
|
+
/**
|
|
605
|
+
* <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>
|
|
606
|
+
*/
|
|
607
|
+
FilterConfiguration?: FilterConfiguration;
|
|
608
|
+
ManifestLayout?: MssManifestLayout;
|
|
609
|
+
/**
|
|
610
|
+
* <p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
|
|
611
|
+
* @minLength `1`
|
|
612
|
+
* @maxLength `256`
|
|
613
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
|
614
|
+
*/
|
|
615
|
+
ManifestName: string;
|
|
616
|
+
/**
|
|
617
|
+
* <p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
|
|
618
|
+
*/
|
|
619
|
+
ManifestWindowSeconds?: number;
|
|
620
|
+
};
|
|
621
|
+
/**
|
|
622
|
+
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.MssManifestLayout`.
|
|
623
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-mssmanifestlayout.html}
|
|
624
|
+
*/
|
|
625
|
+
export type MssManifestLayout = "FULL" | "COMPACT";
|
|
587
626
|
/**
|
|
588
627
|
* Type definition for `AWS::MediaPackageV2::OriginEndpoint.PresetSpeke20Audio`.
|
|
589
628
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-presetspeke20audio.html}
|