Show / Hide Table of Contents

Class CfnVpcOriginProps

Properties for defining a CfnVpcOrigin.

Inheritance
object
CfnVpcOriginProps
Implements
ICfnVpcOriginProps
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 CfnVpcOriginProps : ICfnVpcOriginProps
Syntax (vb)
Public Class CfnVpcOriginProps Implements ICfnVpcOriginProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html

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 cfnVpcOriginProps = new CfnVpcOriginProps {
                 VpcOriginEndpointConfig = new VpcOriginEndpointConfigProperty {
                     Arn = "arn",
                     Name = "name",

                     // the properties below are optional
                     HttpPort = 123,
                     HttpsPort = 123,
                     OriginProtocolPolicy = "originProtocolPolicy",
                     OriginSslProtocols = new [] { "originSslProtocols" }
                 },

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnVpcOriginProps()

Properties for defining a CfnVpcOrigin.

Properties

Tags

A complex type that contains zero or more Tag elements.

VpcOriginEndpointConfig

The VPC origin endpoint configuration.

Constructors

CfnVpcOriginProps()

Properties for defining a CfnVpcOrigin.

public CfnVpcOriginProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html

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 cfnVpcOriginProps = new CfnVpcOriginProps {
                 VpcOriginEndpointConfig = new VpcOriginEndpointConfigProperty {
                     Arn = "arn",
                     Name = "name",

                     // the properties below are optional
                     HttpPort = 123,
                     HttpsPort = 123,
                     OriginProtocolPolicy = "originProtocolPolicy",
                     OriginSslProtocols = new [] { "originSslProtocols" }
                 },

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Tags

A complex type that contains zero or more Tag elements.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html#cfn-cloudfront-vpcorigin-tags

VpcOriginEndpointConfig

The VPC origin endpoint configuration.

public object VpcOriginEndpointConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html#cfn-cloudfront-vpcorigin-vpcoriginendpointconfig

Type union: either IResolvable or CfnVpcOrigin.IVpcOriginEndpointConfigProperty

Implements

ICfnVpcOriginProps
Back to top Generated by DocFX