Interface CfnFileSystemPropsMixin.SynchronizationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystemPropsMixin.SynchronizationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFileSystemPropsMixin
@Stability(Stable)
public static interface CfnFileSystemPropsMixin.SynchronizationConfigurationProperty
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.cfnpropertymixins.services.s3files.*;
SynchronizationConfigurationProperty synchronizationConfigurationProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnFileSystemPropsMixin.SynchronizationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnFileSystemPropsMixin.ExpirationDataRuleProperty>default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnFileSystemPropsMixin.ImportDataRuleProperty>default NumberMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExpirationDataRules
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnFileSystemPropsMixin.ExpirationDataRuleProperty>- See Also:
-
getImportDataRules
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnFileSystemPropsMixin.ImportDataRuleProperty>- See Also:
-
getLatestVersionNumber
- See Also:
-
builder
@Stability(Stable) static CfnFileSystemPropsMixin.SynchronizationConfigurationProperty.Builder builder()
-