Interface CfnRuntimePropsMixin.ManagedVpcResourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntimePropsMixin.ManagedVpcResourceProperty.Jsii$Proxy
- Enclosing class:
CfnRuntimePropsMixin
@Stability(Stable)
public static interface CfnRuntimePropsMixin.ManagedVpcResourceProperty
extends software.amazon.jsii.JsiiSerializable
Managed VPC resource configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
ManagedVpcResourceProperty managedVpcResourceProperty = ManagedVpcResourceProperty.builder()
.endpointIpAddressType("endpointIpAddressType")
.routingDomain("routingDomain")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.tags(Map.of(
"tagsKey", "tags"))
.vpcIdentifier("vpcIdentifier")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuntimePropsMixin.ManagedVpcResourcePropertystatic final classAn implementation forCfnRuntimePropsMixin.ManagedVpcResourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe IP address type for the endpoint.default StringAn intermediate domain to use as the resource configuration endpoint instead of the actual target domain.The security group IDs.The subnet IDs.getTags()Tags to apply to the managed VPC Lattice resource gateway.default StringThe VPC identifier.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpointIpAddressType
The IP address type for the endpoint.- See Also:
-
getRoutingDomain
An intermediate domain to use as the resource configuration endpoint instead of the actual target domain.- See Also:
-
getSecurityGroupIds
The security group IDs.- See Also:
-
getSubnetIds
The subnet IDs.- See Also:
-
getTags
Tags to apply to the managed VPC Lattice resource gateway.- See Also:
-
getVpcIdentifier
The VPC identifier.- See Also:
-
builder
-