Show / Hide Table of Contents

Class CodePipelineActionExecutionStateChange.InputArtifacts

(experimental) Type definition for InputArtifacts.

Inheritance
object
CodePipelineActionExecutionStateChange.InputArtifacts
Implements
CodePipelineActionExecutionStateChange.IInputArtifacts
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.CodePipeline.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CodePipelineActionExecutionStateChange.InputArtifacts : CodePipelineActionExecutionStateChange.IInputArtifacts
Syntax (vb)
Public Class CodePipelineActionExecutionStateChange.InputArtifacts Implements CodePipelineActionExecutionStateChange.IInputArtifacts
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.CodePipeline.Events;

             var inputArtifacts = new InputArtifacts {
                 Name = new [] { "name" },
                 S3Location = new S3Location {
                     Bucket = new [] { "bucket" },
                     Key = new [] { "key" }
                 }
             };

Synopsis

Constructors

InputArtifacts()

(experimental) Type definition for InputArtifacts.

Properties

Name

(experimental) name property.

S3Location

(experimental) s3location property.

Constructors

InputArtifacts()

(experimental) Type definition for InputArtifacts.

public InputArtifacts()
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.CodePipeline.Events;

             var inputArtifacts = new InputArtifacts {
                 Name = new [] { "name" },
                 S3Location = new S3Location {
                     Bucket = new [] { "bucket" },
                     Key = new [] { "key" }
                 }
             };

Properties

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

S3Location

(experimental) s3location property.

public CodePipelineActionExecutionStateChange.IS3Location? S3Location { get; set; }
Property Value

CodePipelineActionExecutionStateChange.IS3Location

Remarks

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

CodePipelineActionExecutionStateChange.IInputArtifacts
Back to top Generated by DocFX