Interface CfnRequesterGatewayMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRequesterGatewayMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:31.426Z")
@Stability(Stable)
public interface CfnRequesterGatewayMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRequesterGatewayPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.*;
CfnRequesterGatewayMixinProps cfnRequesterGatewayMixinProps = CfnRequesterGatewayMixinProps.builder()
.description("description")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRequesterGatewayMixinPropsstatic final classAn implementation forCfnRequesterGatewayMixinProps -
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.default StringgetVpcId()The unique identifier of the Virtual Private Cloud (VPC).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
An optional description for the requester gateway.- See Also:
-
getSecurityGroupIds
The unique identifiers of the security groups.- See Also:
-
getSubnetIds
The unique identifiers of the subnets.- See Also:
-
getTags
A map of the key-value pairs of the tag or tags to assign to the resource.- See Also:
-
getVpcId
The unique identifier of the Virtual Private Cloud (VPC).- See Also:
-
builder
-