DescribeNodeGroupStack gets the specified nodegroup stack
(ctx context.Context, nodeGroupName string)
| 397 | |
| 398 | // DescribeNodeGroupStack gets the specified nodegroup stack |
| 399 | func (c *StackCollection) DescribeNodeGroupStack(ctx context.Context, nodeGroupName string) (*Stack, error) { |
| 400 | stackName := c.makeNodeGroupStackName(nodeGroupName) |
| 401 | return c.DescribeStack(ctx, &Stack{StackName: &stackName}) |
| 402 | } |
| 403 | |
| 404 | // GetNodeGroupStackType returns the nodegroup stack type |
| 405 | func (c *StackCollection) GetNodeGroupStackType(ctx context.Context, options GetNodegroupOption) (api.NodeGroupType, error) { |
no test coverage detected