MustUpdateStack is like UpdateStack but returns a NoChangeError if there are no changes to execute.
(ctx context.Context, options UpdateStackOptions)
| 384 | |
| 385 | // MustUpdateStack is like UpdateStack but returns a NoChangeError if there are no changes to execute. |
| 386 | func (c *StackCollection) MustUpdateStack(ctx context.Context, options UpdateStackOptions) error { |
| 387 | return c.updateStack(ctx, options, false) |
| 388 | } |
| 389 | |
| 390 | // DescribeStack describes a cloudformation stack. |
| 391 | func (c *StackCollection) DescribeStack(ctx context.Context, i *Stack) (*Stack, error) { |
nothing calls this directly
no test coverage detected