Interface CfnResourceGatewayMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceGatewayMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:20.000Z")
@Stability(Stable)
public interface CfnResourceGatewayMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnResourceGatewayPropsMixin.
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.vpclattice.*;
CfnResourceGatewayMixinProps cfnResourceGatewayMixinProps = CfnResourceGatewayMixinProps.builder()
.ipAddressType("ipAddressType")
.ipv4AddressesPerEni(123)
.name("name")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcIdentifier("vpcIdentifier")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceGatewayMixinPropsstatic final classAn implementation forCfnResourceGatewayMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe type of IP address used by the resource gateway.default NumberThe number of IPv4 addresses in each ENI for the resource gateway.default StringgetName()The name of the resource gateway.The IDs of the security groups applied to the resource gateway.The IDs of the VPC subnets for the resource gateway.getTags()The tags for the resource gateway.default StringThe ID of the VPC for the resource gateway.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpAddressType
The type of IP address used by the resource gateway.- See Also:
-
getIpv4AddressesPerEni
The number of IPv4 addresses in each ENI for the resource gateway.- See Also:
-
getName
The name of the resource gateway.- See Also:
-
getSecurityGroupIds
The IDs of the security groups applied to the resource gateway.Returns union: Listinvalid input: '<'either
StringorISecurityGroupRef>- See Also:
-
getSubnetIds
The IDs of the VPC subnets for the resource gateway.Returns union: Listinvalid input: '<'either
StringorISubnetRef>- See Also:
-
getTags
The tags for the resource gateway.- See Also:
-
getVpcIdentifier
The ID of the VPC for the resource gateway.- See Also:
-
builder
-