StackCollection stores the CloudFormation stack information
| 70 | |
| 71 | // StackCollection stores the CloudFormation stack information |
| 72 | type StackCollection struct { |
| 73 | cloudformationAPI awsapi.CloudFormation |
| 74 | ec2API awsapi.EC2 |
| 75 | eksAPI awsapi.EKS |
| 76 | iamAPI awsapi.IAM |
| 77 | cloudTrailAPI awsapi.CloudTrail |
| 78 | asgAPI awsapi.ASG |
| 79 | |
| 80 | spec *api.ClusterConfig |
| 81 | disableRollback bool |
| 82 | roleARN string |
| 83 | region string |
| 84 | waitTimeout time.Duration |
| 85 | sharedTags []types.Tag |
| 86 | stsAPI awsapi.STS |
| 87 | } |
| 88 | |
| 89 | func newTag(key, value string) types.Tag { |
| 90 | return types.Tag{Key: &key, Value: &value} |
nothing calls this directly
no outgoing calls
no test coverage detected