@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:36.976Z") @Stability(value=Stable) public interface CfnFlowVpcInterfaceProps extends software.amazon.jsii.JsiiSerializable
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.mediaconnect.*;
CfnFlowVpcInterfaceProps cfnFlowVpcInterfaceProps = CfnFlowVpcInterfaceProps.builder()
.flowArn("flowArn")
.name("name")
.roleArn("roleArn")
.securityGroupIds(List.of("securityGroupIds"))
.subnetId("subnetId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFlowVpcInterfaceProps.Builder
A builder for
CfnFlowVpcInterfaceProps |
static class |
CfnFlowVpcInterfaceProps.Jsii$Proxy
An implementation for
CfnFlowVpcInterfaceProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFlowVpcInterfaceProps.Builder |
builder() |
String |
getFlowArn()
The Amazon Resource Name (ARN) of the flow.
|
String |
getName()
The name of the VPC Interface.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) of the role that you created when you set up MediaConnect as a trusted service.
|
List<String> |
getSecurityGroupIds()
The VPC security groups that you want MediaConnect to use for your VPC configuration.
|
String |
getSubnetId()
The subnet IDs that you want to use for your VPC interface.
|
@Stability(value=Stable) @NotNull String getFlowArn()
@Stability(value=Stable) @NotNull String getName()
This value must be unique within the current flow.
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @NotNull List<String> getSecurityGroupIds()
You must include at least one security group in the request.
@Stability(value=Stable) @NotNull String getSubnetId()
A range of IP addresses in your VPC. When you create your VPC, you specify a range of IPv4 addresses for the VPC in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. This is the primary CIDR block for your VPC. When you create a subnet for your VPC, you specify the CIDR block for the subnet, which is a subset of the VPC CIDR block.
The subnets that you use across all VPC interfaces on the flow must be in the same Availability Zone as the flow.
@Stability(value=Stable) static CfnFlowVpcInterfaceProps.Builder builder()
CfnFlowVpcInterfaceProps.Builder of CfnFlowVpcInterfacePropsCopyright © 2022. All rights reserved.