@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:49.234Z") @Stability(value=Stable) public interface CfnDataRepositoryAssociationProps 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.fsx.*;
CfnDataRepositoryAssociationProps cfnDataRepositoryAssociationProps = CfnDataRepositoryAssociationProps.builder()
.dataRepositoryPath("dataRepositoryPath")
.fileSystemId("fileSystemId")
.fileSystemPath("fileSystemPath")
// the properties below are optional
.batchImportMetaDataOnCreate(false)
.importedFileChunkSize(123)
.s3(S3Property.builder()
.autoExportPolicy(AutoExportPolicyProperty.builder()
.events(List.of("events"))
.build())
.autoImportPolicy(AutoImportPolicyProperty.builder()
.events(List.of("events"))
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataRepositoryAssociationProps.Builder
A builder for
CfnDataRepositoryAssociationProps |
static class |
CfnDataRepositoryAssociationProps.Jsii$Proxy
An implementation for
CfnDataRepositoryAssociationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataRepositoryAssociationProps.Builder |
builder() |
default Object |
getBatchImportMetaDataOnCreate()
`AWS::FSx::DataRepositoryAssociation.BatchImportMetaDataOnCreate`.
|
String |
getDataRepositoryPath()
`AWS::FSx::DataRepositoryAssociation.DataRepositoryPath`.
|
String |
getFileSystemId()
`AWS::FSx::DataRepositoryAssociation.FileSystemId`.
|
String |
getFileSystemPath()
`AWS::FSx::DataRepositoryAssociation.FileSystemPath`.
|
default Number |
getImportedFileChunkSize()
`AWS::FSx::DataRepositoryAssociation.ImportedFileChunkSize`.
|
default Object |
getS3()
`AWS::FSx::DataRepositoryAssociation.S3`.
|
default List<CfnTag> |
getTags()
`AWS::FSx::DataRepositoryAssociation.Tags`.
|
@Stability(value=Stable) @NotNull String getDataRepositoryPath()
@Stability(value=Stable) @NotNull String getFileSystemId()
@Stability(value=Stable) @NotNull String getFileSystemPath()
@Stability(value=Stable) @Nullable default Object getBatchImportMetaDataOnCreate()
@Stability(value=Stable) @Nullable default Number getImportedFileChunkSize()
@Stability(value=Stable) @Nullable default Object getS3()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDataRepositoryAssociationProps.Builder builder()
Copyright © 2022. All rights reserved.