@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:17.734Z") @Stability(value=Stable) public interface FileSystemAttributes 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.ec2.*;
import software.amazon.awscdk.services.fsx.*;
SecurityGroup securityGroup;
FileSystemAttributes fileSystemAttributes = FileSystemAttributes.builder()
.dnsName("dnsName")
.fileSystemId("fileSystemId")
.securityGroup(securityGroup)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
FileSystemAttributes.Builder
A builder for
FileSystemAttributes |
static class |
FileSystemAttributes.Jsii$Proxy
An implementation for
FileSystemAttributes |
| Modifier and Type | Method and Description |
|---|---|
static FileSystemAttributes.Builder |
builder() |
String |
getDnsName()
The DNS name assigned to this file system.
|
String |
getFileSystemId()
The ID of the file system, assigned by Amazon FSx.
|
ISecurityGroup |
getSecurityGroup()
The security group of the file system.
|
@Stability(value=Stable) @NotNull String getDnsName()
@Stability(value=Stable) @NotNull String getFileSystemId()
@Stability(value=Stable) @NotNull ISecurityGroup getSecurityGroup()
@Stability(value=Stable) static FileSystemAttributes.Builder builder()
FileSystemAttributes.Builder of FileSystemAttributesCopyright © 2021. All rights reserved.