CloudFormationAPI defines the interface for CloudFormation operations
| 22 | |
| 23 | // CloudFormationAPI defines the interface for CloudFormation operations |
| 24 | type CloudFormationAPI interface { |
| 25 | CreateStackWithContext(ctx context.Context, input *cloudformation.CreateStackInput, opts ...request.Option) (*cloudformation.CreateStackOutput, error) |
| 26 | UpdateStackWithContext(ctx context.Context, input *cloudformation.UpdateStackInput, opts ...request.Option) (*cloudformation.UpdateStackOutput, error) |
| 27 | DeleteStackWithContext(ctx context.Context, input *cloudformation.DeleteStackInput, opts ...request.Option) (*cloudformation.DeleteStackOutput, error) |
| 28 | DescribeStacksWithContext(ctx context.Context, input *cloudformation.DescribeStacksInput, opts ...request.Option) (*cloudformation.DescribeStacksOutput, error) |
| 29 | } |
| 30 | |
| 31 | // CloudWatchLogsAPI defines the interface for CloudWatch Logs operations |
| 32 | type CloudWatchLogsAPI interface { |
no outgoing calls
no test coverage detected