@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.840Z") @Stability(value=Stable) public interface CfnEndpointProps extends software.amazon.jsii.JsiiSerializable
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")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpointProps.Builder
A builder for
CfnEndpointProps |
static class |
CfnEndpointProps.Jsii$Proxy
An implementation for
CfnEndpointProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpointProps.Builder |
builder() |
default String |
getAccessType()
The container for the type of connectivity used to access the Amazon S3 on Outposts endpoint.
|
default String |
getCustomerOwnedIpv4Pool()
The ID of the customer-owned IPv4 address pool (CoIP pool) for the endpoint.
|
String |
getOutpostId()
The ID of the Outpost.
|
String |
getSecurityGroupId()
The ID of the security group to use with the endpoint.
|
String |
getSubnetId()
The ID of the subnet.
|
@Stability(value=Stable) @NotNull String getOutpostId()
@Stability(value=Stable) @NotNull String getSecurityGroupId()
@Stability(value=Stable) @NotNull String getSubnetId()
@Stability(value=Stable) @Nullable default String getAccessType()
To use the Amazon VPC , choose Private . To use the endpoint with an on-premises network, choose CustomerOwnedIp . If you choose CustomerOwnedIp , you must also provide the customer-owned IP address pool (CoIP pool).
Privateis the default access type value.
@Stability(value=Stable) @Nullable default String getCustomerOwnedIpv4Pool()
IP addresses are allocated from this pool for the endpoint.
@Stability(value=Stable) static CfnEndpointProps.Builder builder()
CfnEndpointProps.Builder of CfnEndpointPropsCopyright © 2022. All rights reserved.