Class CfnVpcOrigin.VpcOriginEndpointConfigProperty
An Amazon CloudFront VPC origin endpoint configuration.
Inheritance
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VpcOriginEndpointConfigProperty : Object, CfnVpcOrigin.IVpcOriginEndpointConfigProperty
Syntax (vb)
Public Class VpcOriginEndpointConfigProperty
Inherits Object
Implements CfnVpcOrigin.IVpcOriginEndpointConfigProperty
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 vpcOriginEndpointConfigProperty = new VpcOriginEndpointConfigProperty {
Arn = "arn",
Name = "name",
// the properties below are optional
HttpPort = 123,
HttpsPort = 123,
OriginProtocolPolicy = "originProtocolPolicy",
OriginSslProtocols = new [] { "originSslProtocols" }
};
Synopsis
Constructors
VpcOriginEndpointConfigProperty() |
Properties
Arn | The ARN of the CloudFront VPC origin endpoint configuration. |
HttpPort | The HTTP port for the CloudFront VPC origin endpoint configuration. |
HttpsPort | The HTTPS port of the CloudFront VPC origin endpoint configuration. |
Name | The name of the CloudFront VPC origin endpoint configuration. |
OriginProtocolPolicy | The origin protocol policy for the CloudFront VPC origin endpoint configuration. |
OriginSslProtocols |
Constructors
VpcOriginEndpointConfigProperty()
public VpcOriginEndpointConfigProperty()
Properties
Arn
The ARN of the CloudFront VPC origin endpoint configuration.
public string Arn { get; set; }
Property Value
System.String
Remarks
HttpPort
The HTTP port for the CloudFront VPC origin endpoint configuration.
public Nullable<double> HttpPort { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
HttpsPort
The HTTPS port of the CloudFront VPC origin endpoint configuration.
public Nullable<double> HttpsPort { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
The default value is 443
.
Default: - 443
Name
The name of the CloudFront VPC origin endpoint configuration.
public string Name { get; set; }
Property Value
System.String
Remarks
OriginProtocolPolicy
The origin protocol policy for the CloudFront VPC origin endpoint configuration.
public string OriginProtocolPolicy { get; set; }
Property Value
System.String
Remarks
OriginSslProtocols
public string[] OriginSslProtocols { get; set; }
Property Value
System.String[]