Interface CfnRequesterGatewayMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRequesterGatewayMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.671Z")
@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.cfnpropertymixins.services.rtbfabric.*;
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 ObjectgetVpcId()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.Returns union: Listinvalid input: '<'either
StringorISecurityGroupRef>- See Also:
-
getSubnetIds
The unique identifiers of the subnets.Returns union: Listinvalid input: '<'either
StringorISubnetRef>- See Also:
-
getTags
A map of the key-value pairs of the tag or tags to assign to the resource.- See Also:
-
getVpcId
- See Also:
-
builder
-