@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-13T01:13:32.747Z")
public interface CfnVPCPeeringConnectionProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; CfnVPCPeeringConnectionProps cfnVPCPeeringConnectionProps = CfnVPCPeeringConnectionProps.builder() .peerVpcId("peerVpcId") .vpcId("vpcId") // the properties below are optional .peerOwnerId("peerOwnerId") .peerRegion("peerRegion") .peerRoleArn("peerRoleArn") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnVPCPeeringConnectionProps.Builder
A builder for
CfnVPCPeeringConnectionProps |
static class |
CfnVPCPeeringConnectionProps.Jsii$Proxy
An implementation for
CfnVPCPeeringConnectionProps |
Modifier and Type | Method and Description |
---|---|
static CfnVPCPeeringConnectionProps.Builder |
builder() |
default java.lang.String |
getPeerOwnerId()
The AWS account ID of the owner of the accepter VPC.
|
default java.lang.String |
getPeerRegion()
The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request.
|
default java.lang.String |
getPeerRoleArn()
The Amazon Resource Name (ARN) of the VPC peer role for the peering connection in another AWS account.
|
java.lang.String |
getPeerVpcId()
The ID of the VPC with which you are creating the VPC peering connection.
|
default java.util.List<CfnTag> |
getTags()
Any tags assigned to the resource.
|
java.lang.String |
getVpcId()
The ID of the VPC.
|
java.lang.String getPeerVpcId()
You must specify this parameter in the request.
java.lang.String getVpcId()
default java.lang.String getPeerOwnerId()
Default: Your AWS account ID
default java.lang.String getPeerRegion()
Default: The Region in which you make the request.
default java.lang.String getPeerRoleArn()
This is required when you are peering a VPC in a different AWS account.
default java.util.List<CfnTag> getTags()
static CfnVPCPeeringConnectionProps.Builder builder()