Interface CfnRuntime.ManagedVpcResourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntime.ManagedVpcResourceProperty.Jsii$Proxy
- Enclosing class:
CfnRuntime
@Stability(Stable)
public static interface CfnRuntime.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.services.bedrockagentcore.*;
ManagedVpcResourceProperty managedVpcResourceProperty = ManagedVpcResourceProperty.builder()
.endpointIpAddressType("endpointIpAddressType")
.subnetIds(List.of("subnetIds"))
.vpcIdentifier("vpcIdentifier")
// the properties below are optional
.routingDomain("routingDomain")
.securityGroupIds(List.of("securityGroupIds"))
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuntime.ManagedVpcResourcePropertystatic final classAn implementation forCfnRuntime.ManagedVpcResourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The 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.The VPC identifier.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpointIpAddressType
The IP address type for the endpoint.- See Also:
-
getSubnetIds
The subnet IDs.- See Also:
-
getVpcIdentifier
The VPC identifier.- 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:
-
getTags
Tags to apply to the managed VPC Lattice resource gateway.- See Also:
-
builder
-