Documentation
¶
Index ¶
- func CfnPipeline_CFN_RESOURCE_TYPE_NAME() *string
- func CfnPipeline_IsCfnElement(x interface{}) *bool
- func CfnPipeline_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnPipeline_IsConstruct(x interface{}) *bool
- func NewCfnPipeline_Override(c CfnPipeline, scope constructs.Construct, id *string, props *CfnPipelineProps)
- type CfnPipeline
- type CfnPipelineProps
- type CfnPipeline_FieldProperty
- type CfnPipeline_ParameterAttributeProperty
- type CfnPipeline_ParameterObjectProperty
- type CfnPipeline_ParameterValueProperty
- type CfnPipeline_PipelineObjectProperty
- type CfnPipeline_PipelineTagProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnPipeline_CFN_RESOURCE_TYPE_NAME ¶
func CfnPipeline_CFN_RESOURCE_TYPE_NAME() *string
func CfnPipeline_IsCfnElement ¶
func CfnPipeline_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.
func CfnPipeline_IsCfnResource ¶
func CfnPipeline_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnPipeline_IsConstruct ¶
func CfnPipeline_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnPipeline_Override ¶
func NewCfnPipeline_Override(c CfnPipeline, scope constructs.Construct, id *string, props *CfnPipelineProps)
Create a new `AWS::DataPipeline::Pipeline`.
Types ¶
type CfnPipeline ¶
type CfnPipeline interface {
awscdk.CfnResource
awscdk.IInspectable
Activate() interface{}
SetActivate(val interface{})
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CreationStack() *[]*string
Description() *string
SetDescription(val *string)
LogicalId() *string
Name() *string
SetName(val *string)
Node() constructs.Node
ParameterObjects() interface{}
SetParameterObjects(val interface{})
ParameterValues() interface{}
SetParameterValues(val interface{})
PipelineObjects() interface{}
SetPipelineObjects(val interface{})
PipelineTags() interface{}
SetPipelineTags(val interface{})
Ref() *string
Stack() awscdk.Stack
UpdatedProperites() *map[string]interface{}
AddDeletionOverride(path *string)
AddDependsOn(target awscdk.CfnResource)
AddMetadata(key *string, value interface{})
AddOverride(path *string, value interface{})
AddPropertyDeletionOverride(propertyPath *string)
AddPropertyOverride(propertyPath *string, value interface{})
ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
GetAtt(attributeName *string) awscdk.Reference
GetMetadata(key *string) interface{}
Inspect(inspector awscdk.TreeInspector)
OverrideLogicalId(newLogicalId *string)
RenderProperties(props *map[string]interface{}) *map[string]interface{}
ShouldSynthesize() *bool
ToString() *string
ValidateProperties(_properties interface{})
}
A CloudFormation `AWS::DataPipeline::Pipeline`.
func NewCfnPipeline ¶
func NewCfnPipeline(scope constructs.Construct, id *string, props *CfnPipelineProps) CfnPipeline
Create a new `AWS::DataPipeline::Pipeline`.
type CfnPipelineProps ¶
type CfnPipelineProps struct {
// `AWS::DataPipeline::Pipeline.Name`.
Name *string `json:"name"`
// `AWS::DataPipeline::Pipeline.ParameterObjects`.
ParameterObjects interface{} `json:"parameterObjects"`
// `AWS::DataPipeline::Pipeline.Activate`.
Activate interface{} `json:"activate"`
// `AWS::DataPipeline::Pipeline.Description`.
Description *string `json:"description"`
// `AWS::DataPipeline::Pipeline.ParameterValues`.
ParameterValues interface{} `json:"parameterValues"`
// `AWS::DataPipeline::Pipeline.PipelineObjects`.
PipelineObjects interface{} `json:"pipelineObjects"`
// `AWS::DataPipeline::Pipeline.PipelineTags`.
PipelineTags interface{} `json:"pipelineTags"`
}
Properties for defining a `AWS::DataPipeline::Pipeline`.
type CfnPipeline_ParameterObjectProperty ¶
type CfnPipeline_ParameterObjectProperty struct {
// `CfnPipeline.ParameterObjectProperty.Attributes`.
Attributes interface{} `json:"attributes"`
// `CfnPipeline.ParameterObjectProperty.Id`.
Id *string `json:"id"`
}