Interface CfnRequesterGatewayProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRequesterGatewayProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:13.932Z")
@Stability(Stable)
public interface CfnRequesterGatewayProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRequesterGateway.
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.rtbfabric.*;
CfnRequesterGatewayProps cfnRequesterGatewayProps = CfnRequesterGatewayProps.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRequesterGatewayPropsstatic final classAn implementation forCfnRequesterGatewayProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The ID of one or more security groups in order to create a requester gateway.- See Also:
-
getSubnetIds
The ID of one or more subnets in order to create a requester gateway.- See Also:
-
getVpcId
- See Also:
-
getDescription
- See Also:
-
getTags
Tags to assign to the Requester Gateway.- See Also:
-
builder
- Returns:
- a
CfnRequesterGatewayProps.BuilderofCfnRequesterGatewayProps
-