-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqs.init.go
231 lines (228 loc) · 16.1 KB
/
sqs.init.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package sqs
import (
"reflect"
_jsii_ "github.com/aws/jsii-runtime-go/runtime"
)
func init() {
_jsii_.RegisterClass(
"@cdktf/provider-aws.sqs.DataAwsSqsQueue",
reflect.TypeOf((*DataAwsSqsQueue)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberProperty{JsiiProperty: "arn", GoGetter: "Arn"},
_jsii_.MemberProperty{JsiiProperty: "cdktfStack", GoGetter: "CdktfStack"},
_jsii_.MemberProperty{JsiiProperty: "constructNodeMetadata", GoGetter: "ConstructNodeMetadata"},
_jsii_.MemberProperty{JsiiProperty: "count", GoGetter: "Count"},
_jsii_.MemberProperty{JsiiProperty: "dependsOn", GoGetter: "DependsOn"},
_jsii_.MemberProperty{JsiiProperty: "forEach", GoGetter: "ForEach"},
_jsii_.MemberProperty{JsiiProperty: "fqn", GoGetter: "Fqn"},
_jsii_.MemberProperty{JsiiProperty: "friendlyUniqueId", GoGetter: "FriendlyUniqueId"},
_jsii_.MemberMethod{JsiiMethod: "getAnyMapAttribute", GoMethod: "GetAnyMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getBooleanAttribute", GoMethod: "GetBooleanAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getBooleanMapAttribute", GoMethod: "GetBooleanMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getListAttribute", GoMethod: "GetListAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberAttribute", GoMethod: "GetNumberAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberListAttribute", GoMethod: "GetNumberListAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberMapAttribute", GoMethod: "GetNumberMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getStringAttribute", GoMethod: "GetStringAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getStringMapAttribute", GoMethod: "GetStringMapAttribute"},
_jsii_.MemberProperty{JsiiProperty: "id", GoGetter: "Id"},
_jsii_.MemberProperty{JsiiProperty: "idInput", GoGetter: "IdInput"},
_jsii_.MemberMethod{JsiiMethod: "interpolationForAttribute", GoMethod: "InterpolationForAttribute"},
_jsii_.MemberProperty{JsiiProperty: "lifecycle", GoGetter: "Lifecycle"},
_jsii_.MemberProperty{JsiiProperty: "name", GoGetter: "Name"},
_jsii_.MemberProperty{JsiiProperty: "nameInput", GoGetter: "NameInput"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "provider", GoGetter: "Provider"},
_jsii_.MemberProperty{JsiiProperty: "rawOverrides", GoGetter: "RawOverrides"},
_jsii_.MemberMethod{JsiiMethod: "resetId", GoMethod: "ResetId"},
_jsii_.MemberMethod{JsiiMethod: "resetOverrideLogicalId", GoMethod: "ResetOverrideLogicalId"},
_jsii_.MemberMethod{JsiiMethod: "resetTags", GoMethod: "ResetTags"},
_jsii_.MemberMethod{JsiiMethod: "synthesizeAttributes", GoMethod: "SynthesizeAttributes"},
_jsii_.MemberProperty{JsiiProperty: "tags", GoGetter: "Tags"},
_jsii_.MemberProperty{JsiiProperty: "tagsInput", GoGetter: "TagsInput"},
_jsii_.MemberProperty{JsiiProperty: "terraformGeneratorMetadata", GoGetter: "TerraformGeneratorMetadata"},
_jsii_.MemberProperty{JsiiProperty: "terraformMetaArguments", GoGetter: "TerraformMetaArguments"},
_jsii_.MemberProperty{JsiiProperty: "terraformResourceType", GoGetter: "TerraformResourceType"},
_jsii_.MemberMethod{JsiiMethod: "toMetadata", GoMethod: "ToMetadata"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberMethod{JsiiMethod: "toTerraform", GoMethod: "ToTerraform"},
_jsii_.MemberProperty{JsiiProperty: "url", GoGetter: "Url"},
},
func() interface{} {
j := jsiiProxy_DataAwsSqsQueue{}
_jsii_.InitJsiiProxy(&j.Type__cdktfTerraformDataSource)
return &j
},
)
_jsii_.RegisterStruct(
"@cdktf/provider-aws.sqs.DataAwsSqsQueueConfig",
reflect.TypeOf((*DataAwsSqsQueueConfig)(nil)).Elem(),
)
_jsii_.RegisterClass(
"@cdktf/provider-aws.sqs.SqsQueue",
reflect.TypeOf((*SqsQueue)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberProperty{JsiiProperty: "arn", GoGetter: "Arn"},
_jsii_.MemberProperty{JsiiProperty: "cdktfStack", GoGetter: "CdktfStack"},
_jsii_.MemberProperty{JsiiProperty: "connection", GoGetter: "Connection"},
_jsii_.MemberProperty{JsiiProperty: "constructNodeMetadata", GoGetter: "ConstructNodeMetadata"},
_jsii_.MemberProperty{JsiiProperty: "contentBasedDeduplication", GoGetter: "ContentBasedDeduplication"},
_jsii_.MemberProperty{JsiiProperty: "contentBasedDeduplicationInput", GoGetter: "ContentBasedDeduplicationInput"},
_jsii_.MemberProperty{JsiiProperty: "count", GoGetter: "Count"},
_jsii_.MemberProperty{JsiiProperty: "deduplicationScope", GoGetter: "DeduplicationScope"},
_jsii_.MemberProperty{JsiiProperty: "deduplicationScopeInput", GoGetter: "DeduplicationScopeInput"},
_jsii_.MemberProperty{JsiiProperty: "delaySeconds", GoGetter: "DelaySeconds"},
_jsii_.MemberProperty{JsiiProperty: "delaySecondsInput", GoGetter: "DelaySecondsInput"},
_jsii_.MemberProperty{JsiiProperty: "dependsOn", GoGetter: "DependsOn"},
_jsii_.MemberProperty{JsiiProperty: "fifoQueue", GoGetter: "FifoQueue"},
_jsii_.MemberProperty{JsiiProperty: "fifoQueueInput", GoGetter: "FifoQueueInput"},
_jsii_.MemberProperty{JsiiProperty: "fifoThroughputLimit", GoGetter: "FifoThroughputLimit"},
_jsii_.MemberProperty{JsiiProperty: "fifoThroughputLimitInput", GoGetter: "FifoThroughputLimitInput"},
_jsii_.MemberProperty{JsiiProperty: "forEach", GoGetter: "ForEach"},
_jsii_.MemberProperty{JsiiProperty: "fqn", GoGetter: "Fqn"},
_jsii_.MemberProperty{JsiiProperty: "friendlyUniqueId", GoGetter: "FriendlyUniqueId"},
_jsii_.MemberMethod{JsiiMethod: "getAnyMapAttribute", GoMethod: "GetAnyMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getBooleanAttribute", GoMethod: "GetBooleanAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getBooleanMapAttribute", GoMethod: "GetBooleanMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getListAttribute", GoMethod: "GetListAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberAttribute", GoMethod: "GetNumberAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberListAttribute", GoMethod: "GetNumberListAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberMapAttribute", GoMethod: "GetNumberMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getStringAttribute", GoMethod: "GetStringAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getStringMapAttribute", GoMethod: "GetStringMapAttribute"},
_jsii_.MemberProperty{JsiiProperty: "id", GoGetter: "Id"},
_jsii_.MemberProperty{JsiiProperty: "idInput", GoGetter: "IdInput"},
_jsii_.MemberMethod{JsiiMethod: "interpolationForAttribute", GoMethod: "InterpolationForAttribute"},
_jsii_.MemberProperty{JsiiProperty: "kmsDataKeyReusePeriodSeconds", GoGetter: "KmsDataKeyReusePeriodSeconds"},
_jsii_.MemberProperty{JsiiProperty: "kmsDataKeyReusePeriodSecondsInput", GoGetter: "KmsDataKeyReusePeriodSecondsInput"},
_jsii_.MemberProperty{JsiiProperty: "kmsMasterKeyId", GoGetter: "KmsMasterKeyId"},
_jsii_.MemberProperty{JsiiProperty: "kmsMasterKeyIdInput", GoGetter: "KmsMasterKeyIdInput"},
_jsii_.MemberProperty{JsiiProperty: "lifecycle", GoGetter: "Lifecycle"},
_jsii_.MemberProperty{JsiiProperty: "maxMessageSize", GoGetter: "MaxMessageSize"},
_jsii_.MemberProperty{JsiiProperty: "maxMessageSizeInput", GoGetter: "MaxMessageSizeInput"},
_jsii_.MemberProperty{JsiiProperty: "messageRetentionSeconds", GoGetter: "MessageRetentionSeconds"},
_jsii_.MemberProperty{JsiiProperty: "messageRetentionSecondsInput", GoGetter: "MessageRetentionSecondsInput"},
_jsii_.MemberProperty{JsiiProperty: "name", GoGetter: "Name"},
_jsii_.MemberProperty{JsiiProperty: "nameInput", GoGetter: "NameInput"},
_jsii_.MemberProperty{JsiiProperty: "namePrefix", GoGetter: "NamePrefix"},
_jsii_.MemberProperty{JsiiProperty: "namePrefixInput", GoGetter: "NamePrefixInput"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "policy", GoGetter: "Policy"},
_jsii_.MemberProperty{JsiiProperty: "policyInput", GoGetter: "PolicyInput"},
_jsii_.MemberProperty{JsiiProperty: "provider", GoGetter: "Provider"},
_jsii_.MemberProperty{JsiiProperty: "provisioners", GoGetter: "Provisioners"},
_jsii_.MemberProperty{JsiiProperty: "rawOverrides", GoGetter: "RawOverrides"},
_jsii_.MemberProperty{JsiiProperty: "receiveWaitTimeSeconds", GoGetter: "ReceiveWaitTimeSeconds"},
_jsii_.MemberProperty{JsiiProperty: "receiveWaitTimeSecondsInput", GoGetter: "ReceiveWaitTimeSecondsInput"},
_jsii_.MemberProperty{JsiiProperty: "redriveAllowPolicy", GoGetter: "RedriveAllowPolicy"},
_jsii_.MemberProperty{JsiiProperty: "redriveAllowPolicyInput", GoGetter: "RedriveAllowPolicyInput"},
_jsii_.MemberProperty{JsiiProperty: "redrivePolicy", GoGetter: "RedrivePolicy"},
_jsii_.MemberProperty{JsiiProperty: "redrivePolicyInput", GoGetter: "RedrivePolicyInput"},
_jsii_.MemberMethod{JsiiMethod: "resetContentBasedDeduplication", GoMethod: "ResetContentBasedDeduplication"},
_jsii_.MemberMethod{JsiiMethod: "resetDeduplicationScope", GoMethod: "ResetDeduplicationScope"},
_jsii_.MemberMethod{JsiiMethod: "resetDelaySeconds", GoMethod: "ResetDelaySeconds"},
_jsii_.MemberMethod{JsiiMethod: "resetFifoQueue", GoMethod: "ResetFifoQueue"},
_jsii_.MemberMethod{JsiiMethod: "resetFifoThroughputLimit", GoMethod: "ResetFifoThroughputLimit"},
_jsii_.MemberMethod{JsiiMethod: "resetId", GoMethod: "ResetId"},
_jsii_.MemberMethod{JsiiMethod: "resetKmsDataKeyReusePeriodSeconds", GoMethod: "ResetKmsDataKeyReusePeriodSeconds"},
_jsii_.MemberMethod{JsiiMethod: "resetKmsMasterKeyId", GoMethod: "ResetKmsMasterKeyId"},
_jsii_.MemberMethod{JsiiMethod: "resetMaxMessageSize", GoMethod: "ResetMaxMessageSize"},
_jsii_.MemberMethod{JsiiMethod: "resetMessageRetentionSeconds", GoMethod: "ResetMessageRetentionSeconds"},
_jsii_.MemberMethod{JsiiMethod: "resetName", GoMethod: "ResetName"},
_jsii_.MemberMethod{JsiiMethod: "resetNamePrefix", GoMethod: "ResetNamePrefix"},
_jsii_.MemberMethod{JsiiMethod: "resetOverrideLogicalId", GoMethod: "ResetOverrideLogicalId"},
_jsii_.MemberMethod{JsiiMethod: "resetPolicy", GoMethod: "ResetPolicy"},
_jsii_.MemberMethod{JsiiMethod: "resetReceiveWaitTimeSeconds", GoMethod: "ResetReceiveWaitTimeSeconds"},
_jsii_.MemberMethod{JsiiMethod: "resetRedriveAllowPolicy", GoMethod: "ResetRedriveAllowPolicy"},
_jsii_.MemberMethod{JsiiMethod: "resetRedrivePolicy", GoMethod: "ResetRedrivePolicy"},
_jsii_.MemberMethod{JsiiMethod: "resetSqsManagedSseEnabled", GoMethod: "ResetSqsManagedSseEnabled"},
_jsii_.MemberMethod{JsiiMethod: "resetTags", GoMethod: "ResetTags"},
_jsii_.MemberMethod{JsiiMethod: "resetTagsAll", GoMethod: "ResetTagsAll"},
_jsii_.MemberMethod{JsiiMethod: "resetVisibilityTimeoutSeconds", GoMethod: "ResetVisibilityTimeoutSeconds"},
_jsii_.MemberProperty{JsiiProperty: "sqsManagedSseEnabled", GoGetter: "SqsManagedSseEnabled"},
_jsii_.MemberProperty{JsiiProperty: "sqsManagedSseEnabledInput", GoGetter: "SqsManagedSseEnabledInput"},
_jsii_.MemberMethod{JsiiMethod: "synthesizeAttributes", GoMethod: "SynthesizeAttributes"},
_jsii_.MemberProperty{JsiiProperty: "tags", GoGetter: "Tags"},
_jsii_.MemberProperty{JsiiProperty: "tagsAll", GoGetter: "TagsAll"},
_jsii_.MemberProperty{JsiiProperty: "tagsAllInput", GoGetter: "TagsAllInput"},
_jsii_.MemberProperty{JsiiProperty: "tagsInput", GoGetter: "TagsInput"},
_jsii_.MemberProperty{JsiiProperty: "terraformGeneratorMetadata", GoGetter: "TerraformGeneratorMetadata"},
_jsii_.MemberProperty{JsiiProperty: "terraformMetaArguments", GoGetter: "TerraformMetaArguments"},
_jsii_.MemberProperty{JsiiProperty: "terraformResourceType", GoGetter: "TerraformResourceType"},
_jsii_.MemberMethod{JsiiMethod: "toMetadata", GoMethod: "ToMetadata"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberMethod{JsiiMethod: "toTerraform", GoMethod: "ToTerraform"},
_jsii_.MemberProperty{JsiiProperty: "url", GoGetter: "Url"},
_jsii_.MemberProperty{JsiiProperty: "visibilityTimeoutSeconds", GoGetter: "VisibilityTimeoutSeconds"},
_jsii_.MemberProperty{JsiiProperty: "visibilityTimeoutSecondsInput", GoGetter: "VisibilityTimeoutSecondsInput"},
},
func() interface{} {
j := jsiiProxy_SqsQueue{}
_jsii_.InitJsiiProxy(&j.Type__cdktfTerraformResource)
return &j
},
)
_jsii_.RegisterStruct(
"@cdktf/provider-aws.sqs.SqsQueueConfig",
reflect.TypeOf((*SqsQueueConfig)(nil)).Elem(),
)
_jsii_.RegisterClass(
"@cdktf/provider-aws.sqs.SqsQueuePolicy",
reflect.TypeOf((*SqsQueuePolicy)(nil)).Elem(),
[]_jsii_.Member{
_jsii_.MemberMethod{JsiiMethod: "addOverride", GoMethod: "AddOverride"},
_jsii_.MemberProperty{JsiiProperty: "cdktfStack", GoGetter: "CdktfStack"},
_jsii_.MemberProperty{JsiiProperty: "connection", GoGetter: "Connection"},
_jsii_.MemberProperty{JsiiProperty: "constructNodeMetadata", GoGetter: "ConstructNodeMetadata"},
_jsii_.MemberProperty{JsiiProperty: "count", GoGetter: "Count"},
_jsii_.MemberProperty{JsiiProperty: "dependsOn", GoGetter: "DependsOn"},
_jsii_.MemberProperty{JsiiProperty: "forEach", GoGetter: "ForEach"},
_jsii_.MemberProperty{JsiiProperty: "fqn", GoGetter: "Fqn"},
_jsii_.MemberProperty{JsiiProperty: "friendlyUniqueId", GoGetter: "FriendlyUniqueId"},
_jsii_.MemberMethod{JsiiMethod: "getAnyMapAttribute", GoMethod: "GetAnyMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getBooleanAttribute", GoMethod: "GetBooleanAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getBooleanMapAttribute", GoMethod: "GetBooleanMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getListAttribute", GoMethod: "GetListAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberAttribute", GoMethod: "GetNumberAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberListAttribute", GoMethod: "GetNumberListAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getNumberMapAttribute", GoMethod: "GetNumberMapAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getStringAttribute", GoMethod: "GetStringAttribute"},
_jsii_.MemberMethod{JsiiMethod: "getStringMapAttribute", GoMethod: "GetStringMapAttribute"},
_jsii_.MemberProperty{JsiiProperty: "id", GoGetter: "Id"},
_jsii_.MemberProperty{JsiiProperty: "idInput", GoGetter: "IdInput"},
_jsii_.MemberMethod{JsiiMethod: "interpolationForAttribute", GoMethod: "InterpolationForAttribute"},
_jsii_.MemberProperty{JsiiProperty: "lifecycle", GoGetter: "Lifecycle"},
_jsii_.MemberProperty{JsiiProperty: "node", GoGetter: "Node"},
_jsii_.MemberMethod{JsiiMethod: "overrideLogicalId", GoMethod: "OverrideLogicalId"},
_jsii_.MemberProperty{JsiiProperty: "policy", GoGetter: "Policy"},
_jsii_.MemberProperty{JsiiProperty: "policyInput", GoGetter: "PolicyInput"},
_jsii_.MemberProperty{JsiiProperty: "provider", GoGetter: "Provider"},
_jsii_.MemberProperty{JsiiProperty: "provisioners", GoGetter: "Provisioners"},
_jsii_.MemberProperty{JsiiProperty: "queueUrl", GoGetter: "QueueUrl"},
_jsii_.MemberProperty{JsiiProperty: "queueUrlInput", GoGetter: "QueueUrlInput"},
_jsii_.MemberProperty{JsiiProperty: "rawOverrides", GoGetter: "RawOverrides"},
_jsii_.MemberMethod{JsiiMethod: "resetId", GoMethod: "ResetId"},
_jsii_.MemberMethod{JsiiMethod: "resetOverrideLogicalId", GoMethod: "ResetOverrideLogicalId"},
_jsii_.MemberMethod{JsiiMethod: "synthesizeAttributes", GoMethod: "SynthesizeAttributes"},
_jsii_.MemberProperty{JsiiProperty: "terraformGeneratorMetadata", GoGetter: "TerraformGeneratorMetadata"},
_jsii_.MemberProperty{JsiiProperty: "terraformMetaArguments", GoGetter: "TerraformMetaArguments"},
_jsii_.MemberProperty{JsiiProperty: "terraformResourceType", GoGetter: "TerraformResourceType"},
_jsii_.MemberMethod{JsiiMethod: "toMetadata", GoMethod: "ToMetadata"},
_jsii_.MemberMethod{JsiiMethod: "toString", GoMethod: "ToString"},
_jsii_.MemberMethod{JsiiMethod: "toTerraform", GoMethod: "ToTerraform"},
},
func() interface{} {
j := jsiiProxy_SqsQueuePolicy{}
_jsii_.InitJsiiProxy(&j.Type__cdktfTerraformResource)
return &j
},
)
_jsii_.RegisterStruct(
"@cdktf/provider-aws.sqs.SqsQueuePolicyConfig",
reflect.TypeOf((*SqsQueuePolicyConfig)(nil)).Elem(),
)
}