@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.859Z") @Stability(value=Stable) public interface CfnMountTargetProps 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.efs.*;
CfnMountTargetProps cfnMountTargetProps = CfnMountTargetProps.builder()
.fileSystemId("fileSystemId")
.securityGroups(List.of("securityGroups"))
.subnetId("subnetId")
// the properties below are optional
.ipAddress("ipAddress")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMountTargetProps.Builder
A builder for
CfnMountTargetProps |
static class |
CfnMountTargetProps.Jsii$Proxy
An implementation for
CfnMountTargetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnMountTargetProps.Builder |
builder() |
String |
getFileSystemId()
The ID of the file system for which to create the mount target.
|
default String |
getIpAddress()
Valid IPv4 address within the address range of the specified subnet.
|
List<String> |
getSecurityGroups()
Up to five VPC security group IDs, of the form `sg-xxxxxxxx` .
|
String |
getSubnetId()
The ID of the subnet to add the mount target in.
|
@Stability(value=Stable) @NotNull String getFileSystemId()
@Stability(value=Stable) @NotNull List<String> getSecurityGroups()
These must be for the same VPC as subnet specified.
@Stability(value=Stable) @NotNull String getSubnetId()
For file systems that use One Zone storage classes, use the subnet that is associated with the file system's Availability Zone.
@Stability(value=Stable) @Nullable default String getIpAddress()
@Stability(value=Stable) static CfnMountTargetProps.Builder builder()
CfnMountTargetProps.Builder of CfnMountTargetPropsCopyright © 2022. All rights reserved.