Show / Hide Table of Contents

Class AWSAPICallViaCloudTrail.RequestParameters

(experimental) Type definition for RequestParameters.

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

             var tags;

             var requestParameters = new RequestParameters {
                 ActivityArn = new [] { "activityArn" },
                 Definition = new [] { "definition" },
                 ExecutionArn = new [] { "executionArn" },
                 Input = new [] { "input" },
                 Name = new [] { "name" },
                 RoleArn = new [] { "roleArn" },
                 StateMachineArn = new [] { "stateMachineArn" },
                 Tags = new [] { tags }
             };

Synopsis

Constructors

RequestParameters()

(experimental) Type definition for RequestParameters.

Properties

ActivityArn

(experimental) activityArn property.

Definition

(experimental) definition property.

ExecutionArn

(experimental) executionArn property.

Input

(experimental) input property.

Name

(experimental) name property.

RoleArn

(experimental) roleArn property.

StateMachineArn

(experimental) stateMachineArn property.

Tags

(experimental) tags property.

Constructors

RequestParameters()

(experimental) Type definition for RequestParameters.

public RequestParameters()
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.States.Events;

             var tags;

             var requestParameters = new RequestParameters {
                 ActivityArn = new [] { "activityArn" },
                 Definition = new [] { "definition" },
                 ExecutionArn = new [] { "executionArn" },
                 Input = new [] { "input" },
                 Name = new [] { "name" },
                 RoleArn = new [] { "roleArn" },
                 StateMachineArn = new [] { "stateMachineArn" },
                 Tags = new [] { tags }
             };

Properties

ActivityArn

(experimental) activityArn property.

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

string[]

Remarks

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

Definition

(experimental) definition property.

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

string[]

Remarks

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

ExecutionArn

(experimental) executionArn property.

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

string[]

Remarks

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

Input

(experimental) input property.

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

string[]

Remarks

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

Name

(experimental) name property.

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

string[]

Remarks

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

RoleArn

(experimental) roleArn property.

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

string[]

Remarks

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

StateMachineArn

(experimental) stateMachineArn property.

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

string[]

Remarks

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

Tags

(experimental) tags property.

public object[]? Tags { get; set; }
Property Value

object[]

Remarks

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