Class CfnBucket.LifecycleConfigurationProperty
The container for the lifecycle configuration for the objects stored in an S3 on Outposts bucket.
Inheritance
System.Object
CfnBucket.LifecycleConfigurationProperty
Implements
Namespace: Amazon.CDK.AWS.S3Outposts
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LifecycleConfigurationProperty : Object, CfnBucket.ILifecycleConfigurationProperty
Syntax (vb)
Public Class LifecycleConfigurationProperty
Inherits Object
Implements CfnBucket.ILifecycleConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3Outposts;
var filter;
var lifecycleConfigurationProperty = new LifecycleConfigurationProperty {
Rules = new [] { new RuleProperty {
Status = "status",
// the properties below are optional
AbortIncompleteMultipartUpload = new AbortIncompleteMultipartUploadProperty {
DaysAfterInitiation = 123
},
ExpirationDate = "expirationDate",
ExpirationInDays = 123,
Filter = filter,
Id = "id"
} }
};
Synopsis
Constructors
LifecycleConfigurationProperty() |
Properties
Rules | The container for the lifecycle configuration rules for the objects stored in the S3 on Outposts bucket. |
Constructors
LifecycleConfigurationProperty()
public LifecycleConfigurationProperty()
Properties
Rules
The container for the lifecycle configuration rules for the objects stored in the S3 on Outposts bucket.
public object Rules { get; set; }
Property Value
System.Object