-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathWaiterStateMachine.go
More file actions
216 lines (187 loc) · 5.92 KB
/
WaiterStateMachine.go
File metadata and controls
216 lines (187 loc) · 5.92 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package customresources
import (
_init_ "github.com/aws/aws-cdk-go/awscdk/v2/jsii"
_jsii_ "github.com/aws/jsii-runtime-go/runtime"
"github.com/aws/aws-cdk-go/awscdk/v2/awsiam"
"github.com/aws/aws-cdk-go/awscdk/v2/customresources/internal"
"github.com/aws/constructs-go/constructs/v10"
)
// A very simple StateMachine construct highly customized to the provider framework.
//
// We previously used `CfnResource` instead of `CfnStateMachine` to avoid depending
// on `aws-stepfunctions` module, but now it is okay.
//
// The state machine continuously calls the isCompleteHandler, until it succeeds or times out.
// The handler is called `maxAttempts` times with an `interval` duration and a `backoffRate` rate.
//
// Example:
// // The code below shows an example of how to instantiate this type.
// // The values are placeholders you should change.
// import cdk "github.com/aws/aws-cdk-go/awscdk"
// import "github.com/aws/aws-cdk-go/awscdk"
// import "github.com/aws/aws-cdk-go/awscdk"
// import "github.com/aws/aws-cdk-go/awscdk"
// import "github.com/aws/aws-cdk-go/awscdk"
//
// var function_ Function
// var logGroupRef ILogGroupRef
//
// waiterStateMachine := awscdk.Custom_resources.NewWaiterStateMachine(this, jsii.String("MyWaiterStateMachine"), &WaiterStateMachineProps{
// BackoffRate: jsii.Number(123),
// Interval: cdk.Duration_Minutes(jsii.Number(30)),
// IsCompleteHandler: function_,
// MaxAttempts: jsii.Number(123),
// TimeoutHandler: function_,
//
// // the properties below are optional
// DisableLogging: jsii.Boolean(false),
// LogOptions: &LogOptions{
// Destination: logGroupRef,
// IncludeExecutionData: jsii.Boolean(false),
// Level: awscdk.Aws_stepfunctions.LogLevel_OFF,
// },
// })
//
type WaiterStateMachine interface {
constructs.Construct
// The tree node.
Node() constructs.Node
// The ARN of the state machine.
StateMachineArn() *string
// Grant the given identity permissions on StartExecution of the state machine.
//
// [disable-awslint:no-grants].
GrantStartExecution(identity awsiam.IGrantable) awsiam.Grant
// Returns a string representation of this construct.
ToString() *string
// Applies one or more mixins to this construct.
//
// Mixins are applied in order. The list of constructs is captured at the
// start of the call, so constructs added by a mixin will not be visited.
// Use multiple `with()` calls if subsequent mixins should apply to added
// constructs.
//
// Returns: This construct for chaining.
With(mixins ...constructs.IMixin) constructs.IConstruct
}
// The jsii proxy struct for WaiterStateMachine
type jsiiProxy_WaiterStateMachine struct {
internal.Type__constructsConstruct
}
func (j *jsiiProxy_WaiterStateMachine) Node() constructs.Node {
var returns constructs.Node
_jsii_.Get(
j,
"node",
&returns,
)
return returns
}
func (j *jsiiProxy_WaiterStateMachine) StateMachineArn() *string {
var returns *string
_jsii_.Get(
j,
"stateMachineArn",
&returns,
)
return returns
}
func NewWaiterStateMachine(scope constructs.Construct, id *string, props *WaiterStateMachineProps) WaiterStateMachine {
_init_.Initialize()
if err := validateNewWaiterStateMachineParameters(scope, id, props); err != nil {
panic(err)
}
j := jsiiProxy_WaiterStateMachine{}
_jsii_.Create(
"aws-cdk-lib.custom_resources.WaiterStateMachine",
[]interface{}{scope, id, props},
&j,
)
return &j
}
func NewWaiterStateMachine_Override(w WaiterStateMachine, scope constructs.Construct, id *string, props *WaiterStateMachineProps) {
_init_.Initialize()
_jsii_.Create(
"aws-cdk-lib.custom_resources.WaiterStateMachine",
[]interface{}{scope, id, props},
w,
)
}
// Checks if `x` is a construct.
//
// Use this method instead of `instanceof` to properly detect `Construct`
// instances, even when the construct library is symlinked.
//
// Explanation: in JavaScript, multiple copies of the `constructs` library on
// disk are seen as independent, completely different libraries. As a
// consequence, the class `Construct` in each copy of the `constructs` library
// is seen as a different class, and an instance of one class will not test as
// `instanceof` the other class. `npm install` will not create installations
// like this, but users may manually symlink construct libraries together or
// use a monorepo tool: in those cases, multiple copies of the `constructs`
// library can be accidentally installed, and `instanceof` will behave
// unpredictably. It is safest to avoid using `instanceof`, and using
// this type-testing method instead.
//
// Returns: true if `x` is an object created from a class which extends `Construct`.
func WaiterStateMachine_IsConstruct(x interface{}) *bool {
_init_.Initialize()
if err := validateWaiterStateMachine_IsConstructParameters(x); err != nil {
panic(err)
}
var returns *bool
_jsii_.StaticInvoke(
"aws-cdk-lib.custom_resources.WaiterStateMachine",
"isConstruct",
[]interface{}{x},
&returns,
)
return returns
}
func WaiterStateMachine_PROPERTY_INJECTION_ID() *string {
_init_.Initialize()
var returns *string
_jsii_.StaticGet(
"aws-cdk-lib.custom_resources.WaiterStateMachine",
"PROPERTY_INJECTION_ID",
&returns,
)
return returns
}
func (w *jsiiProxy_WaiterStateMachine) GrantStartExecution(identity awsiam.IGrantable) awsiam.Grant {
if err := w.validateGrantStartExecutionParameters(identity); err != nil {
panic(err)
}
var returns awsiam.Grant
_jsii_.Invoke(
w,
"grantStartExecution",
[]interface{}{identity},
&returns,
)
return returns
}
func (w *jsiiProxy_WaiterStateMachine) ToString() *string {
var returns *string
_jsii_.Invoke(
w,
"toString",
nil, // no parameters
&returns,
)
return returns
}
func (w *jsiiProxy_WaiterStateMachine) With(mixins ...constructs.IMixin) constructs.IConstruct {
args := []interface{}{}
for _, a := range mixins {
args = append(args, a)
}
var returns constructs.IConstruct
_jsii_.Invoke(
w,
"with",
args,
&returns,
)
return returns
}