-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathdatapipeline.py
More file actions
96 lines (72 loc) · 2.63 KB
/
datapipeline.py
File metadata and controls
96 lines (72 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright (c) 2012-2025, Mark Peek <[email protected]>
# All rights reserved.
#
# See LICENSE file for full license.
#
# *** Do not modify - this file is autogenerated ***
from . import AWSObject, AWSProperty, PropsDictType
from .validators import boolean
class ParameterObjectAttribute(AWSProperty):
"""
`ParameterObjectAttribute <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterattribute.html>`__
"""
props: PropsDictType = {
"Key": (str, True),
"StringValue": (str, True),
}
class ParameterObject(AWSProperty):
"""
`ParameterObject <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterobject.html>`__
"""
props: PropsDictType = {
"Attributes": ([ParameterObjectAttribute], True),
"Id": (str, True),
}
class ParameterValue(AWSProperty):
"""
`ParameterValue <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parametervalue.html>`__
"""
props: PropsDictType = {
"Id": (str, True),
"StringValue": (str, True),
}
class ObjectField(AWSProperty):
"""
`ObjectField <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-field.html>`__
"""
props: PropsDictType = {
"Key": (str, True),
"RefValue": (str, False),
"StringValue": (str, False),
}
class PipelineObject(AWSProperty):
"""
`PipelineObject <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobject.html>`__
"""
props: PropsDictType = {
"Fields": ([ObjectField], True),
"Id": (str, True),
"Name": (str, True),
}
class PipelineTag(AWSProperty):
"""
`PipelineTag <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetag.html>`__
"""
props: PropsDictType = {
"Key": (str, True),
"Value": (str, True),
}
class Pipeline(AWSObject):
"""
`Pipeline <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html>`__
"""
resource_type = "AWS::DataPipeline::Pipeline"
props: PropsDictType = {
"Activate": (boolean, False),
"Description": (str, False),
"Name": (str, True),
"ParameterObjects": ([ParameterObject], False),
"ParameterValues": ([ParameterValue], False),
"PipelineObjects": ([PipelineObject], False),
"PipelineTags": ([PipelineTag], False),
}