Show / Hide Table of Contents

Interface IOriginAccessControlBaseProps

Common properties for creating a Origin Access Control resource.

Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IOriginAccessControlBaseProps
Syntax (vb)
Public Interface 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 originAccessControlBaseProps = new OriginAccessControlBaseProps {
                Description = "description",
                OriginAccessControlName = "originAccessControlName",
                Signing = signing
            };

Synopsis

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.

Properties

Description

A description of the origin access control.

string? Description { get; }
Property Value

string

Remarks

Default: - no description

OriginAccessControlName

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

string? OriginAccessControlName { get; }
Property Value

string

Remarks

Default: - a generated name

Signing

Specifies which requests CloudFront signs and the signing protocol.

Signing? Signing { get; }
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

Back to top Generated by DocFX