@awboost/cfn-resource-types 0.1.385 → 0.1.386
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.
|
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpointpolicy.html}
|
|
7
7
|
*/
|
|
8
8
|
export type MediaPackageV2OriginEndpointPolicyProperties = {
|
|
9
|
+
CdnAuthConfiguration?: CdnAuthConfiguration;
|
|
9
10
|
/**
|
|
10
11
|
* @minLength `1`
|
|
11
12
|
* @maxLength `256`
|
|
@@ -26,6 +27,22 @@ export type MediaPackageV2OriginEndpointPolicyProperties = {
|
|
|
26
27
|
OriginEndpointName: string;
|
|
27
28
|
Policy: Record<string, any> | string;
|
|
28
29
|
};
|
|
30
|
+
/**
|
|
31
|
+
* Type definition for `AWS::MediaPackageV2::OriginEndpointPolicy.CdnAuthConfiguration`.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpointpolicy-cdnauthconfiguration.html}
|
|
33
|
+
*/
|
|
34
|
+
export type CdnAuthConfiguration = {
|
|
35
|
+
/**
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
* @maxLength `100`
|
|
38
|
+
*/
|
|
39
|
+
CdnIdentifierSecretArns: string[];
|
|
40
|
+
/**
|
|
41
|
+
* @minLength `20`
|
|
42
|
+
* @maxLength `2048`
|
|
43
|
+
*/
|
|
44
|
+
SecretsRoleArn: string;
|
|
45
|
+
};
|
|
29
46
|
/**
|
|
30
47
|
* Resource type definition for `AWS::MediaPackageV2::OriginEndpointPolicy`.
|
|
31
48
|
* <p>Represents a resource policy that allows or denies access to an origin endpoint.</p>
|