Show / Hide Table of Contents

Class AWSAPICallViaCloudTrail.RetentionInfo

(experimental) Type definition for RetentionInfo.

Inheritance
object
AWSAPICallViaCloudTrail.RetentionInfo
Implements
AWSAPICallViaCloudTrail.IRetentionInfo
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.S3.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class AWSAPICallViaCloudTrail.RetentionInfo : AWSAPICallViaCloudTrail.IRetentionInfo
Syntax (vb)
Public Class AWSAPICallViaCloudTrail.RetentionInfo Implements AWSAPICallViaCloudTrail.IRetentionInfo
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.S3.Events;

             var retentionInfo = new RetentionInfo {
                 LastModifiedTime = new [] { "lastModifiedTime" },
                 RetainUntilMode = new [] { "retainUntilMode" },
                 RetainUntilTime = new [] { "retainUntilTime" }
             };

Synopsis

Constructors

RetentionInfo()

(experimental) Type definition for RetentionInfo.

Properties

LastModifiedTime

(experimental) lastModifiedTime property.

RetainUntilMode

(experimental) retainUntilMode property.

RetainUntilTime

(experimental) retainUntilTime property.

Constructors

RetentionInfo()

(experimental) Type definition for RetentionInfo.

public RetentionInfo()
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.S3.Events;

             var retentionInfo = new RetentionInfo {
                 LastModifiedTime = new [] { "lastModifiedTime" },
                 RetainUntilMode = new [] { "retainUntilMode" },
                 RetainUntilTime = new [] { "retainUntilTime" }
             };

Properties

LastModifiedTime

(experimental) lastModifiedTime property.

public string[]? LastModifiedTime { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of lastModifiedTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

RetainUntilMode

(experimental) retainUntilMode property.

public string[]? RetainUntilMode { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of retainUntilMode is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

RetainUntilTime

(experimental) retainUntilTime property.

public string[]? RetainUntilTime { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of retainUntilTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Implements

AWSAPICallViaCloudTrail.IRetentionInfo
Back to top Generated by DocFX