Show / Hide Table of Contents

Class ECSTaskStateChange.AttachmentDetails

(experimental) Type definition for AttachmentDetails.

Inheritance
object
ECSTaskStateChange.AttachmentDetails
Implements
ECSTaskStateChange.IAttachmentDetails
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.ECS.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class ECSTaskStateChange.AttachmentDetails : ECSTaskStateChange.IAttachmentDetails
Syntax (vb)
Public Class ECSTaskStateChange.AttachmentDetails Implements ECSTaskStateChange.IAttachmentDetails
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.ECS.Events;

             var attachmentDetails = new AttachmentDetails {
                 Details = new Details {
                     Name = new [] { "name" },
                     Value = new [] { "value" }
                 },
                 Id = new [] { "id" },
                 Status = new [] { "status" },
                 Type = new [] { "type" }
             };

Synopsis

Constructors

AttachmentDetails()

(experimental) Type definition for AttachmentDetails.

Properties

Details

(experimental) details property.

Id

(experimental) id property.

Status

(experimental) status property.

Type

(experimental) type property.

Constructors

AttachmentDetails()

(experimental) Type definition for AttachmentDetails.

public AttachmentDetails()
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.ECS.Events;

             var attachmentDetails = new AttachmentDetails {
                 Details = new Details {
                     Name = new [] { "name" },
                     Value = new [] { "value" }
                 },
                 Id = new [] { "id" },
                 Status = new [] { "status" },
                 Type = new [] { "type" }
             };

Properties

Details

(experimental) details property.

public ECSTaskStateChange.IDetails? Details { get; set; }
Property Value

ECSTaskStateChange.IDetails

Remarks

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

Id

(experimental) id property.

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

string[]

Remarks

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

Status

(experimental) status property.

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

string[]

Remarks

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

ECSTaskStateChange.IAttachmentDetails
Back to top Generated by DocFX