Interface CfnEndpointMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.823Z")
@Stability(Stable)
public interface CfnEndpointMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEndpointPropsMixin.
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.s3outposts.*;
CfnEndpointMixinProps cfnEndpointMixinProps = CfnEndpointMixinProps.builder()
.accessType("accessType")
.customerOwnedIpv4Pool("customerOwnedIpv4Pool")
.failedReason(FailedReasonProperty.builder()
.errorCode("errorCode")
.message("message")
.build())
.outpostId("outpostId")
.securityGroupId("securityGroupId")
.subnetId("subnetId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointMixinPropsstatic final classAn implementation forCfnEndpointMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe container for the type of connectivity used to access the Amazon S3 on Outposts endpoint.default StringThe ID of the customer-owned IPv4 address pool (CoIP pool) for the endpoint.default ObjectThe failure reason, if any, for a create or delete endpoint operation.default StringThe ID of the Outpost.default StringThe ID of the security group used for the endpoint.default StringThe ID of the subnet used for the endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessType
The container for the type of connectivity used to access the Amazon S3 on Outposts endpoint.To use the Amazon VPC , choose
Private. To use the endpoint with an on-premises network, chooseCustomerOwnedIp. If you chooseCustomerOwnedIp, you must also provide the customer-owned IP address pool (CoIP pool).Privateis the default access type value.Default: - "Private"
- See Also:
-
getCustomerOwnedIpv4Pool
The ID of the customer-owned IPv4 address pool (CoIP pool) for the endpoint.IP addresses are allocated from this pool for the endpoint.
- See Also:
-
getFailedReason
The failure reason, if any, for a create or delete endpoint operation.Returns union: either
IResolvableorCfnEndpointPropsMixin.FailedReasonProperty- See Also:
-
getOutpostId
The ID of the Outpost.- See Also:
-
getSecurityGroupId
The ID of the security group used for the endpoint.- See Also:
-
getSubnetId
The ID of the subnet used for the endpoint.- See Also:
-
builder
- Returns:
- a
CfnEndpointMixinProps.BuilderofCfnEndpointMixinProps
-