Interface CfnRequesterGatewayProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRequesterGatewayProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:17.010Z")
@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
Modifier and TypeMethodDescriptionbuilder()default StringAn optional description for the requester gateway.The unique identifiers of the security groups.The unique identifiers of the subnets.getTags()A map of the key-value pairs of the tag or tags to assign to the resource.getVpcId()The unique identifier of the Virtual Private Cloud (VPC).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The unique identifiers of the security groups.Returns union: Listinvalid input: '<'either
StringorISecurityGroupRef>- See Also:
-
getSubnetIds
The unique identifiers of the subnets.Returns union: Listinvalid input: '<'either
StringorISubnetRef>- See Also:
-
getVpcId
- See Also:
-
getDescription
An optional description for the requester gateway.- See Also:
-
getTags
A map of the key-value pairs of the tag or tags to assign to the resource.- See Also:
-
builder
- Returns:
- a
CfnRequesterGatewayProps.BuilderofCfnRequesterGatewayProps
-