This repository was archived by the owner on Jan 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathElasticLoadBalancingV2-TargetGroup.go
110 lines (95 loc) · 3.95 KB
/
ElasticLoadBalancingV2-TargetGroup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package resources
// Code generated by go generate; DO NOT EDIT.
// It's generated by "github.com/KablamoOSS/kombustion/generate"
import (
"github.com/KablamoOSS/kombustion/types"
yaml "github.com/KablamoOSS/yaml"
)
// ElasticLoadBalancingV2TargetGroup Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html
type ElasticLoadBalancingV2TargetGroup struct {
Type string `yaml:"Type"`
Properties ElasticLoadBalancingV2TargetGroupProperties `yaml:"Properties"`
Condition interface{} `yaml:"Condition,omitempty"`
Metadata interface{} `yaml:"Metadata,omitempty"`
DependsOn interface{} `yaml:"DependsOn,omitempty"`
}
// ElasticLoadBalancingV2TargetGroup Properties
type ElasticLoadBalancingV2TargetGroupProperties struct {
HealthCheckIntervalSeconds interface{} `yaml:"HealthCheckIntervalSeconds,omitempty"`
HealthCheckPath interface{} `yaml:"HealthCheckPath,omitempty"`
HealthCheckPort interface{} `yaml:"HealthCheckPort,omitempty"`
HealthCheckProtocol interface{} `yaml:"HealthCheckProtocol,omitempty"`
HealthCheckTimeoutSeconds interface{} `yaml:"HealthCheckTimeoutSeconds,omitempty"`
HealthyThresholdCount interface{} `yaml:"HealthyThresholdCount,omitempty"`
Name interface{} `yaml:"Name,omitempty"`
Port interface{} `yaml:"Port,omitempty"`
Protocol interface{} `yaml:"Protocol,omitempty"`
TargetType interface{} `yaml:"TargetType,omitempty"`
UnhealthyThresholdCount interface{} `yaml:"UnhealthyThresholdCount,omitempty"`
VpcId interface{} `yaml:"VpcId,omitempty"`
Matcher interface{} `yaml:"Matcher,omitempty"`
Tags interface{} `yaml:"Tags,omitempty"`
TargetGroupAttributes interface{} `yaml:"TargetGroupAttributes,omitempty"`
Targets interface{} `yaml:"Targets,omitempty"`
}
// NewElasticLoadBalancingV2TargetGroup constructor creates a new ElasticLoadBalancingV2TargetGroup
func NewElasticLoadBalancingV2TargetGroup(properties ElasticLoadBalancingV2TargetGroupProperties, deps ...interface{}) ElasticLoadBalancingV2TargetGroup {
return ElasticLoadBalancingV2TargetGroup{
Type: "AWS::ElasticLoadBalancingV2::TargetGroup",
Properties: properties,
DependsOn: deps,
}
}
// ParseElasticLoadBalancingV2TargetGroup parses ElasticLoadBalancingV2TargetGroup
func ParseElasticLoadBalancingV2TargetGroup(
name string,
data string,
) (
source string,
conditions types.TemplateObject,
metadata types.TemplateObject,
mappings types.TemplateObject,
outputs types.TemplateObject,
parameters types.TemplateObject,
resources types.TemplateObject,
transform types.TemplateObject,
errors []error,
) {
source = "kombustion-core-resources"
// Resources
var resource ElasticLoadBalancingV2TargetGroup
err := yaml.Unmarshal([]byte(data), &resource)
if err != nil {
errors = append(errors, err)
return
}
if validateErrs := resource.Properties.Validate(); len(errors) > 0 {
errors = append(errors, validateErrs...)
return
}
resources = types.TemplateObject{name: resource}
// Outputs
outputs = types.TemplateObject{
name: types.TemplateObject{
"Description": name + " Object",
"Value": map[string]interface{}{
"Ref": name,
},
"Export": map[string]interface{}{
"Name": map[string]interface{}{
"Fn::Sub": "${AWS::StackName}-ElasticLoadBalancingV2TargetGroup-" + name,
},
},
},
}
return
}
// ParseElasticLoadBalancingV2TargetGroup validator
func (resource ElasticLoadBalancingV2TargetGroup) Validate() []error {
return resource.Properties.Validate()
}
// ParseElasticLoadBalancingV2TargetGroupProperties validator
func (resource ElasticLoadBalancingV2TargetGroupProperties) Validate() []error {
errors := []error{}
return errors
}