@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.455Z") @Stability(value=Stable) public interface FileSystemProps 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.*;
import software.amazon.awscdk.services.ec2.*;
import software.amazon.awscdk.services.fsx.*;
import software.amazon.awscdk.services.kms.*;
Key key;
SecurityGroup securityGroup;
Vpc vpc;
FileSystemProps fileSystemProps = FileSystemProps.builder()
.storageCapacityGiB(123)
.vpc(vpc)
// the properties below are optional
.backupId("backupId")
.kmsKey(key)
.removalPolicy(RemovalPolicy.DESTROY)
.securityGroup(securityGroup)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
FileSystemProps.Builder
A builder for
FileSystemProps |
static class |
FileSystemProps.Jsii$Proxy
An implementation for
FileSystemProps |
| Modifier and Type | Method and Description |
|---|---|
static FileSystemProps.Builder |
builder() |
default String |
getBackupId()
The ID of the backup.
|
default IKey |
getKmsKey()
The KMS key used for encryption to protect your data at rest.
|
default RemovalPolicy |
getRemovalPolicy()
Policy to apply when the file system is removed from the stack.
|
default ISecurityGroup |
getSecurityGroup()
Security Group to assign to this file system.
|
Number |
getStorageCapacityGiB()
The storage capacity of the file system being created.
|
IVpc |
getVpc()
The VPC to launch the file system in.
|
@Stability(value=Stable) @NotNull Number getStorageCapacityGiB()
For Windows file systems, valid values are 32 GiB to 65,536 GiB. For SCRATCH_1 deployment types, valid values are 1,200, 2,400, 3,600, then continuing in increments of 3,600 GiB. For SCRATCH_2 and PERSISTENT_1 types, valid values are 1,200, 2,400, then continuing in increments of 2,400 GiB.
@Stability(value=Stable) @NotNull IVpc getVpc()
@Stability(value=Stable) @Nullable default String getBackupId()
Specifies the backup to use if you're creating a file system from an existing backup.
Default: - no backup will be used.
@Stability(value=Stable) @Nullable default IKey getKmsKey()
Default: - the aws/fsx default KMS key for the AWS account being deployed into.
@Stability(value=Stable) @Nullable default RemovalPolicy getRemovalPolicy()
Default: RemovalPolicy.RETAIN
@Stability(value=Stable) @Nullable default ISecurityGroup getSecurityGroup()
Default: - creates new security group which allows all outbound traffic.
@Stability(value=Stable) static FileSystemProps.Builder builder()
FileSystemProps.Builder of FileSystemPropsCopyright © 2022. All rights reserved.