interface VpcOriginReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFront.VpcOriginReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudfront#VpcOriginReference |
Java | software.amazon.awscdk.interfaces.cloudfront.VpcOriginReference |
Python | aws_cdk.interfaces.aws_cloudfront.VpcOriginReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudfront » VpcOriginReference |
A reference to a VpcOrigin resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as interfaces_aws_cloudfront } from 'aws-cdk-lib/interfaces';
const vpcOriginReference: interfaces_aws_cloudfront.VpcOriginReference = {
vpcOriginArn: 'vpcOriginArn',
vpcOriginId: 'vpcOriginId',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | The ARN of the VpcOrigin resource. |
| vpc | string | The Id of the VpcOrigin resource. |
vpcOriginArn
Type:
string
The ARN of the VpcOrigin resource.
vpcOriginId
Type:
string
The Id of the VpcOrigin resource.

.NET
Go
Java
Python
TypeScript