Interface CfnEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:13.337Z")
@Stability(Stable)
public interface CfnEndpointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEndpoint.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3outposts.*;
CfnEndpointProps cfnEndpointProps = CfnEndpointProps.builder()
.outpostId("outpostId")
.securityGroupId("securityGroupId")
.subnetId("subnetId")
// the properties below are optional
.accessType("accessType")
.customerOwnedIpv4Pool("customerOwnedIpv4Pool")
.failedReason(FailedReasonProperty.builder()
.errorCode("errorCode")
.message("message")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointPropsstatic final classAn implementation forCfnEndpointProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEndpointProps.Builderbuilder()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.The id of the customer outpost on which the bucket resides.The ID of the security group used for the endpoint.The ID of the subnet used for the endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutpostId
The id of the customer outpost on which the bucket resides.- 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:
-
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.- See Also:
-
builder
- Returns:
- a
CfnEndpointProps.BuilderofCfnEndpointProps
-