Interface CfnFileSystemMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystemMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:18.708Z")
@Stability(Stable)
public interface CfnFileSystemMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFileSystemPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.s3files.*;
CfnFileSystemMixinProps cfnFileSystemMixinProps = CfnFileSystemMixinProps.builder()
.acceptBucketWarning(false)
.bucket("bucket")
.clientToken("clientToken")
.kmsKeyId("kmsKeyId")
.prefix("prefix")
.roleArn("roleArn")
.synchronizationConfiguration(SynchronizationConfigurationProperty.builder()
.expirationDataRules(List.of(ExpirationDataRuleProperty.builder()
.daysAfterLastAccess(123)
.build()))
.importDataRules(List.of(ImportDataRuleProperty.builder()
.prefix("prefix")
.sizeLessThan(123)
.trigger("trigger")
.build()))
.latestVersionNumber(123)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFileSystemMixinPropsstatic final classAn implementation forCfnFileSystemMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherBooleanorIResolvabledefault Stringdefault Stringdefault Stringdefault Stringdefault Stringdefault ObjectReturns union: eitherIResolvableorCfnFileSystemPropsMixin.SynchronizationConfigurationPropertygetTags()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcceptBucketWarning
Returns union: eitherBooleanorIResolvable- See Also:
-
getBucket
- See Also:
-
getClientToken
- See Also:
-
getKmsKeyId
- See Also:
-
getPrefix
- See Also:
-
getRoleArn
- See Also:
-
getSynchronizationConfiguration
Returns union: eitherIResolvableorCfnFileSystemPropsMixin.SynchronizationConfigurationProperty- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnFileSystemMixinProps.BuilderofCfnFileSystemMixinProps
-