Interface CfnInstanceConnectEndpointMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstanceConnectEndpointMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:58.447Z")
@Stability(Stable)
public interface CfnInstanceConnectEndpointMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnInstanceConnectEndpointPropsMixin.
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.ec2.*;
CfnInstanceConnectEndpointMixinProps cfnInstanceConnectEndpointMixinProps = CfnInstanceConnectEndpointMixinProps.builder()
.clientToken("clientToken")
.preserveClientIp(false)
.securityGroupIds(List.of("securityGroupIds"))
.subnetId("subnetId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInstanceConnectEndpointMixinPropsstatic final classAn implementation forCfnInstanceConnectEndpointMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringUnique, case-sensitive identifier that you provide to ensure the idempotency of the request.default ObjectIndicates whether the client IP address is preserved as the source.One or more security groups to associate with the endpoint.default StringThe ID of the subnet in which to create the EC2 Instance Connect Endpoint.getTags()The tags to apply to the EC2 Instance Connect Endpoint during creation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientToken
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.- See Also:
-
getPreserveClientIp
Indicates whether the client IP address is preserved as the source. The following are the possible values.true- Use the client IP address as the source.false- Use the network interface IP address as the source.
PreserveClientIpis only supported on IPv4 EC2 Instance Connect Endpoints. To usePreserveClientIp, the value forIpAddressTypemust beipv4.Default:
falseReturns union: either
BooleanorIResolvable- See Also:
-
getSecurityGroupIds
One or more security groups to associate with the endpoint.If you don't specify a security group, the default security group for your VPC will be associated with the endpoint.
- See Also:
-
getSubnetId
The ID of the subnet in which to create the EC2 Instance Connect Endpoint.- See Also:
-
getTags
The tags to apply to the EC2 Instance Connect Endpoint during creation.- See Also:
-
builder
-