Interface CfnPipeline.IPipelineObjectProperty
PipelineObject is property of the AWS::DataPipeline::Pipeline resource that contains information about a pipeline object.
Namespace: Amazon.CDK.AWS.DataPipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPipelineObjectProperty
Syntax (vb)
Public Interface IPipelineObjectProperty
Remarks
This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.
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.AWS.DataPipeline;
var pipelineObjectProperty = new PipelineObjectProperty {
Fields = new [] { new FieldProperty {
Key = "key",
// the properties below are optional
RefValue = "refValue",
StringValue = "stringValue"
} },
Id = "id",
Name = "name"
};
Synopsis
Properties
Fields | Key-value pairs that define the properties of the object. |
Id | The ID of the object. |
Name | The name of the object. |
Properties
Fields
Key-value pairs that define the properties of the object.
object Fields { get; }
Property Value
System.Object
Remarks
Id
The ID of the object.
string Id { get; }
Property Value
System.String
Remarks
Name
The name of the object.
string Name { get; }
Property Value
System.String