Show / Hide Table of Contents

Class MediaPackageV2OriginAccessControlProps

Properties for creating a MediaPackage V2 Origin Access Control resource.

Inheritance
object
MediaPackageV2OriginAccessControlProps
Implements
IMediaPackageV2OriginAccessControlProps
IOriginAccessControlBaseProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MediaPackageV2OriginAccessControlProps : IMediaPackageV2OriginAccessControlProps, IOriginAccessControlBaseProps
Syntax (vb)
Public Class MediaPackageV2OriginAccessControlProps Implements IMediaPackageV2OriginAccessControlProps, IOriginAccessControlBaseProps
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CloudFront;

            Signing signing;

            var mediaPackageV2OriginAccessControlProps = new MediaPackageV2OriginAccessControlProps {
                Description = "description",
                OriginAccessControlName = "originAccessControlName",
                Signing = signing
            };

Synopsis

Constructors

MediaPackageV2OriginAccessControlProps()

Properties for creating a MediaPackage V2 Origin Access Control resource.

Properties

Description

A description of the origin access control.

OriginAccessControlName

A name to identify the origin access control, with a maximum length of 64 characters.

Signing

Specifies which requests CloudFront signs and the signing protocol.

Constructors

MediaPackageV2OriginAccessControlProps()

Properties for creating a MediaPackage V2 Origin Access Control resource.

public MediaPackageV2OriginAccessControlProps()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CloudFront;

            Signing signing;

            var mediaPackageV2OriginAccessControlProps = new MediaPackageV2OriginAccessControlProps {
                Description = "description",
                OriginAccessControlName = "originAccessControlName",
                Signing = signing
            };

Properties

Description

A description of the origin access control.

public string? Description { get; set; }
Property Value

string

Remarks

Default: - no description

OriginAccessControlName

A name to identify the origin access control, with a maximum length of 64 characters.

public string? OriginAccessControlName { get; set; }
Property Value

string

Remarks

Default: - a generated name

Signing

Specifies which requests CloudFront signs and the signing protocol.

public Signing? Signing { get; set; }
Property Value

Signing

Remarks

Default: SIGV4_ALWAYS

See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originaccesscontrol-originaccesscontrolconfig.html#cfn-cloudfront-originaccesscontrol-originaccesscontrolconfig-signingbehavior

Implements

IMediaPackageV2OriginAccessControlProps
IOriginAccessControlBaseProps
Back to top Generated by DocFX