Show / Hide Table of Contents

Class GuardDutyFinding.KubernetesUserDetails

(experimental) Type definition for KubernetesUserDetails.

Inheritance
object
GuardDutyFinding.KubernetesUserDetails
Implements
GuardDutyFinding.IKubernetesUserDetails
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 GuardDutyFinding.KubernetesUserDetails : GuardDutyFinding.IKubernetesUserDetails
Syntax (vb)
Public Class GuardDutyFinding.KubernetesUserDetails Implements GuardDutyFinding.IKubernetesUserDetails
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 kubernetesUserDetails = new KubernetesUserDetails {
                 Groups = new [] { "groups" },
                 Uid = new [] { "uid" },
                 Username = new [] { "username" }
             };

Synopsis

Constructors

KubernetesUserDetails()

(experimental) Type definition for KubernetesUserDetails.

Properties

Groups

(experimental) groups property.

Uid

(experimental) uid property.

Username

(experimental) username property.

Constructors

KubernetesUserDetails()

(experimental) Type definition for KubernetesUserDetails.

public KubernetesUserDetails()
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 kubernetesUserDetails = new KubernetesUserDetails {
                 Groups = new [] { "groups" },
                 Uid = new [] { "uid" },
                 Username = new [] { "username" }
             };

Properties

Groups

(experimental) groups property.

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

string[]

Remarks

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

Uid

(experimental) uid property.

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

string[]

Remarks

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

Username

(experimental) username property.

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

string[]

Remarks

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

GuardDutyFinding.IKubernetesUserDetails
Back to top Generated by DocFX