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: