Show / Hide Table of Contents

Class CloudFrontWebDistributionAttributes

Attributes used to import a Distribution.

Inheritance
object
CloudFrontWebDistributionAttributes
Implements
ICloudFrontWebDistributionAttributes
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 CloudFrontWebDistributionAttributes : ICloudFrontWebDistributionAttributes
Syntax (vb)
Public Class CloudFrontWebDistributionAttributes Implements ICloudFrontWebDistributionAttributes
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;

            var cloudFrontWebDistributionAttributes = new CloudFrontWebDistributionAttributes {
                DistributionId = "distributionId",
                DomainName = "domainName"
            };

Synopsis

Constructors

CloudFrontWebDistributionAttributes()

Attributes used to import a Distribution.

Properties

DistributionId

The distribution ID for this distribution.

DomainName

The generated domain name of the Distribution, such as d111111abcdef8.cloudfront.net.

Constructors

CloudFrontWebDistributionAttributes()

Attributes used to import a Distribution.

public CloudFrontWebDistributionAttributes()
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;

            var cloudFrontWebDistributionAttributes = new CloudFrontWebDistributionAttributes {
                DistributionId = "distributionId",
                DomainName = "domainName"
            };

Properties

DistributionId

The distribution ID for this distribution.

public string DistributionId { get; set; }
Property Value

string

Remarks

Attribute: true

DomainName

The generated domain name of the Distribution, such as d111111abcdef8.cloudfront.net.

public string DomainName { get; set; }
Property Value

string

Remarks

Attribute: true

Implements

ICloudFrontWebDistributionAttributes
Back to top Generated by DocFX