Show / Hide Table of Contents

Class AWSAPICallViaCloudTrail.UserIdentity

(experimental) Type definition for UserIdentity.

Inheritance
object
AWSAPICallViaCloudTrail.UserIdentity
Implements
AWSAPICallViaCloudTrail.IUserIdentity
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.Logs.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class AWSAPICallViaCloudTrail.UserIdentity : AWSAPICallViaCloudTrail.IUserIdentity
Syntax (vb)
Public Class AWSAPICallViaCloudTrail.UserIdentity Implements AWSAPICallViaCloudTrail.IUserIdentity
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.Logs.Events;

             var userIdentity = new UserIdentity {
                 AccessKeyId = new [] { "accessKeyId" },
                 AccountId = new [] { "accountId" },
                 Arn = new [] { "arn" },
                 InvokedBy = new [] { "invokedBy" },
                 PrincipalId = new [] { "principalId" },
                 SessionContext = new SessionContext {
                     Attributes = new Attributes {
                         CreationDate = new [] { "creationDate" },
                         MfaAuthenticated = new [] { "mfaAuthenticated" }
                     },
                     SessionIssuer = new SessionIssuer {
                         AccountId = new [] { "accountId" },
                         Arn = new [] { "arn" },
                         PrincipalId = new [] { "principalId" },
                         Type = new [] { "type" },
                         UserName = new [] { "userName" }
                     }
                 },
                 Type = new [] { "type" }
             };

Synopsis

Constructors

UserIdentity()

(experimental) Type definition for UserIdentity.

Properties

AccessKeyId

(experimental) accessKeyId property.

AccountId

(experimental) accountId property.

Arn

(experimental) arn property.

InvokedBy

(experimental) invokedBy property.

PrincipalId

(experimental) principalId property.

SessionContext

(experimental) sessionContext property.

Type

(experimental) type property.

Constructors

UserIdentity()

(experimental) Type definition for UserIdentity.

public UserIdentity()
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.Logs.Events;

             var userIdentity = new UserIdentity {
                 AccessKeyId = new [] { "accessKeyId" },
                 AccountId = new [] { "accountId" },
                 Arn = new [] { "arn" },
                 InvokedBy = new [] { "invokedBy" },
                 PrincipalId = new [] { "principalId" },
                 SessionContext = new SessionContext {
                     Attributes = new Attributes {
                         CreationDate = new [] { "creationDate" },
                         MfaAuthenticated = new [] { "mfaAuthenticated" }
                     },
                     SessionIssuer = new SessionIssuer {
                         AccountId = new [] { "accountId" },
                         Arn = new [] { "arn" },
                         PrincipalId = new [] { "principalId" },
                         Type = new [] { "type" },
                         UserName = new [] { "userName" }
                     }
                 },
                 Type = new [] { "type" }
             };

Properties

AccessKeyId

(experimental) accessKeyId property.

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

string[]

Remarks

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

AccountId

(experimental) accountId property.

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

string[]

Remarks

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

Arn

(experimental) arn property.

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

string[]

Remarks

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

InvokedBy

(experimental) invokedBy property.

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

string[]

Remarks

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

PrincipalId

(experimental) principalId property.

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

string[]

Remarks

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

SessionContext

(experimental) sessionContext property.

public AWSAPICallViaCloudTrail.ISessionContext? SessionContext { get; set; }
Property Value

AWSAPICallViaCloudTrail.ISessionContext

Remarks

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

Type

(experimental) type property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of type 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.IUserIdentity
Back to top Generated by DocFX