aws-sdk-vpclattice 1.36.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-vpclattice/client.rb +927 -868
- data/lib/aws-sdk-vpclattice/client_api.rb +409 -403
- data/lib/aws-sdk-vpclattice/errors.rb +15 -15
- data/lib/aws-sdk-vpclattice/types.rb +1690 -1599
- data/lib/aws-sdk-vpclattice/waiters.rb +15 -0
- data/lib/aws-sdk-vpclattice.rb +2 -1
- data/sig/client.rbs +354 -350
- data/sig/errors.rbs +3 -3
- data/sig/types.rbs +323 -318
- metadata +2 -1
data/sig/types.rbs
CHANGED
@@ -14,14 +14,14 @@ module Aws::VPCLattice
|
|
14
14
|
end
|
15
15
|
|
16
16
|
class AccessLogSubscriptionSummary
|
17
|
-
attr_accessor arn: ::String
|
18
|
-
attr_accessor created_at: ::Time
|
19
|
-
attr_accessor destination_arn: ::String
|
20
17
|
attr_accessor id: ::String
|
21
|
-
attr_accessor
|
22
|
-
attr_accessor resource_arn: ::String
|
18
|
+
attr_accessor arn: ::String
|
23
19
|
attr_accessor resource_id: ::String
|
20
|
+
attr_accessor resource_arn: ::String
|
21
|
+
attr_accessor destination_arn: ::String
|
24
22
|
attr_accessor service_network_log_type: ("SERVICE" | "RESOURCE")
|
23
|
+
attr_accessor created_at: ::Time
|
24
|
+
attr_accessor last_updated_at: ::Time
|
25
25
|
SENSITIVE: []
|
26
26
|
end
|
27
27
|
|
@@ -31,9 +31,9 @@ module Aws::VPCLattice
|
|
31
31
|
end
|
32
32
|
|
33
33
|
class BatchUpdateRuleRequest
|
34
|
+
attr_accessor service_identifier: ::String
|
34
35
|
attr_accessor listener_identifier: ::String
|
35
36
|
attr_accessor rules: ::Array[Types::RuleUpdate]
|
36
|
-
attr_accessor service_identifier: ::String
|
37
37
|
SENSITIVE: []
|
38
38
|
end
|
39
39
|
|
@@ -52,128 +52,130 @@ module Aws::VPCLattice
|
|
52
52
|
|
53
53
|
class CreateAccessLogSubscriptionRequest
|
54
54
|
attr_accessor client_token: ::String
|
55
|
-
attr_accessor destination_arn: ::String
|
56
55
|
attr_accessor resource_identifier: ::String
|
56
|
+
attr_accessor destination_arn: ::String
|
57
57
|
attr_accessor service_network_log_type: ("SERVICE" | "RESOURCE")
|
58
58
|
attr_accessor tags: ::Hash[::String, ::String]
|
59
59
|
SENSITIVE: []
|
60
60
|
end
|
61
61
|
|
62
62
|
class CreateAccessLogSubscriptionResponse
|
63
|
-
attr_accessor arn: ::String
|
64
|
-
attr_accessor destination_arn: ::String
|
65
63
|
attr_accessor id: ::String
|
66
|
-
attr_accessor
|
64
|
+
attr_accessor arn: ::String
|
67
65
|
attr_accessor resource_id: ::String
|
66
|
+
attr_accessor resource_arn: ::String
|
68
67
|
attr_accessor service_network_log_type: ("SERVICE" | "RESOURCE")
|
68
|
+
attr_accessor destination_arn: ::String
|
69
69
|
SENSITIVE: []
|
70
70
|
end
|
71
71
|
|
72
72
|
class CreateListenerRequest
|
73
|
-
attr_accessor
|
74
|
-
attr_accessor default_action: Types::RuleAction
|
73
|
+
attr_accessor service_identifier: ::String
|
75
74
|
attr_accessor name: ::String
|
76
|
-
attr_accessor port: ::Integer
|
77
75
|
attr_accessor protocol: ("HTTP" | "HTTPS" | "TLS_PASSTHROUGH")
|
78
|
-
attr_accessor
|
76
|
+
attr_accessor port: ::Integer
|
77
|
+
attr_accessor default_action: Types::RuleAction
|
78
|
+
attr_accessor client_token: ::String
|
79
79
|
attr_accessor tags: ::Hash[::String, ::String]
|
80
80
|
SENSITIVE: []
|
81
81
|
end
|
82
82
|
|
83
83
|
class CreateListenerResponse
|
84
84
|
attr_accessor arn: ::String
|
85
|
-
attr_accessor default_action: Types::RuleAction
|
86
85
|
attr_accessor id: ::String
|
87
86
|
attr_accessor name: ::String
|
88
|
-
attr_accessor port: ::Integer
|
89
87
|
attr_accessor protocol: ("HTTP" | "HTTPS" | "TLS_PASSTHROUGH")
|
88
|
+
attr_accessor port: ::Integer
|
90
89
|
attr_accessor service_arn: ::String
|
91
90
|
attr_accessor service_id: ::String
|
91
|
+
attr_accessor default_action: Types::RuleAction
|
92
92
|
SENSITIVE: []
|
93
93
|
end
|
94
94
|
|
95
95
|
class CreateResourceConfigurationRequest
|
96
|
-
attr_accessor allow_association_to_shareable_service_network: bool
|
97
|
-
attr_accessor client_token: ::String
|
98
96
|
attr_accessor name: ::String
|
97
|
+
attr_accessor type: ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
99
98
|
attr_accessor port_ranges: ::Array[::String]
|
100
99
|
attr_accessor protocol: ("TCP")
|
101
|
-
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
102
|
-
attr_accessor resource_configuration_group_identifier: ::String
|
103
100
|
attr_accessor resource_gateway_identifier: ::String
|
101
|
+
attr_accessor resource_configuration_group_identifier: ::String
|
102
|
+
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
103
|
+
attr_accessor allow_association_to_shareable_service_network: bool
|
104
|
+
attr_accessor client_token: ::String
|
104
105
|
attr_accessor tags: ::Hash[::String, ::String]
|
105
|
-
attr_accessor type: ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
106
106
|
SENSITIVE: []
|
107
107
|
end
|
108
108
|
|
109
109
|
class CreateResourceConfigurationResponse
|
110
|
-
attr_accessor allow_association_to_shareable_service_network: bool
|
111
|
-
attr_accessor arn: ::String
|
112
|
-
attr_accessor created_at: ::Time
|
113
|
-
attr_accessor failure_reason: ::String
|
114
110
|
attr_accessor id: ::String
|
115
111
|
attr_accessor name: ::String
|
112
|
+
attr_accessor arn: ::String
|
113
|
+
attr_accessor resource_gateway_id: ::String
|
114
|
+
attr_accessor resource_configuration_group_id: ::String
|
115
|
+
attr_accessor type: ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
116
116
|
attr_accessor port_ranges: ::Array[::String]
|
117
117
|
attr_accessor protocol: ("TCP")
|
118
|
-
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
119
|
-
attr_accessor resource_configuration_group_id: ::String
|
120
|
-
attr_accessor resource_gateway_id: ::String
|
121
118
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
122
|
-
attr_accessor
|
119
|
+
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
120
|
+
attr_accessor allow_association_to_shareable_service_network: bool
|
121
|
+
attr_accessor created_at: ::Time
|
122
|
+
attr_accessor failure_reason: ::String
|
123
123
|
SENSITIVE: []
|
124
124
|
end
|
125
125
|
|
126
126
|
class CreateResourceGatewayRequest
|
127
127
|
attr_accessor client_token: ::String
|
128
|
-
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
129
128
|
attr_accessor name: ::String
|
130
|
-
attr_accessor
|
129
|
+
attr_accessor vpc_identifier: ::String
|
131
130
|
attr_accessor subnet_ids: ::Array[::String]
|
131
|
+
attr_accessor security_group_ids: ::Array[::String]
|
132
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
133
|
+
attr_accessor ipv4_addresses_per_eni: ::Integer
|
132
134
|
attr_accessor tags: ::Hash[::String, ::String]
|
133
|
-
attr_accessor vpc_identifier: ::String
|
134
135
|
SENSITIVE: []
|
135
136
|
end
|
136
137
|
|
137
138
|
class CreateResourceGatewayResponse
|
138
|
-
attr_accessor arn: ::String
|
139
|
-
attr_accessor id: ::String
|
140
|
-
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
141
139
|
attr_accessor name: ::String
|
142
|
-
attr_accessor
|
140
|
+
attr_accessor id: ::String
|
141
|
+
attr_accessor arn: ::String
|
143
142
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
144
|
-
attr_accessor subnet_ids: ::Array[::String]
|
145
143
|
attr_accessor vpc_identifier: ::String
|
144
|
+
attr_accessor subnet_ids: ::Array[::String]
|
145
|
+
attr_accessor security_group_ids: ::Array[::String]
|
146
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
147
|
+
attr_accessor ipv4_addresses_per_eni: ::Integer
|
146
148
|
SENSITIVE: []
|
147
149
|
end
|
148
150
|
|
149
151
|
class CreateRuleRequest
|
150
|
-
attr_accessor
|
151
|
-
attr_accessor client_token: ::String
|
152
|
+
attr_accessor service_identifier: ::String
|
152
153
|
attr_accessor listener_identifier: ::String
|
153
|
-
attr_accessor match: Types::RuleMatch
|
154
154
|
attr_accessor name: ::String
|
155
|
+
attr_accessor match: Types::RuleMatch
|
155
156
|
attr_accessor priority: ::Integer
|
156
|
-
attr_accessor
|
157
|
+
attr_accessor action: Types::RuleAction
|
158
|
+
attr_accessor client_token: ::String
|
157
159
|
attr_accessor tags: ::Hash[::String, ::String]
|
158
160
|
SENSITIVE: []
|
159
161
|
end
|
160
162
|
|
161
163
|
class CreateRuleResponse
|
162
|
-
attr_accessor action: Types::RuleAction
|
163
164
|
attr_accessor arn: ::String
|
164
165
|
attr_accessor id: ::String
|
165
|
-
attr_accessor match: Types::RuleMatch
|
166
166
|
attr_accessor name: ::String
|
167
|
+
attr_accessor match: Types::RuleMatch
|
167
168
|
attr_accessor priority: ::Integer
|
169
|
+
attr_accessor action: Types::RuleAction
|
168
170
|
SENSITIVE: []
|
169
171
|
end
|
170
172
|
|
171
173
|
class CreateServiceNetworkRequest
|
172
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
173
174
|
attr_accessor client_token: ::String
|
174
175
|
attr_accessor name: ::String
|
175
|
-
attr_accessor
|
176
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
176
177
|
attr_accessor tags: ::Hash[::String, ::String]
|
178
|
+
attr_accessor sharing_config: Types::SharingConfig
|
177
179
|
SENSITIVE: []
|
178
180
|
end
|
179
181
|
|
@@ -186,19 +188,19 @@ module Aws::VPCLattice
|
|
186
188
|
end
|
187
189
|
|
188
190
|
class CreateServiceNetworkResourceAssociationResponse
|
189
|
-
attr_accessor arn: ::String
|
190
|
-
attr_accessor created_by: ::String
|
191
191
|
attr_accessor id: ::String
|
192
|
+
attr_accessor arn: ::String
|
192
193
|
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
194
|
+
attr_accessor created_by: ::String
|
193
195
|
SENSITIVE: []
|
194
196
|
end
|
195
197
|
|
196
198
|
class CreateServiceNetworkResponse
|
197
|
-
attr_accessor arn: ::String
|
198
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
199
199
|
attr_accessor id: ::String
|
200
200
|
attr_accessor name: ::String
|
201
|
+
attr_accessor arn: ::String
|
201
202
|
attr_accessor sharing_config: Types::SharingConfig
|
203
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
202
204
|
SENSITIVE: []
|
203
205
|
end
|
204
206
|
|
@@ -211,71 +213,71 @@ module Aws::VPCLattice
|
|
211
213
|
end
|
212
214
|
|
213
215
|
class CreateServiceNetworkServiceAssociationResponse
|
216
|
+
attr_accessor id: ::String
|
217
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
214
218
|
attr_accessor arn: ::String
|
215
219
|
attr_accessor created_by: ::String
|
216
220
|
attr_accessor custom_domain_name: ::String
|
217
221
|
attr_accessor dns_entry: Types::DnsEntry
|
218
|
-
attr_accessor id: ::String
|
219
|
-
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
220
222
|
SENSITIVE: []
|
221
223
|
end
|
222
224
|
|
223
225
|
class CreateServiceNetworkVpcAssociationRequest
|
224
226
|
attr_accessor client_token: ::String
|
225
|
-
attr_accessor security_group_ids: ::Array[::String]
|
226
227
|
attr_accessor service_network_identifier: ::String
|
227
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
228
228
|
attr_accessor vpc_identifier: ::String
|
229
|
+
attr_accessor security_group_ids: ::Array[::String]
|
230
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
229
231
|
SENSITIVE: []
|
230
232
|
end
|
231
233
|
|
232
234
|
class CreateServiceNetworkVpcAssociationResponse
|
235
|
+
attr_accessor id: ::String
|
236
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
|
233
237
|
attr_accessor arn: ::String
|
234
238
|
attr_accessor created_by: ::String
|
235
|
-
attr_accessor id: ::String
|
236
239
|
attr_accessor security_group_ids: ::Array[::String]
|
237
|
-
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
|
238
240
|
SENSITIVE: []
|
239
241
|
end
|
240
242
|
|
241
243
|
class CreateServiceRequest
|
242
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
243
|
-
attr_accessor certificate_arn: ::String
|
244
244
|
attr_accessor client_token: ::String
|
245
|
-
attr_accessor custom_domain_name: ::String
|
246
245
|
attr_accessor name: ::String
|
247
246
|
attr_accessor tags: ::Hash[::String, ::String]
|
247
|
+
attr_accessor custom_domain_name: ::String
|
248
|
+
attr_accessor certificate_arn: ::String
|
249
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
248
250
|
SENSITIVE: []
|
249
251
|
end
|
250
252
|
|
251
253
|
class CreateServiceResponse
|
252
|
-
attr_accessor arn: ::String
|
253
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
254
|
-
attr_accessor certificate_arn: ::String
|
255
|
-
attr_accessor custom_domain_name: ::String
|
256
|
-
attr_accessor dns_entry: Types::DnsEntry
|
257
254
|
attr_accessor id: ::String
|
255
|
+
attr_accessor arn: ::String
|
258
256
|
attr_accessor name: ::String
|
257
|
+
attr_accessor custom_domain_name: ::String
|
258
|
+
attr_accessor certificate_arn: ::String
|
259
259
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
260
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
261
|
+
attr_accessor dns_entry: Types::DnsEntry
|
260
262
|
SENSITIVE: []
|
261
263
|
end
|
262
264
|
|
263
265
|
class CreateTargetGroupRequest
|
264
|
-
attr_accessor client_token: ::String
|
265
|
-
attr_accessor config: Types::TargetGroupConfig
|
266
266
|
attr_accessor name: ::String
|
267
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
268
267
|
attr_accessor type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
268
|
+
attr_accessor config: Types::TargetGroupConfig
|
269
|
+
attr_accessor client_token: ::String
|
270
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
269
271
|
SENSITIVE: []
|
270
272
|
end
|
271
273
|
|
272
274
|
class CreateTargetGroupResponse
|
273
|
-
attr_accessor arn: ::String
|
274
|
-
attr_accessor config: Types::TargetGroupConfig
|
275
275
|
attr_accessor id: ::String
|
276
|
+
attr_accessor arn: ::String
|
276
277
|
attr_accessor name: ::String
|
277
|
-
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
278
278
|
attr_accessor type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
279
|
+
attr_accessor config: Types::TargetGroupConfig
|
280
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
279
281
|
SENSITIVE: []
|
280
282
|
end
|
281
283
|
|
@@ -296,8 +298,8 @@ module Aws::VPCLattice
|
|
296
298
|
end
|
297
299
|
|
298
300
|
class DeleteListenerRequest
|
299
|
-
attr_accessor listener_identifier: ::String
|
300
301
|
attr_accessor service_identifier: ::String
|
302
|
+
attr_accessor listener_identifier: ::String
|
301
303
|
SENSITIVE: []
|
302
304
|
end
|
303
305
|
|
@@ -318,10 +320,10 @@ module Aws::VPCLattice
|
|
318
320
|
end
|
319
321
|
|
320
322
|
class DeleteResourceEndpointAssociationResponse
|
321
|
-
attr_accessor arn: ::String
|
322
323
|
attr_accessor id: ::String
|
323
|
-
attr_accessor
|
324
|
+
attr_accessor arn: ::String
|
324
325
|
attr_accessor resource_configuration_id: ::String
|
326
|
+
attr_accessor resource_configuration_arn: ::String
|
325
327
|
attr_accessor vpc_endpoint_id: ::String
|
326
328
|
SENSITIVE: []
|
327
329
|
end
|
@@ -332,8 +334,8 @@ module Aws::VPCLattice
|
|
332
334
|
end
|
333
335
|
|
334
336
|
class DeleteResourceGatewayResponse
|
335
|
-
attr_accessor arn: ::String
|
336
337
|
attr_accessor id: ::String
|
338
|
+
attr_accessor arn: ::String
|
337
339
|
attr_accessor name: ::String
|
338
340
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
339
341
|
SENSITIVE: []
|
@@ -348,9 +350,9 @@ module Aws::VPCLattice
|
|
348
350
|
end
|
349
351
|
|
350
352
|
class DeleteRuleRequest
|
353
|
+
attr_accessor service_identifier: ::String
|
351
354
|
attr_accessor listener_identifier: ::String
|
352
355
|
attr_accessor rule_identifier: ::String
|
353
|
-
attr_accessor service_identifier: ::String
|
354
356
|
SENSITIVE: []
|
355
357
|
end
|
356
358
|
|
@@ -368,8 +370,8 @@ module Aws::VPCLattice
|
|
368
370
|
end
|
369
371
|
|
370
372
|
class DeleteServiceNetworkResourceAssociationResponse
|
371
|
-
attr_accessor arn: ::String
|
372
373
|
attr_accessor id: ::String
|
374
|
+
attr_accessor arn: ::String
|
373
375
|
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
374
376
|
SENSITIVE: []
|
375
377
|
end
|
@@ -383,9 +385,9 @@ module Aws::VPCLattice
|
|
383
385
|
end
|
384
386
|
|
385
387
|
class DeleteServiceNetworkServiceAssociationResponse
|
386
|
-
attr_accessor arn: ::String
|
387
388
|
attr_accessor id: ::String
|
388
389
|
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
390
|
+
attr_accessor arn: ::String
|
389
391
|
SENSITIVE: []
|
390
392
|
end
|
391
393
|
|
@@ -395,9 +397,9 @@ module Aws::VPCLattice
|
|
395
397
|
end
|
396
398
|
|
397
399
|
class DeleteServiceNetworkVpcAssociationResponse
|
398
|
-
attr_accessor arn: ::String
|
399
400
|
attr_accessor id: ::String
|
400
401
|
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
|
402
|
+
attr_accessor arn: ::String
|
401
403
|
SENSITIVE: []
|
402
404
|
end
|
403
405
|
|
@@ -407,8 +409,8 @@ module Aws::VPCLattice
|
|
407
409
|
end
|
408
410
|
|
409
411
|
class DeleteServiceResponse
|
410
|
-
attr_accessor arn: ::String
|
411
412
|
attr_accessor id: ::String
|
413
|
+
attr_accessor arn: ::String
|
412
414
|
attr_accessor name: ::String
|
413
415
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
414
416
|
SENSITIVE: []
|
@@ -420,8 +422,8 @@ module Aws::VPCLattice
|
|
420
422
|
end
|
421
423
|
|
422
424
|
class DeleteTargetGroupResponse
|
423
|
-
attr_accessor arn: ::String
|
424
425
|
attr_accessor id: ::String
|
426
|
+
attr_accessor arn: ::String
|
425
427
|
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
426
428
|
SENSITIVE: []
|
427
429
|
end
|
@@ -466,14 +468,14 @@ module Aws::VPCLattice
|
|
466
468
|
end
|
467
469
|
|
468
470
|
class GetAccessLogSubscriptionResponse
|
469
|
-
attr_accessor arn: ::String
|
470
|
-
attr_accessor created_at: ::Time
|
471
|
-
attr_accessor destination_arn: ::String
|
472
471
|
attr_accessor id: ::String
|
473
|
-
attr_accessor
|
474
|
-
attr_accessor resource_arn: ::String
|
472
|
+
attr_accessor arn: ::String
|
475
473
|
attr_accessor resource_id: ::String
|
474
|
+
attr_accessor resource_arn: ::String
|
475
|
+
attr_accessor destination_arn: ::String
|
476
476
|
attr_accessor service_network_log_type: ("SERVICE" | "RESOURCE")
|
477
|
+
attr_accessor created_at: ::Time
|
478
|
+
attr_accessor last_updated_at: ::Time
|
477
479
|
SENSITIVE: []
|
478
480
|
end
|
479
481
|
|
@@ -483,30 +485,30 @@ module Aws::VPCLattice
|
|
483
485
|
end
|
484
486
|
|
485
487
|
class GetAuthPolicyResponse
|
486
|
-
attr_accessor created_at: ::Time
|
487
|
-
attr_accessor last_updated_at: ::Time
|
488
488
|
attr_accessor policy: ::String
|
489
489
|
attr_accessor state: ("Active" | "Inactive")
|
490
|
+
attr_accessor created_at: ::Time
|
491
|
+
attr_accessor last_updated_at: ::Time
|
490
492
|
SENSITIVE: []
|
491
493
|
end
|
492
494
|
|
493
495
|
class GetListenerRequest
|
494
|
-
attr_accessor listener_identifier: ::String
|
495
496
|
attr_accessor service_identifier: ::String
|
497
|
+
attr_accessor listener_identifier: ::String
|
496
498
|
SENSITIVE: []
|
497
499
|
end
|
498
500
|
|
499
501
|
class GetListenerResponse
|
500
502
|
attr_accessor arn: ::String
|
501
|
-
attr_accessor created_at: ::Time
|
502
|
-
attr_accessor default_action: Types::RuleAction
|
503
503
|
attr_accessor id: ::String
|
504
|
-
attr_accessor last_updated_at: ::Time
|
505
504
|
attr_accessor name: ::String
|
506
|
-
attr_accessor port: ::Integer
|
507
505
|
attr_accessor protocol: ("HTTP" | "HTTPS" | "TLS_PASSTHROUGH")
|
506
|
+
attr_accessor port: ::Integer
|
508
507
|
attr_accessor service_arn: ::String
|
509
508
|
attr_accessor service_id: ::String
|
509
|
+
attr_accessor default_action: Types::RuleAction
|
510
|
+
attr_accessor created_at: ::Time
|
511
|
+
attr_accessor last_updated_at: ::Time
|
510
512
|
SENSITIVE: []
|
511
513
|
end
|
512
514
|
|
@@ -516,22 +518,22 @@ module Aws::VPCLattice
|
|
516
518
|
end
|
517
519
|
|
518
520
|
class GetResourceConfigurationResponse
|
519
|
-
attr_accessor allow_association_to_shareable_service_network: bool
|
520
|
-
attr_accessor amazon_managed: bool
|
521
|
-
attr_accessor arn: ::String
|
522
|
-
attr_accessor created_at: ::Time
|
523
|
-
attr_accessor custom_domain_name: ::String
|
524
|
-
attr_accessor failure_reason: ::String
|
525
521
|
attr_accessor id: ::String
|
526
|
-
attr_accessor last_updated_at: ::Time
|
527
522
|
attr_accessor name: ::String
|
523
|
+
attr_accessor arn: ::String
|
524
|
+
attr_accessor resource_gateway_id: ::String
|
525
|
+
attr_accessor resource_configuration_group_id: ::String
|
526
|
+
attr_accessor type: ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
527
|
+
attr_accessor allow_association_to_shareable_service_network: bool
|
528
528
|
attr_accessor port_ranges: ::Array[::String]
|
529
529
|
attr_accessor protocol: ("TCP")
|
530
|
-
attr_accessor
|
531
|
-
attr_accessor resource_configuration_group_id: ::String
|
532
|
-
attr_accessor resource_gateway_id: ::String
|
530
|
+
attr_accessor custom_domain_name: ::String
|
533
531
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
534
|
-
attr_accessor
|
532
|
+
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
533
|
+
attr_accessor created_at: ::Time
|
534
|
+
attr_accessor amazon_managed: bool
|
535
|
+
attr_accessor failure_reason: ::String
|
536
|
+
attr_accessor last_updated_at: ::Time
|
535
537
|
SENSITIVE: []
|
536
538
|
end
|
537
539
|
|
@@ -541,16 +543,17 @@ module Aws::VPCLattice
|
|
541
543
|
end
|
542
544
|
|
543
545
|
class GetResourceGatewayResponse
|
544
|
-
attr_accessor arn: ::String
|
545
|
-
attr_accessor created_at: ::Time
|
546
|
-
attr_accessor id: ::String
|
547
|
-
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
548
|
-
attr_accessor last_updated_at: ::Time
|
549
546
|
attr_accessor name: ::String
|
550
|
-
attr_accessor
|
547
|
+
attr_accessor id: ::String
|
548
|
+
attr_accessor arn: ::String
|
551
549
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
552
|
-
attr_accessor subnet_ids: ::Array[::String]
|
553
550
|
attr_accessor vpc_id: ::String
|
551
|
+
attr_accessor subnet_ids: ::Array[::String]
|
552
|
+
attr_accessor security_group_ids: ::Array[::String]
|
553
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
554
|
+
attr_accessor ipv4_addresses_per_eni: ::Integer
|
555
|
+
attr_accessor created_at: ::Time
|
556
|
+
attr_accessor last_updated_at: ::Time
|
554
557
|
SENSITIVE: []
|
555
558
|
end
|
556
559
|
|
@@ -565,22 +568,22 @@ module Aws::VPCLattice
|
|
565
568
|
end
|
566
569
|
|
567
570
|
class GetRuleRequest
|
571
|
+
attr_accessor service_identifier: ::String
|
568
572
|
attr_accessor listener_identifier: ::String
|
569
573
|
attr_accessor rule_identifier: ::String
|
570
|
-
attr_accessor service_identifier: ::String
|
571
574
|
SENSITIVE: []
|
572
575
|
end
|
573
576
|
|
574
577
|
class GetRuleResponse
|
575
|
-
attr_accessor action: Types::RuleAction
|
576
578
|
attr_accessor arn: ::String
|
577
|
-
attr_accessor created_at: ::Time
|
578
579
|
attr_accessor id: ::String
|
580
|
+
attr_accessor name: ::String
|
579
581
|
attr_accessor is_default: bool
|
580
|
-
attr_accessor last_updated_at: ::Time
|
581
582
|
attr_accessor match: Types::RuleMatch
|
582
|
-
attr_accessor name: ::String
|
583
583
|
attr_accessor priority: ::Integer
|
584
|
+
attr_accessor action: Types::RuleAction
|
585
|
+
attr_accessor created_at: ::Time
|
586
|
+
attr_accessor last_updated_at: ::Time
|
584
587
|
SENSITIVE: []
|
585
588
|
end
|
586
589
|
|
@@ -595,36 +598,36 @@ module Aws::VPCLattice
|
|
595
598
|
end
|
596
599
|
|
597
600
|
class GetServiceNetworkResourceAssociationResponse
|
601
|
+
attr_accessor id: ::String
|
598
602
|
attr_accessor arn: ::String
|
599
|
-
attr_accessor
|
603
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
600
604
|
attr_accessor created_by: ::String
|
601
|
-
attr_accessor
|
602
|
-
attr_accessor failure_code: ::String
|
603
|
-
attr_accessor failure_reason: ::String
|
604
|
-
attr_accessor id: ::String
|
605
|
-
attr_accessor is_managed_association: bool
|
606
|
-
attr_accessor last_updated_at: ::Time
|
607
|
-
attr_accessor private_dns_entry: Types::DnsEntry
|
608
|
-
attr_accessor resource_configuration_arn: ::String
|
605
|
+
attr_accessor created_at: ::Time
|
609
606
|
attr_accessor resource_configuration_id: ::String
|
607
|
+
attr_accessor resource_configuration_arn: ::String
|
610
608
|
attr_accessor resource_configuration_name: ::String
|
611
|
-
attr_accessor service_network_arn: ::String
|
612
609
|
attr_accessor service_network_id: ::String
|
610
|
+
attr_accessor service_network_arn: ::String
|
613
611
|
attr_accessor service_network_name: ::String
|
614
|
-
attr_accessor
|
612
|
+
attr_accessor failure_reason: ::String
|
613
|
+
attr_accessor failure_code: ::String
|
614
|
+
attr_accessor last_updated_at: ::Time
|
615
|
+
attr_accessor private_dns_entry: Types::DnsEntry
|
616
|
+
attr_accessor dns_entry: Types::DnsEntry
|
617
|
+
attr_accessor is_managed_association: bool
|
615
618
|
SENSITIVE: []
|
616
619
|
end
|
617
620
|
|
618
621
|
class GetServiceNetworkResponse
|
619
|
-
attr_accessor arn: ::String
|
620
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
621
|
-
attr_accessor created_at: ::Time
|
622
622
|
attr_accessor id: ::String
|
623
|
-
attr_accessor last_updated_at: ::Time
|
624
623
|
attr_accessor name: ::String
|
625
|
-
attr_accessor
|
626
|
-
attr_accessor
|
624
|
+
attr_accessor created_at: ::Time
|
625
|
+
attr_accessor last_updated_at: ::Time
|
626
|
+
attr_accessor arn: ::String
|
627
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
627
628
|
attr_accessor sharing_config: Types::SharingConfig
|
629
|
+
attr_accessor number_of_associated_vp_cs: ::Integer
|
630
|
+
attr_accessor number_of_associated_services: ::Integer
|
628
631
|
SENSITIVE: []
|
629
632
|
end
|
630
633
|
|
@@ -634,21 +637,21 @@ module Aws::VPCLattice
|
|
634
637
|
end
|
635
638
|
|
636
639
|
class GetServiceNetworkServiceAssociationResponse
|
640
|
+
attr_accessor id: ::String
|
641
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
637
642
|
attr_accessor arn: ::String
|
638
|
-
attr_accessor created_at: ::Time
|
639
643
|
attr_accessor created_by: ::String
|
640
|
-
attr_accessor
|
641
|
-
attr_accessor dns_entry: Types::DnsEntry
|
642
|
-
attr_accessor failure_code: ::String
|
643
|
-
attr_accessor failure_message: ::String
|
644
|
-
attr_accessor id: ::String
|
645
|
-
attr_accessor service_arn: ::String
|
644
|
+
attr_accessor created_at: ::Time
|
646
645
|
attr_accessor service_id: ::String
|
647
646
|
attr_accessor service_name: ::String
|
648
|
-
attr_accessor
|
647
|
+
attr_accessor service_arn: ::String
|
649
648
|
attr_accessor service_network_id: ::String
|
650
649
|
attr_accessor service_network_name: ::String
|
651
|
-
attr_accessor
|
650
|
+
attr_accessor service_network_arn: ::String
|
651
|
+
attr_accessor dns_entry: Types::DnsEntry
|
652
|
+
attr_accessor custom_domain_name: ::String
|
653
|
+
attr_accessor failure_message: ::String
|
654
|
+
attr_accessor failure_code: ::String
|
652
655
|
SENSITIVE: []
|
653
656
|
end
|
654
657
|
|
@@ -658,19 +661,19 @@ module Aws::VPCLattice
|
|
658
661
|
end
|
659
662
|
|
660
663
|
class GetServiceNetworkVpcAssociationResponse
|
664
|
+
attr_accessor id: ::String
|
665
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
|
661
666
|
attr_accessor arn: ::String
|
662
|
-
attr_accessor created_at: ::Time
|
663
667
|
attr_accessor created_by: ::String
|
664
|
-
attr_accessor
|
665
|
-
attr_accessor failure_message: ::String
|
666
|
-
attr_accessor id: ::String
|
667
|
-
attr_accessor last_updated_at: ::Time
|
668
|
-
attr_accessor security_group_ids: ::Array[::String]
|
669
|
-
attr_accessor service_network_arn: ::String
|
668
|
+
attr_accessor created_at: ::Time
|
670
669
|
attr_accessor service_network_id: ::String
|
671
670
|
attr_accessor service_network_name: ::String
|
672
|
-
attr_accessor
|
671
|
+
attr_accessor service_network_arn: ::String
|
673
672
|
attr_accessor vpc_id: ::String
|
673
|
+
attr_accessor security_group_ids: ::Array[::String]
|
674
|
+
attr_accessor failure_message: ::String
|
675
|
+
attr_accessor failure_code: ::String
|
676
|
+
attr_accessor last_updated_at: ::Time
|
674
677
|
SENSITIVE: []
|
675
678
|
end
|
676
679
|
|
@@ -680,18 +683,18 @@ module Aws::VPCLattice
|
|
680
683
|
end
|
681
684
|
|
682
685
|
class GetServiceResponse
|
686
|
+
attr_accessor id: ::String
|
687
|
+
attr_accessor name: ::String
|
683
688
|
attr_accessor arn: ::String
|
684
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
685
|
-
attr_accessor certificate_arn: ::String
|
686
689
|
attr_accessor created_at: ::Time
|
687
|
-
attr_accessor
|
690
|
+
attr_accessor last_updated_at: ::Time
|
688
691
|
attr_accessor dns_entry: Types::DnsEntry
|
692
|
+
attr_accessor custom_domain_name: ::String
|
693
|
+
attr_accessor certificate_arn: ::String
|
694
|
+
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
695
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
689
696
|
attr_accessor failure_code: ::String
|
690
697
|
attr_accessor failure_message: ::String
|
691
|
-
attr_accessor id: ::String
|
692
|
-
attr_accessor last_updated_at: ::Time
|
693
|
-
attr_accessor name: ::String
|
694
|
-
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
695
698
|
SENSITIVE: []
|
696
699
|
end
|
697
700
|
|
@@ -701,62 +704,62 @@ module Aws::VPCLattice
|
|
701
704
|
end
|
702
705
|
|
703
706
|
class GetTargetGroupResponse
|
707
|
+
attr_accessor id: ::String
|
704
708
|
attr_accessor arn: ::String
|
709
|
+
attr_accessor name: ::String
|
710
|
+
attr_accessor type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
705
711
|
attr_accessor config: Types::TargetGroupConfig
|
706
712
|
attr_accessor created_at: ::Time
|
707
|
-
attr_accessor failure_code: ::String
|
708
|
-
attr_accessor failure_message: ::String
|
709
|
-
attr_accessor id: ::String
|
710
713
|
attr_accessor last_updated_at: ::Time
|
711
|
-
attr_accessor name: ::String
|
712
|
-
attr_accessor service_arns: ::Array[::String]
|
713
714
|
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
714
|
-
attr_accessor
|
715
|
+
attr_accessor service_arns: ::Array[::String]
|
716
|
+
attr_accessor failure_message: ::String
|
717
|
+
attr_accessor failure_code: ::String
|
715
718
|
SENSITIVE: []
|
716
719
|
end
|
717
720
|
|
718
721
|
class HeaderMatch
|
719
|
-
attr_accessor case_sensitive: bool
|
720
|
-
attr_accessor match: Types::HeaderMatchType
|
721
722
|
attr_accessor name: ::String
|
723
|
+
attr_accessor match: Types::HeaderMatchType
|
724
|
+
attr_accessor case_sensitive: bool
|
722
725
|
SENSITIVE: []
|
723
726
|
end
|
724
727
|
|
725
728
|
class HeaderMatchType
|
726
|
-
attr_accessor contains: ::String
|
727
729
|
attr_accessor exact: ::String
|
728
730
|
attr_accessor prefix: ::String
|
731
|
+
attr_accessor contains: ::String
|
729
732
|
attr_accessor unknown: untyped
|
730
733
|
SENSITIVE: []
|
731
734
|
|
732
|
-
class Contains < HeaderMatchType
|
733
|
-
end
|
734
735
|
class Exact < HeaderMatchType
|
735
736
|
end
|
736
737
|
class Prefix < HeaderMatchType
|
737
738
|
end
|
739
|
+
class Contains < HeaderMatchType
|
740
|
+
end
|
738
741
|
class Unknown < HeaderMatchType
|
739
742
|
end
|
740
743
|
end
|
741
744
|
|
742
745
|
class HealthCheckConfig
|
743
746
|
attr_accessor enabled: bool
|
747
|
+
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP")
|
748
|
+
attr_accessor protocol_version: ("HTTP1" | "HTTP2")
|
749
|
+
attr_accessor port: ::Integer
|
750
|
+
attr_accessor path: ::String
|
744
751
|
attr_accessor health_check_interval_seconds: ::Integer
|
745
752
|
attr_accessor health_check_timeout_seconds: ::Integer
|
746
753
|
attr_accessor healthy_threshold_count: ::Integer
|
747
|
-
attr_accessor matcher: Types::Matcher
|
748
|
-
attr_accessor path: ::String
|
749
|
-
attr_accessor port: ::Integer
|
750
|
-
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP")
|
751
|
-
attr_accessor protocol_version: ("HTTP1" | "HTTP2")
|
752
754
|
attr_accessor unhealthy_threshold_count: ::Integer
|
755
|
+
attr_accessor matcher: Types::Matcher
|
753
756
|
SENSITIVE: []
|
754
757
|
end
|
755
758
|
|
756
759
|
class HttpMatch
|
757
|
-
attr_accessor header_matches: ::Array[Types::HeaderMatch]
|
758
760
|
attr_accessor method: ::String
|
759
761
|
attr_accessor path_match: Types::PathMatch
|
762
|
+
attr_accessor header_matches: ::Array[Types::HeaderMatch]
|
760
763
|
SENSITIVE: []
|
761
764
|
end
|
762
765
|
|
@@ -772,9 +775,9 @@ module Aws::VPCLattice
|
|
772
775
|
end
|
773
776
|
|
774
777
|
class ListAccessLogSubscriptionsRequest
|
778
|
+
attr_accessor resource_identifier: ::String
|
775
779
|
attr_accessor max_results: ::Integer
|
776
780
|
attr_accessor next_token: ::String
|
777
|
-
attr_accessor resource_identifier: ::String
|
778
781
|
SENSITIVE: []
|
779
782
|
end
|
780
783
|
|
@@ -785,9 +788,9 @@ module Aws::VPCLattice
|
|
785
788
|
end
|
786
789
|
|
787
790
|
class ListListenersRequest
|
791
|
+
attr_accessor service_identifier: ::String
|
788
792
|
attr_accessor max_results: ::Integer
|
789
793
|
attr_accessor next_token: ::String
|
790
|
-
attr_accessor service_identifier: ::String
|
791
794
|
SENSITIVE: []
|
792
795
|
end
|
793
796
|
|
@@ -798,10 +801,10 @@ module Aws::VPCLattice
|
|
798
801
|
end
|
799
802
|
|
800
803
|
class ListResourceConfigurationsRequest
|
804
|
+
attr_accessor resource_gateway_identifier: ::String
|
805
|
+
attr_accessor resource_configuration_group_identifier: ::String
|
801
806
|
attr_accessor max_results: ::Integer
|
802
807
|
attr_accessor next_token: ::String
|
803
|
-
attr_accessor resource_configuration_group_identifier: ::String
|
804
|
-
attr_accessor resource_gateway_identifier: ::String
|
805
808
|
SENSITIVE: []
|
806
809
|
end
|
807
810
|
|
@@ -812,12 +815,12 @@ module Aws::VPCLattice
|
|
812
815
|
end
|
813
816
|
|
814
817
|
class ListResourceEndpointAssociationsRequest
|
815
|
-
attr_accessor max_results: ::Integer
|
816
|
-
attr_accessor next_token: ::String
|
817
818
|
attr_accessor resource_configuration_identifier: ::String
|
818
819
|
attr_accessor resource_endpoint_association_identifier: ::String
|
819
820
|
attr_accessor vpc_endpoint_id: ::String
|
820
821
|
attr_accessor vpc_endpoint_owner: ::String
|
822
|
+
attr_accessor max_results: ::Integer
|
823
|
+
attr_accessor next_token: ::String
|
821
824
|
SENSITIVE: []
|
822
825
|
end
|
823
826
|
|
@@ -840,10 +843,10 @@ module Aws::VPCLattice
|
|
840
843
|
end
|
841
844
|
|
842
845
|
class ListRulesRequest
|
846
|
+
attr_accessor service_identifier: ::String
|
843
847
|
attr_accessor listener_identifier: ::String
|
844
848
|
attr_accessor max_results: ::Integer
|
845
849
|
attr_accessor next_token: ::String
|
846
|
-
attr_accessor service_identifier: ::String
|
847
850
|
SENSITIVE: []
|
848
851
|
end
|
849
852
|
|
@@ -854,10 +857,11 @@ module Aws::VPCLattice
|
|
854
857
|
end
|
855
858
|
|
856
859
|
class ListServiceNetworkResourceAssociationsRequest
|
860
|
+
attr_accessor service_network_identifier: ::String
|
861
|
+
attr_accessor resource_configuration_identifier: ::String
|
857
862
|
attr_accessor max_results: ::Integer
|
858
863
|
attr_accessor next_token: ::String
|
859
|
-
attr_accessor
|
860
|
-
attr_accessor service_network_identifier: ::String
|
864
|
+
attr_accessor include_children: bool
|
861
865
|
SENSITIVE: []
|
862
866
|
end
|
863
867
|
|
@@ -868,10 +872,10 @@ module Aws::VPCLattice
|
|
868
872
|
end
|
869
873
|
|
870
874
|
class ListServiceNetworkServiceAssociationsRequest
|
875
|
+
attr_accessor service_network_identifier: ::String
|
876
|
+
attr_accessor service_identifier: ::String
|
871
877
|
attr_accessor max_results: ::Integer
|
872
878
|
attr_accessor next_token: ::String
|
873
|
-
attr_accessor service_identifier: ::String
|
874
|
-
attr_accessor service_network_identifier: ::String
|
875
879
|
SENSITIVE: []
|
876
880
|
end
|
877
881
|
|
@@ -882,10 +886,10 @@ module Aws::VPCLattice
|
|
882
886
|
end
|
883
887
|
|
884
888
|
class ListServiceNetworkVpcAssociationsRequest
|
885
|
-
attr_accessor max_results: ::Integer
|
886
|
-
attr_accessor next_token: ::String
|
887
889
|
attr_accessor service_network_identifier: ::String
|
888
890
|
attr_accessor vpc_identifier: ::String
|
891
|
+
attr_accessor max_results: ::Integer
|
892
|
+
attr_accessor next_token: ::String
|
889
893
|
SENSITIVE: []
|
890
894
|
end
|
891
895
|
|
@@ -896,9 +900,9 @@ module Aws::VPCLattice
|
|
896
900
|
end
|
897
901
|
|
898
902
|
class ListServiceNetworkVpcEndpointAssociationsRequest
|
903
|
+
attr_accessor service_network_identifier: ::String
|
899
904
|
attr_accessor max_results: ::Integer
|
900
905
|
attr_accessor next_token: ::String
|
901
|
-
attr_accessor service_network_identifier: ::String
|
902
906
|
SENSITIVE: []
|
903
907
|
end
|
904
908
|
|
@@ -945,8 +949,8 @@ module Aws::VPCLattice
|
|
945
949
|
class ListTargetGroupsRequest
|
946
950
|
attr_accessor max_results: ::Integer
|
947
951
|
attr_accessor next_token: ::String
|
948
|
-
attr_accessor target_group_type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
949
952
|
attr_accessor vpc_identifier: ::String
|
953
|
+
attr_accessor target_group_type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
950
954
|
SENSITIVE: []
|
951
955
|
end
|
952
956
|
|
@@ -957,9 +961,9 @@ module Aws::VPCLattice
|
|
957
961
|
end
|
958
962
|
|
959
963
|
class ListTargetsRequest
|
964
|
+
attr_accessor target_group_identifier: ::String
|
960
965
|
attr_accessor max_results: ::Integer
|
961
966
|
attr_accessor next_token: ::String
|
962
|
-
attr_accessor target_group_identifier: ::String
|
963
967
|
attr_accessor targets: ::Array[Types::Target]
|
964
968
|
SENSITIVE: []
|
965
969
|
end
|
@@ -972,12 +976,12 @@ module Aws::VPCLattice
|
|
972
976
|
|
973
977
|
class ListenerSummary
|
974
978
|
attr_accessor arn: ::String
|
975
|
-
attr_accessor created_at: ::Time
|
976
979
|
attr_accessor id: ::String
|
977
|
-
attr_accessor last_updated_at: ::Time
|
978
980
|
attr_accessor name: ::String
|
979
|
-
attr_accessor port: ::Integer
|
980
981
|
attr_accessor protocol: ("HTTP" | "HTTPS" | "TLS_PASSTHROUGH")
|
982
|
+
attr_accessor port: ::Integer
|
983
|
+
attr_accessor created_at: ::Time
|
984
|
+
attr_accessor last_updated_at: ::Time
|
981
985
|
SENSITIVE: []
|
982
986
|
end
|
983
987
|
|
@@ -993,8 +997,8 @@ module Aws::VPCLattice
|
|
993
997
|
end
|
994
998
|
|
995
999
|
class PathMatch
|
996
|
-
attr_accessor case_sensitive: bool
|
997
1000
|
attr_accessor match: Types::PathMatchType
|
1001
|
+
attr_accessor case_sensitive: bool
|
998
1002
|
SENSITIVE: []
|
999
1003
|
end
|
1000
1004
|
|
@@ -1013,8 +1017,8 @@ module Aws::VPCLattice
|
|
1013
1017
|
end
|
1014
1018
|
|
1015
1019
|
class PutAuthPolicyRequest
|
1016
|
-
attr_accessor policy: ::String
|
1017
1020
|
attr_accessor resource_identifier: ::String
|
1021
|
+
attr_accessor policy: ::String
|
1018
1022
|
SENSITIVE: []
|
1019
1023
|
end
|
1020
1024
|
|
@@ -1025,8 +1029,8 @@ module Aws::VPCLattice
|
|
1025
1029
|
end
|
1026
1030
|
|
1027
1031
|
class PutResourcePolicyRequest
|
1028
|
-
attr_accessor policy: ::String
|
1029
1032
|
attr_accessor resource_arn: ::String
|
1033
|
+
attr_accessor policy: ::String
|
1030
1034
|
SENSITIVE: []
|
1031
1035
|
end
|
1032
1036
|
|
@@ -1046,60 +1050,61 @@ module Aws::VPCLattice
|
|
1046
1050
|
end
|
1047
1051
|
|
1048
1052
|
class ResourceConfigurationDefinition
|
1049
|
-
attr_accessor arn_resource: Types::ArnResource
|
1050
1053
|
attr_accessor dns_resource: Types::DnsResource
|
1051
1054
|
attr_accessor ip_resource: Types::IpResource
|
1055
|
+
attr_accessor arn_resource: Types::ArnResource
|
1052
1056
|
attr_accessor unknown: untyped
|
1053
1057
|
SENSITIVE: []
|
1054
1058
|
|
1055
|
-
class ArnResource < ResourceConfigurationDefinition
|
1056
|
-
end
|
1057
1059
|
class DnsResource < ResourceConfigurationDefinition
|
1058
1060
|
end
|
1059
1061
|
class IpResource < ResourceConfigurationDefinition
|
1060
1062
|
end
|
1063
|
+
class ArnResource < ResourceConfigurationDefinition
|
1064
|
+
end
|
1061
1065
|
class Unknown < ResourceConfigurationDefinition
|
1062
1066
|
end
|
1063
1067
|
end
|
1064
1068
|
|
1065
1069
|
class ResourceConfigurationSummary
|
1066
|
-
attr_accessor amazon_managed: bool
|
1067
|
-
attr_accessor arn: ::String
|
1068
|
-
attr_accessor created_at: ::Time
|
1069
1070
|
attr_accessor id: ::String
|
1070
|
-
attr_accessor last_updated_at: ::Time
|
1071
1071
|
attr_accessor name: ::String
|
1072
|
-
attr_accessor
|
1072
|
+
attr_accessor arn: ::String
|
1073
1073
|
attr_accessor resource_gateway_id: ::String
|
1074
|
-
attr_accessor
|
1074
|
+
attr_accessor resource_configuration_group_id: ::String
|
1075
1075
|
attr_accessor type: ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
1076
|
+
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
1077
|
+
attr_accessor amazon_managed: bool
|
1078
|
+
attr_accessor created_at: ::Time
|
1079
|
+
attr_accessor last_updated_at: ::Time
|
1076
1080
|
SENSITIVE: []
|
1077
1081
|
end
|
1078
1082
|
|
1079
1083
|
class ResourceEndpointAssociationSummary
|
1080
|
-
attr_accessor arn: ::String
|
1081
|
-
attr_accessor created_at: ::Time
|
1082
|
-
attr_accessor created_by: ::String
|
1083
1084
|
attr_accessor id: ::String
|
1084
|
-
attr_accessor
|
1085
|
+
attr_accessor arn: ::String
|
1085
1086
|
attr_accessor resource_configuration_id: ::String
|
1087
|
+
attr_accessor resource_configuration_arn: ::String
|
1086
1088
|
attr_accessor resource_configuration_name: ::String
|
1087
1089
|
attr_accessor vpc_endpoint_id: ::String
|
1088
1090
|
attr_accessor vpc_endpoint_owner: ::String
|
1091
|
+
attr_accessor created_by: ::String
|
1092
|
+
attr_accessor created_at: ::Time
|
1089
1093
|
SENSITIVE: []
|
1090
1094
|
end
|
1091
1095
|
|
1092
1096
|
class ResourceGatewaySummary
|
1093
|
-
attr_accessor arn: ::String
|
1094
|
-
attr_accessor created_at: ::Time
|
1095
|
-
attr_accessor id: ::String
|
1096
|
-
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
1097
|
-
attr_accessor last_updated_at: ::Time
|
1098
1097
|
attr_accessor name: ::String
|
1099
|
-
attr_accessor
|
1098
|
+
attr_accessor id: ::String
|
1099
|
+
attr_accessor arn: ::String
|
1100
1100
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
1101
|
-
attr_accessor subnet_ids: ::Array[::String]
|
1102
1101
|
attr_accessor vpc_identifier: ::String
|
1102
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1103
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1104
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
1105
|
+
attr_accessor ipv4_addresses_per_eni: ::Integer
|
1106
|
+
attr_accessor created_at: ::Time
|
1107
|
+
attr_accessor last_updated_at: ::Time
|
1103
1108
|
SENSITIVE: []
|
1104
1109
|
end
|
1105
1110
|
|
@@ -1111,15 +1116,15 @@ module Aws::VPCLattice
|
|
1111
1116
|
end
|
1112
1117
|
|
1113
1118
|
class RuleAction
|
1114
|
-
attr_accessor fixed_response: Types::FixedResponseAction
|
1115
1119
|
attr_accessor forward: Types::ForwardAction
|
1120
|
+
attr_accessor fixed_response: Types::FixedResponseAction
|
1116
1121
|
attr_accessor unknown: untyped
|
1117
1122
|
SENSITIVE: []
|
1118
1123
|
|
1119
|
-
class FixedResponse < RuleAction
|
1120
|
-
end
|
1121
1124
|
class Forward < RuleAction
|
1122
1125
|
end
|
1126
|
+
class FixedResponse < RuleAction
|
1127
|
+
end
|
1123
1128
|
class Unknown < RuleAction
|
1124
1129
|
end
|
1125
1130
|
end
|
@@ -1137,131 +1142,131 @@ module Aws::VPCLattice
|
|
1137
1142
|
|
1138
1143
|
class RuleSummary
|
1139
1144
|
attr_accessor arn: ::String
|
1140
|
-
attr_accessor created_at: ::Time
|
1141
1145
|
attr_accessor id: ::String
|
1142
|
-
attr_accessor is_default: bool
|
1143
|
-
attr_accessor last_updated_at: ::Time
|
1144
1146
|
attr_accessor name: ::String
|
1147
|
+
attr_accessor is_default: bool
|
1145
1148
|
attr_accessor priority: ::Integer
|
1149
|
+
attr_accessor created_at: ::Time
|
1150
|
+
attr_accessor last_updated_at: ::Time
|
1146
1151
|
SENSITIVE: []
|
1147
1152
|
end
|
1148
1153
|
|
1149
1154
|
class RuleUpdate
|
1150
|
-
attr_accessor
|
1155
|
+
attr_accessor rule_identifier: ::String
|
1151
1156
|
attr_accessor match: Types::RuleMatch
|
1152
1157
|
attr_accessor priority: ::Integer
|
1153
|
-
attr_accessor
|
1158
|
+
attr_accessor action: Types::RuleAction
|
1154
1159
|
SENSITIVE: []
|
1155
1160
|
end
|
1156
1161
|
|
1157
1162
|
class RuleUpdateFailure
|
1163
|
+
attr_accessor rule_identifier: ::String
|
1158
1164
|
attr_accessor failure_code: ::String
|
1159
1165
|
attr_accessor failure_message: ::String
|
1160
|
-
attr_accessor rule_identifier: ::String
|
1161
1166
|
SENSITIVE: []
|
1162
1167
|
end
|
1163
1168
|
|
1164
1169
|
class RuleUpdateSuccess
|
1165
|
-
attr_accessor action: Types::RuleAction
|
1166
1170
|
attr_accessor arn: ::String
|
1167
1171
|
attr_accessor id: ::String
|
1172
|
+
attr_accessor name: ::String
|
1168
1173
|
attr_accessor is_default: bool
|
1169
1174
|
attr_accessor match: Types::RuleMatch
|
1170
|
-
attr_accessor name: ::String
|
1171
1175
|
attr_accessor priority: ::Integer
|
1176
|
+
attr_accessor action: Types::RuleAction
|
1172
1177
|
SENSITIVE: []
|
1173
1178
|
end
|
1174
1179
|
|
1175
1180
|
class ServiceNetworkEndpointAssociation
|
1176
|
-
attr_accessor created_at: ::Time
|
1177
|
-
attr_accessor id: ::String
|
1178
|
-
attr_accessor service_network_arn: ::String
|
1179
|
-
attr_accessor state: ::String
|
1180
1181
|
attr_accessor vpc_endpoint_id: ::String
|
1181
|
-
attr_accessor vpc_endpoint_owner_id: ::String
|
1182
1182
|
attr_accessor vpc_id: ::String
|
1183
|
+
attr_accessor vpc_endpoint_owner_id: ::String
|
1184
|
+
attr_accessor id: ::String
|
1185
|
+
attr_accessor state: ::String
|
1186
|
+
attr_accessor service_network_arn: ::String
|
1187
|
+
attr_accessor created_at: ::Time
|
1183
1188
|
SENSITIVE: []
|
1184
1189
|
end
|
1185
1190
|
|
1186
1191
|
class ServiceNetworkResourceAssociationSummary
|
1192
|
+
attr_accessor id: ::String
|
1187
1193
|
attr_accessor arn: ::String
|
1188
|
-
attr_accessor
|
1194
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
1189
1195
|
attr_accessor created_by: ::String
|
1190
|
-
attr_accessor
|
1191
|
-
attr_accessor failure_code: ::String
|
1192
|
-
attr_accessor id: ::String
|
1193
|
-
attr_accessor is_managed_association: bool
|
1194
|
-
attr_accessor private_dns_entry: Types::DnsEntry
|
1195
|
-
attr_accessor resource_configuration_arn: ::String
|
1196
|
+
attr_accessor created_at: ::Time
|
1196
1197
|
attr_accessor resource_configuration_id: ::String
|
1198
|
+
attr_accessor resource_configuration_arn: ::String
|
1197
1199
|
attr_accessor resource_configuration_name: ::String
|
1198
|
-
attr_accessor service_network_arn: ::String
|
1199
1200
|
attr_accessor service_network_id: ::String
|
1201
|
+
attr_accessor service_network_arn: ::String
|
1200
1202
|
attr_accessor service_network_name: ::String
|
1201
|
-
attr_accessor
|
1203
|
+
attr_accessor dns_entry: Types::DnsEntry
|
1204
|
+
attr_accessor private_dns_entry: Types::DnsEntry
|
1205
|
+
attr_accessor is_managed_association: bool
|
1206
|
+
attr_accessor failure_code: ::String
|
1202
1207
|
SENSITIVE: []
|
1203
1208
|
end
|
1204
1209
|
|
1205
1210
|
class ServiceNetworkServiceAssociationSummary
|
1211
|
+
attr_accessor id: ::String
|
1212
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
1206
1213
|
attr_accessor arn: ::String
|
1207
|
-
attr_accessor created_at: ::Time
|
1208
1214
|
attr_accessor created_by: ::String
|
1209
|
-
attr_accessor
|
1210
|
-
attr_accessor dns_entry: Types::DnsEntry
|
1211
|
-
attr_accessor id: ::String
|
1212
|
-
attr_accessor service_arn: ::String
|
1215
|
+
attr_accessor created_at: ::Time
|
1213
1216
|
attr_accessor service_id: ::String
|
1214
1217
|
attr_accessor service_name: ::String
|
1215
|
-
attr_accessor
|
1218
|
+
attr_accessor service_arn: ::String
|
1216
1219
|
attr_accessor service_network_id: ::String
|
1217
1220
|
attr_accessor service_network_name: ::String
|
1218
|
-
attr_accessor
|
1221
|
+
attr_accessor service_network_arn: ::String
|
1222
|
+
attr_accessor dns_entry: Types::DnsEntry
|
1223
|
+
attr_accessor custom_domain_name: ::String
|
1219
1224
|
SENSITIVE: []
|
1220
1225
|
end
|
1221
1226
|
|
1222
1227
|
class ServiceNetworkSummary
|
1228
|
+
attr_accessor id: ::String
|
1229
|
+
attr_accessor name: ::String
|
1223
1230
|
attr_accessor arn: ::String
|
1224
1231
|
attr_accessor created_at: ::Time
|
1225
|
-
attr_accessor id: ::String
|
1226
1232
|
attr_accessor last_updated_at: ::Time
|
1227
|
-
attr_accessor name: ::String
|
1228
|
-
attr_accessor number_of_associated_resource_configurations: ::Integer
|
1229
|
-
attr_accessor number_of_associated_services: ::Integer
|
1230
1233
|
attr_accessor number_of_associated_vp_cs: ::Integer
|
1234
|
+
attr_accessor number_of_associated_services: ::Integer
|
1235
|
+
attr_accessor number_of_associated_resource_configurations: ::Integer
|
1231
1236
|
SENSITIVE: []
|
1232
1237
|
end
|
1233
1238
|
|
1234
1239
|
class ServiceNetworkVpcAssociationSummary
|
1240
|
+
attr_accessor id: ::String
|
1235
1241
|
attr_accessor arn: ::String
|
1236
|
-
attr_accessor
|
1242
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
|
1237
1243
|
attr_accessor created_by: ::String
|
1238
|
-
attr_accessor
|
1239
|
-
attr_accessor last_updated_at: ::Time
|
1240
|
-
attr_accessor service_network_arn: ::String
|
1244
|
+
attr_accessor created_at: ::Time
|
1241
1245
|
attr_accessor service_network_id: ::String
|
1242
1246
|
attr_accessor service_network_name: ::String
|
1243
|
-
attr_accessor
|
1247
|
+
attr_accessor service_network_arn: ::String
|
1244
1248
|
attr_accessor vpc_id: ::String
|
1249
|
+
attr_accessor last_updated_at: ::Time
|
1245
1250
|
SENSITIVE: []
|
1246
1251
|
end
|
1247
1252
|
|
1248
1253
|
class ServiceQuotaExceededException
|
1249
1254
|
attr_accessor message: ::String
|
1250
|
-
attr_accessor quota_code: ::String
|
1251
1255
|
attr_accessor resource_id: ::String
|
1252
1256
|
attr_accessor resource_type: ::String
|
1253
1257
|
attr_accessor service_code: ::String
|
1258
|
+
attr_accessor quota_code: ::String
|
1254
1259
|
SENSITIVE: []
|
1255
1260
|
end
|
1256
1261
|
|
1257
1262
|
class ServiceSummary
|
1263
|
+
attr_accessor id: ::String
|
1264
|
+
attr_accessor name: ::String
|
1258
1265
|
attr_accessor arn: ::String
|
1259
1266
|
attr_accessor created_at: ::Time
|
1260
|
-
attr_accessor custom_domain_name: ::String
|
1261
|
-
attr_accessor dns_entry: Types::DnsEntry
|
1262
|
-
attr_accessor id: ::String
|
1263
1267
|
attr_accessor last_updated_at: ::Time
|
1264
|
-
attr_accessor
|
1268
|
+
attr_accessor dns_entry: Types::DnsEntry
|
1269
|
+
attr_accessor custom_domain_name: ::String
|
1265
1270
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
1266
1271
|
SENSITIVE: []
|
1267
1272
|
end
|
@@ -1287,54 +1292,54 @@ module Aws::VPCLattice
|
|
1287
1292
|
end
|
1288
1293
|
|
1289
1294
|
class TargetFailure
|
1290
|
-
attr_accessor failure_code: ::String
|
1291
|
-
attr_accessor failure_message: ::String
|
1292
1295
|
attr_accessor id: ::String
|
1293
1296
|
attr_accessor port: ::Integer
|
1297
|
+
attr_accessor failure_code: ::String
|
1298
|
+
attr_accessor failure_message: ::String
|
1294
1299
|
SENSITIVE: []
|
1295
1300
|
end
|
1296
1301
|
|
1297
1302
|
class TargetGroupConfig
|
1298
|
-
attr_accessor health_check: Types::HealthCheckConfig
|
1299
|
-
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
1300
|
-
attr_accessor lambda_event_structure_version: ("V1" | "V2")
|
1301
1303
|
attr_accessor port: ::Integer
|
1302
1304
|
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP")
|
1303
1305
|
attr_accessor protocol_version: ("HTTP1" | "HTTP2" | "GRPC")
|
1306
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
1304
1307
|
attr_accessor vpc_identifier: ::String
|
1308
|
+
attr_accessor health_check: Types::HealthCheckConfig
|
1309
|
+
attr_accessor lambda_event_structure_version: ("V1" | "V2")
|
1305
1310
|
SENSITIVE: []
|
1306
1311
|
end
|
1307
1312
|
|
1308
1313
|
class TargetGroupSummary
|
1309
|
-
attr_accessor arn: ::String
|
1310
|
-
attr_accessor created_at: ::Time
|
1311
1314
|
attr_accessor id: ::String
|
1312
|
-
attr_accessor
|
1313
|
-
attr_accessor lambda_event_structure_version: ("V1" | "V2")
|
1314
|
-
attr_accessor last_updated_at: ::Time
|
1315
|
+
attr_accessor arn: ::String
|
1315
1316
|
attr_accessor name: ::String
|
1317
|
+
attr_accessor type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
1318
|
+
attr_accessor created_at: ::Time
|
1316
1319
|
attr_accessor port: ::Integer
|
1317
1320
|
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP")
|
1318
|
-
attr_accessor
|
1319
|
-
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
1320
|
-
attr_accessor type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
1321
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
1321
1322
|
attr_accessor vpc_identifier: ::String
|
1323
|
+
attr_accessor last_updated_at: ::Time
|
1324
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
1325
|
+
attr_accessor service_arns: ::Array[::String]
|
1326
|
+
attr_accessor lambda_event_structure_version: ("V1" | "V2")
|
1322
1327
|
SENSITIVE: []
|
1323
1328
|
end
|
1324
1329
|
|
1325
1330
|
class TargetSummary
|
1326
1331
|
attr_accessor id: ::String
|
1327
1332
|
attr_accessor port: ::Integer
|
1328
|
-
attr_accessor reason_code: ::String
|
1329
1333
|
attr_accessor status: ("DRAINING" | "UNAVAILABLE" | "HEALTHY" | "UNHEALTHY" | "INITIAL" | "UNUSED")
|
1334
|
+
attr_accessor reason_code: ::String
|
1330
1335
|
SENSITIVE: []
|
1331
1336
|
end
|
1332
1337
|
|
1333
1338
|
class ThrottlingException
|
1334
1339
|
attr_accessor message: ::String
|
1340
|
+
attr_accessor service_code: ::String
|
1335
1341
|
attr_accessor quota_code: ::String
|
1336
1342
|
attr_accessor retry_after_seconds: ::Integer
|
1337
|
-
attr_accessor service_code: ::String
|
1338
1343
|
SENSITIVE: []
|
1339
1344
|
end
|
1340
1345
|
|
@@ -1354,53 +1359,53 @@ module Aws::VPCLattice
|
|
1354
1359
|
end
|
1355
1360
|
|
1356
1361
|
class UpdateAccessLogSubscriptionResponse
|
1357
|
-
attr_accessor arn: ::String
|
1358
|
-
attr_accessor destination_arn: ::String
|
1359
1362
|
attr_accessor id: ::String
|
1360
|
-
attr_accessor
|
1363
|
+
attr_accessor arn: ::String
|
1361
1364
|
attr_accessor resource_id: ::String
|
1365
|
+
attr_accessor resource_arn: ::String
|
1366
|
+
attr_accessor destination_arn: ::String
|
1362
1367
|
SENSITIVE: []
|
1363
1368
|
end
|
1364
1369
|
|
1365
1370
|
class UpdateListenerRequest
|
1366
|
-
attr_accessor default_action: Types::RuleAction
|
1367
|
-
attr_accessor listener_identifier: ::String
|
1368
1371
|
attr_accessor service_identifier: ::String
|
1372
|
+
attr_accessor listener_identifier: ::String
|
1373
|
+
attr_accessor default_action: Types::RuleAction
|
1369
1374
|
SENSITIVE: []
|
1370
1375
|
end
|
1371
1376
|
|
1372
1377
|
class UpdateListenerResponse
|
1373
1378
|
attr_accessor arn: ::String
|
1374
|
-
attr_accessor default_action: Types::RuleAction
|
1375
1379
|
attr_accessor id: ::String
|
1376
1380
|
attr_accessor name: ::String
|
1377
|
-
attr_accessor port: ::Integer
|
1378
1381
|
attr_accessor protocol: ("HTTP" | "HTTPS" | "TLS_PASSTHROUGH")
|
1382
|
+
attr_accessor port: ::Integer
|
1379
1383
|
attr_accessor service_arn: ::String
|
1380
1384
|
attr_accessor service_id: ::String
|
1385
|
+
attr_accessor default_action: Types::RuleAction
|
1381
1386
|
SENSITIVE: []
|
1382
1387
|
end
|
1383
1388
|
|
1384
1389
|
class UpdateResourceConfigurationRequest
|
1390
|
+
attr_accessor resource_configuration_identifier: ::String
|
1391
|
+
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
1385
1392
|
attr_accessor allow_association_to_shareable_service_network: bool
|
1386
1393
|
attr_accessor port_ranges: ::Array[::String]
|
1387
|
-
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
1388
|
-
attr_accessor resource_configuration_identifier: ::String
|
1389
1394
|
SENSITIVE: []
|
1390
1395
|
end
|
1391
1396
|
|
1392
1397
|
class UpdateResourceConfigurationResponse
|
1393
|
-
attr_accessor allow_association_to_shareable_service_network: bool
|
1394
|
-
attr_accessor arn: ::String
|
1395
1398
|
attr_accessor id: ::String
|
1396
1399
|
attr_accessor name: ::String
|
1400
|
+
attr_accessor arn: ::String
|
1401
|
+
attr_accessor resource_gateway_id: ::String
|
1402
|
+
attr_accessor resource_configuration_group_id: ::String
|
1403
|
+
attr_accessor type: ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
1397
1404
|
attr_accessor port_ranges: ::Array[::String]
|
1405
|
+
attr_accessor allow_association_to_shareable_service_network: bool
|
1398
1406
|
attr_accessor protocol: ("TCP")
|
1399
|
-
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
1400
|
-
attr_accessor resource_configuration_group_id: ::String
|
1401
|
-
attr_accessor resource_gateway_id: ::String
|
1402
1407
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
1403
|
-
attr_accessor
|
1408
|
+
attr_accessor resource_configuration_definition: Types::ResourceConfigurationDefinition
|
1404
1409
|
SENSITIVE: []
|
1405
1410
|
end
|
1406
1411
|
|
@@ -1411,110 +1416,110 @@ module Aws::VPCLattice
|
|
1411
1416
|
end
|
1412
1417
|
|
1413
1418
|
class UpdateResourceGatewayResponse
|
1414
|
-
attr_accessor arn: ::String
|
1415
|
-
attr_accessor id: ::String
|
1416
|
-
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
1417
1419
|
attr_accessor name: ::String
|
1418
|
-
attr_accessor
|
1420
|
+
attr_accessor id: ::String
|
1421
|
+
attr_accessor arn: ::String
|
1419
1422
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
1420
|
-
attr_accessor subnet_ids: ::Array[::String]
|
1421
1423
|
attr_accessor vpc_id: ::String
|
1424
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1425
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1426
|
+
attr_accessor ip_address_type: ("IPV4" | "IPV6")
|
1422
1427
|
SENSITIVE: []
|
1423
1428
|
end
|
1424
1429
|
|
1425
1430
|
class UpdateRuleRequest
|
1426
|
-
attr_accessor
|
1431
|
+
attr_accessor service_identifier: ::String
|
1427
1432
|
attr_accessor listener_identifier: ::String
|
1433
|
+
attr_accessor rule_identifier: ::String
|
1428
1434
|
attr_accessor match: Types::RuleMatch
|
1429
1435
|
attr_accessor priority: ::Integer
|
1430
|
-
attr_accessor
|
1431
|
-
attr_accessor service_identifier: ::String
|
1436
|
+
attr_accessor action: Types::RuleAction
|
1432
1437
|
SENSITIVE: []
|
1433
1438
|
end
|
1434
1439
|
|
1435
1440
|
class UpdateRuleResponse
|
1436
|
-
attr_accessor action: Types::RuleAction
|
1437
1441
|
attr_accessor arn: ::String
|
1438
1442
|
attr_accessor id: ::String
|
1443
|
+
attr_accessor name: ::String
|
1439
1444
|
attr_accessor is_default: bool
|
1440
1445
|
attr_accessor match: Types::RuleMatch
|
1441
|
-
attr_accessor name: ::String
|
1442
1446
|
attr_accessor priority: ::Integer
|
1447
|
+
attr_accessor action: Types::RuleAction
|
1443
1448
|
SENSITIVE: []
|
1444
1449
|
end
|
1445
1450
|
|
1446
1451
|
class UpdateServiceNetworkRequest
|
1447
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1448
1452
|
attr_accessor service_network_identifier: ::String
|
1453
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1449
1454
|
SENSITIVE: []
|
1450
1455
|
end
|
1451
1456
|
|
1452
1457
|
class UpdateServiceNetworkResponse
|
1453
|
-
attr_accessor arn: ::String
|
1454
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1455
1458
|
attr_accessor id: ::String
|
1456
1459
|
attr_accessor name: ::String
|
1460
|
+
attr_accessor arn: ::String
|
1461
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1457
1462
|
SENSITIVE: []
|
1458
1463
|
end
|
1459
1464
|
|
1460
1465
|
class UpdateServiceNetworkVpcAssociationRequest
|
1461
|
-
attr_accessor security_group_ids: ::Array[::String]
|
1462
1466
|
attr_accessor service_network_vpc_association_identifier: ::String
|
1467
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1463
1468
|
SENSITIVE: []
|
1464
1469
|
end
|
1465
1470
|
|
1466
1471
|
class UpdateServiceNetworkVpcAssociationResponse
|
1472
|
+
attr_accessor id: ::String
|
1467
1473
|
attr_accessor arn: ::String
|
1474
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
|
1468
1475
|
attr_accessor created_by: ::String
|
1469
|
-
attr_accessor id: ::String
|
1470
1476
|
attr_accessor security_group_ids: ::Array[::String]
|
1471
|
-
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
|
1472
1477
|
SENSITIVE: []
|
1473
1478
|
end
|
1474
1479
|
|
1475
1480
|
class UpdateServiceRequest
|
1476
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1477
|
-
attr_accessor certificate_arn: ::String
|
1478
1481
|
attr_accessor service_identifier: ::String
|
1482
|
+
attr_accessor certificate_arn: ::String
|
1483
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1479
1484
|
SENSITIVE: []
|
1480
1485
|
end
|
1481
1486
|
|
1482
1487
|
class UpdateServiceResponse
|
1483
|
-
attr_accessor arn: ::String
|
1484
|
-
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1485
|
-
attr_accessor certificate_arn: ::String
|
1486
|
-
attr_accessor custom_domain_name: ::String
|
1487
1488
|
attr_accessor id: ::String
|
1489
|
+
attr_accessor arn: ::String
|
1488
1490
|
attr_accessor name: ::String
|
1491
|
+
attr_accessor custom_domain_name: ::String
|
1492
|
+
attr_accessor certificate_arn: ::String
|
1493
|
+
attr_accessor auth_type: ("NONE" | "AWS_IAM")
|
1489
1494
|
SENSITIVE: []
|
1490
1495
|
end
|
1491
1496
|
|
1492
1497
|
class UpdateTargetGroupRequest
|
1493
|
-
attr_accessor health_check: Types::HealthCheckConfig
|
1494
1498
|
attr_accessor target_group_identifier: ::String
|
1499
|
+
attr_accessor health_check: Types::HealthCheckConfig
|
1495
1500
|
SENSITIVE: []
|
1496
1501
|
end
|
1497
1502
|
|
1498
1503
|
class UpdateTargetGroupResponse
|
1499
|
-
attr_accessor arn: ::String
|
1500
|
-
attr_accessor config: Types::TargetGroupConfig
|
1501
1504
|
attr_accessor id: ::String
|
1505
|
+
attr_accessor arn: ::String
|
1502
1506
|
attr_accessor name: ::String
|
1503
|
-
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
1504
1507
|
attr_accessor type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
|
1508
|
+
attr_accessor config: Types::TargetGroupConfig
|
1509
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
1505
1510
|
SENSITIVE: []
|
1506
1511
|
end
|
1507
1512
|
|
1508
1513
|
class ValidationException
|
1509
|
-
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1510
1514
|
attr_accessor message: ::String
|
1511
1515
|
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
1516
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1512
1517
|
SENSITIVE: []
|
1513
1518
|
end
|
1514
1519
|
|
1515
1520
|
class ValidationExceptionField
|
1516
|
-
attr_accessor message: ::String
|
1517
1521
|
attr_accessor name: ::String
|
1522
|
+
attr_accessor message: ::String
|
1518
1523
|
SENSITIVE: []
|
1519
1524
|
end
|
1520
1525
|
|