MCPcopy Create free account
hub / github.com/eksctl-io/eksctl / StackCollection

Struct StackCollection

pkg/cfn/manager/api.go:72–87  ·  view source on GitHub ↗

StackCollection stores the CloudFormation stack information

Source from the content-addressed store, hash-verified

70
71// StackCollection stores the CloudFormation stack information
72type 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
89func newTag(key, value string) types.Tag {
90 return types.Tag{Key: &key, Value: &value}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected