NodeGroupResourceSet stores the resource information of the nodegroup
| 52 | |
| 53 | // NodeGroupResourceSet stores the resource information of the nodegroup |
| 54 | type NodeGroupResourceSet struct { |
| 55 | rs *resourceSet |
| 56 | iamAPI awsapi.IAM |
| 57 | ec2API awsapi.EC2 |
| 58 | options NodeGroupOptions |
| 59 | |
| 60 | instanceProfileARN *gfnt.Value |
| 61 | securityGroups []*gfnt.Value |
| 62 | vpc *gfnt.Value |
| 63 | } |
| 64 | |
| 65 | // NewNodeGroupResourceSet returns a resource set for a nodegroup embedded in a cluster config. |
| 66 | func NewNodeGroupResourceSet(ec2API awsapi.EC2, iamAPI awsapi.IAM, options NodeGroupOptions) *NodeGroupResourceSet { |
nothing calls this directly
no outgoing calls
no test coverage detected