Show / Hide Table of Contents

Class GuardDutyMalwareProtectionObjectScanResult.S3ObjectDetails

(experimental) Type definition for S3ObjectDetails.

Inheritance
object
GuardDutyMalwareProtectionObjectScanResult.S3ObjectDetails
Implements
GuardDutyMalwareProtectionObjectScanResult.IS3ObjectDetails
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.GuardDuty.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class GuardDutyMalwareProtectionObjectScanResult.S3ObjectDetails : GuardDutyMalwareProtectionObjectScanResult.IS3ObjectDetails
Syntax (vb)
Public Class GuardDutyMalwareProtectionObjectScanResult.S3ObjectDetails Implements GuardDutyMalwareProtectionObjectScanResult.IS3ObjectDetails
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.GuardDuty.Events;

             var s3ObjectDetails = new S3ObjectDetails {
                 BucketName = new [] { "bucketName" },
                 ETag = new [] { "eTag" },
                 ObjectKey = new [] { "objectKey" },
                 S3Throttled = new [] { "s3Throttled" },
                 VersionId = new [] { "versionId" }
             };

Synopsis

Constructors

S3ObjectDetails()

(experimental) Type definition for S3ObjectDetails.

Properties

BucketName

(experimental) bucketName property.

ETag

(experimental) eTag property.

ObjectKey

(experimental) objectKey property.

S3Throttled

(experimental) s3Throttled property.

VersionId

(experimental) versionId property.

Constructors

S3ObjectDetails()

(experimental) Type definition for S3ObjectDetails.

public S3ObjectDetails()
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.GuardDuty.Events;

             var s3ObjectDetails = new S3ObjectDetails {
                 BucketName = new [] { "bucketName" },
                 ETag = new [] { "eTag" },
                 ObjectKey = new [] { "objectKey" },
                 S3Throttled = new [] { "s3Throttled" },
                 VersionId = new [] { "versionId" }
             };

Properties

BucketName

(experimental) bucketName property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of bucketName 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

ETag

(experimental) eTag property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of eTag 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

ObjectKey

(experimental) objectKey property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of objectKey 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

S3Throttled

(experimental) s3Throttled property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of s3Throttled 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

VersionId

(experimental) versionId property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of versionId 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

GuardDutyMalwareProtectionObjectScanResult.IS3ObjectDetails
Back to top Generated by DocFX