aws-sdk-route53profiles 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-route53profiles/client.rb +1152 -0
- data/lib/aws-sdk-route53profiles/client_api.rb +554 -0
- data/lib/aws-sdk-route53profiles/customizations.rb +0 -0
- data/lib/aws-sdk-route53profiles/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-route53profiles/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-route53profiles/endpoints.rb +240 -0
- data/lib/aws-sdk-route53profiles/errors.rb +218 -0
- data/lib/aws-sdk-route53profiles/plugins/endpoints.rb +102 -0
- data/lib/aws-sdk-route53profiles/resource.rb +26 -0
- data/lib/aws-sdk-route53profiles/types.rb +964 -0
- data/lib/aws-sdk-route53profiles.rb +57 -0
- data/sig/client.rbs +269 -0
- data/sig/errors.rbs +50 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +301 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
@@ -0,0 +1,964 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::Route53Profiles
|
11
|
+
module Types
|
12
|
+
|
13
|
+
# The current account doesn't have the IAM permissions required to
|
14
|
+
# perform the specified operation.
|
15
|
+
#
|
16
|
+
# @!attribute [rw] message
|
17
|
+
# @return [String]
|
18
|
+
#
|
19
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/AccessDeniedException AWS API Documentation
|
20
|
+
#
|
21
|
+
class AccessDeniedException < Struct.new(
|
22
|
+
:message)
|
23
|
+
SENSITIVE = []
|
24
|
+
include Aws::Structure
|
25
|
+
end
|
26
|
+
|
27
|
+
# @!attribute [rw] name
|
28
|
+
# A name for the association.
|
29
|
+
# @return [String]
|
30
|
+
#
|
31
|
+
# @!attribute [rw] profile_id
|
32
|
+
# ID of the Profile.
|
33
|
+
# @return [String]
|
34
|
+
#
|
35
|
+
# @!attribute [rw] resource_id
|
36
|
+
# The ID of the VPC.
|
37
|
+
# @return [String]
|
38
|
+
#
|
39
|
+
# @!attribute [rw] tags
|
40
|
+
# A list of the tag keys and values that you want to identify the
|
41
|
+
# Profile association.
|
42
|
+
# @return [Array<Types::Tag>]
|
43
|
+
#
|
44
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/AssociateProfileRequest AWS API Documentation
|
45
|
+
#
|
46
|
+
class AssociateProfileRequest < Struct.new(
|
47
|
+
:name,
|
48
|
+
:profile_id,
|
49
|
+
:resource_id,
|
50
|
+
:tags)
|
51
|
+
SENSITIVE = []
|
52
|
+
include Aws::Structure
|
53
|
+
end
|
54
|
+
|
55
|
+
# @!attribute [rw] profile_association
|
56
|
+
# The association that you just created. The association has an ID
|
57
|
+
# that you can use to identify it in other requests, like update and
|
58
|
+
# delete.
|
59
|
+
# @return [Types::ProfileAssociation]
|
60
|
+
#
|
61
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/AssociateProfileResponse AWS API Documentation
|
62
|
+
#
|
63
|
+
class AssociateProfileResponse < Struct.new(
|
64
|
+
:profile_association)
|
65
|
+
SENSITIVE = []
|
66
|
+
include Aws::Structure
|
67
|
+
end
|
68
|
+
|
69
|
+
# @!attribute [rw] name
|
70
|
+
# Name for the resource association.
|
71
|
+
# @return [String]
|
72
|
+
#
|
73
|
+
# @!attribute [rw] profile_id
|
74
|
+
# ID of the Profile.
|
75
|
+
# @return [String]
|
76
|
+
#
|
77
|
+
# @!attribute [rw] resource_arn
|
78
|
+
# Amazon resource number, ARN, of the DNS resource.
|
79
|
+
# @return [String]
|
80
|
+
#
|
81
|
+
# @!attribute [rw] resource_properties
|
82
|
+
# If you are adding a DNS Firewall rule group, include also a priority
|
83
|
+
# in this format:
|
84
|
+
#
|
85
|
+
# `Key=FirewallRuleGroupPriority,Value=100`
|
86
|
+
# @return [String]
|
87
|
+
#
|
88
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/AssociateResourceToProfileRequest AWS API Documentation
|
89
|
+
#
|
90
|
+
class AssociateResourceToProfileRequest < Struct.new(
|
91
|
+
:name,
|
92
|
+
:profile_id,
|
93
|
+
:resource_arn,
|
94
|
+
:resource_properties)
|
95
|
+
SENSITIVE = []
|
96
|
+
include Aws::Structure
|
97
|
+
end
|
98
|
+
|
99
|
+
# @!attribute [rw] profile_resource_association
|
100
|
+
# Infromation about the `AssociateResourceToProfile`, including a
|
101
|
+
# status message.
|
102
|
+
# @return [Types::ProfileResourceAssociation]
|
103
|
+
#
|
104
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/AssociateResourceToProfileResponse AWS API Documentation
|
105
|
+
#
|
106
|
+
class AssociateResourceToProfileResponse < Struct.new(
|
107
|
+
:profile_resource_association)
|
108
|
+
SENSITIVE = []
|
109
|
+
include Aws::Structure
|
110
|
+
end
|
111
|
+
|
112
|
+
# The request you submitted conflicts with an existing request.
|
113
|
+
#
|
114
|
+
# @!attribute [rw] message
|
115
|
+
# @return [String]
|
116
|
+
#
|
117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ConflictException AWS API Documentation
|
118
|
+
#
|
119
|
+
class ConflictException < Struct.new(
|
120
|
+
:message)
|
121
|
+
SENSITIVE = []
|
122
|
+
include Aws::Structure
|
123
|
+
end
|
124
|
+
|
125
|
+
# @!attribute [rw] client_token
|
126
|
+
# `ClientToken` is an idempotency token that ensures a call to
|
127
|
+
# `CreateProfile` completes only once. You choose the value to pass.
|
128
|
+
# For example, an issue might prevent you from getting a response from
|
129
|
+
# `CreateProfile`. In this case, safely retry your call to
|
130
|
+
# `CreateProfile` by using the same `CreateProfile` parameter value.
|
131
|
+
#
|
132
|
+
# **A suitable default value is auto-generated.** You should normally
|
133
|
+
# not need to pass this option.
|
134
|
+
# @return [String]
|
135
|
+
#
|
136
|
+
# @!attribute [rw] name
|
137
|
+
# A name for the Profile.
|
138
|
+
# @return [String]
|
139
|
+
#
|
140
|
+
# @!attribute [rw] tags
|
141
|
+
# A list of the tag keys and values that you want to associate with
|
142
|
+
# the Route 53 Profile.
|
143
|
+
# @return [Array<Types::Tag>]
|
144
|
+
#
|
145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/CreateProfileRequest AWS API Documentation
|
146
|
+
#
|
147
|
+
class CreateProfileRequest < Struct.new(
|
148
|
+
:client_token,
|
149
|
+
:name,
|
150
|
+
:tags)
|
151
|
+
SENSITIVE = []
|
152
|
+
include Aws::Structure
|
153
|
+
end
|
154
|
+
|
155
|
+
# @!attribute [rw] profile
|
156
|
+
# The Profile that you just created.
|
157
|
+
# @return [Types::Profile]
|
158
|
+
#
|
159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/CreateProfileResponse AWS API Documentation
|
160
|
+
#
|
161
|
+
class CreateProfileResponse < Struct.new(
|
162
|
+
:profile)
|
163
|
+
SENSITIVE = []
|
164
|
+
include Aws::Structure
|
165
|
+
end
|
166
|
+
|
167
|
+
# @!attribute [rw] profile_id
|
168
|
+
# The ID of the Profile that you want to delete.
|
169
|
+
# @return [String]
|
170
|
+
#
|
171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/DeleteProfileRequest AWS API Documentation
|
172
|
+
#
|
173
|
+
class DeleteProfileRequest < Struct.new(
|
174
|
+
:profile_id)
|
175
|
+
SENSITIVE = []
|
176
|
+
include Aws::Structure
|
177
|
+
end
|
178
|
+
|
179
|
+
# @!attribute [rw] profile
|
180
|
+
# Information about the `DeleteProfile` request, including the status
|
181
|
+
# of the request.
|
182
|
+
# @return [Types::Profile]
|
183
|
+
#
|
184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/DeleteProfileResponse AWS API Documentation
|
185
|
+
#
|
186
|
+
class DeleteProfileResponse < Struct.new(
|
187
|
+
:profile)
|
188
|
+
SENSITIVE = []
|
189
|
+
include Aws::Structure
|
190
|
+
end
|
191
|
+
|
192
|
+
# @!attribute [rw] profile_id
|
193
|
+
# ID of the Profile.
|
194
|
+
# @return [String]
|
195
|
+
#
|
196
|
+
# @!attribute [rw] resource_id
|
197
|
+
# The ID of the VPC.
|
198
|
+
# @return [String]
|
199
|
+
#
|
200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/DisassociateProfileRequest AWS API Documentation
|
201
|
+
#
|
202
|
+
class DisassociateProfileRequest < Struct.new(
|
203
|
+
:profile_id,
|
204
|
+
:resource_id)
|
205
|
+
SENSITIVE = []
|
206
|
+
include Aws::Structure
|
207
|
+
end
|
208
|
+
|
209
|
+
# @!attribute [rw] profile_association
|
210
|
+
# Information about the `DisassociateProfile` request.
|
211
|
+
# @return [Types::ProfileAssociation]
|
212
|
+
#
|
213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/DisassociateProfileResponse AWS API Documentation
|
214
|
+
#
|
215
|
+
class DisassociateProfileResponse < Struct.new(
|
216
|
+
:profile_association)
|
217
|
+
SENSITIVE = []
|
218
|
+
include Aws::Structure
|
219
|
+
end
|
220
|
+
|
221
|
+
# @!attribute [rw] profile_id
|
222
|
+
# The ID of the Profile.
|
223
|
+
# @return [String]
|
224
|
+
#
|
225
|
+
# @!attribute [rw] resource_arn
|
226
|
+
# The Amazon Resource Name (ARN) of the resource.
|
227
|
+
# @return [String]
|
228
|
+
#
|
229
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/DisassociateResourceFromProfileRequest AWS API Documentation
|
230
|
+
#
|
231
|
+
class DisassociateResourceFromProfileRequest < Struct.new(
|
232
|
+
:profile_id,
|
233
|
+
:resource_arn)
|
234
|
+
SENSITIVE = []
|
235
|
+
include Aws::Structure
|
236
|
+
end
|
237
|
+
|
238
|
+
# @!attribute [rw] profile_resource_association
|
239
|
+
# Information about the `DisassociateResourceFromProfile` request,
|
240
|
+
# including the status of the request.
|
241
|
+
# @return [Types::ProfileResourceAssociation]
|
242
|
+
#
|
243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/DisassociateResourceFromProfileResponse AWS API Documentation
|
244
|
+
#
|
245
|
+
class DisassociateResourceFromProfileResponse < Struct.new(
|
246
|
+
:profile_resource_association)
|
247
|
+
SENSITIVE = []
|
248
|
+
include Aws::Structure
|
249
|
+
end
|
250
|
+
|
251
|
+
# @!attribute [rw] profile_association_id
|
252
|
+
# The identifier of the association you want to get information about.
|
253
|
+
# @return [String]
|
254
|
+
#
|
255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/GetProfileAssociationRequest AWS API Documentation
|
256
|
+
#
|
257
|
+
class GetProfileAssociationRequest < Struct.new(
|
258
|
+
:profile_association_id)
|
259
|
+
SENSITIVE = []
|
260
|
+
include Aws::Structure
|
261
|
+
end
|
262
|
+
|
263
|
+
# @!attribute [rw] profile_association
|
264
|
+
# Information about the Profile association that you specified in a
|
265
|
+
# `GetProfileAssociation` request.
|
266
|
+
# @return [Types::ProfileAssociation]
|
267
|
+
#
|
268
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/GetProfileAssociationResponse AWS API Documentation
|
269
|
+
#
|
270
|
+
class GetProfileAssociationResponse < Struct.new(
|
271
|
+
:profile_association)
|
272
|
+
SENSITIVE = []
|
273
|
+
include Aws::Structure
|
274
|
+
end
|
275
|
+
|
276
|
+
# @!attribute [rw] profile_id
|
277
|
+
# ID of the Profile.
|
278
|
+
# @return [String]
|
279
|
+
#
|
280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/GetProfileRequest AWS API Documentation
|
281
|
+
#
|
282
|
+
class GetProfileRequest < Struct.new(
|
283
|
+
:profile_id)
|
284
|
+
SENSITIVE = []
|
285
|
+
include Aws::Structure
|
286
|
+
end
|
287
|
+
|
288
|
+
# @!attribute [rw] profile_resource_association_id
|
289
|
+
# The ID of the profile resource association that you want to get
|
290
|
+
# information about.
|
291
|
+
# @return [String]
|
292
|
+
#
|
293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/GetProfileResourceAssociationRequest AWS API Documentation
|
294
|
+
#
|
295
|
+
class GetProfileResourceAssociationRequest < Struct.new(
|
296
|
+
:profile_resource_association_id)
|
297
|
+
SENSITIVE = []
|
298
|
+
include Aws::Structure
|
299
|
+
end
|
300
|
+
|
301
|
+
# @!attribute [rw] profile_resource_association
|
302
|
+
# Information about the Profile resource association that you
|
303
|
+
# specified in a `GetProfileResourceAssociation` request.
|
304
|
+
# @return [Types::ProfileResourceAssociation]
|
305
|
+
#
|
306
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/GetProfileResourceAssociationResponse AWS API Documentation
|
307
|
+
#
|
308
|
+
class GetProfileResourceAssociationResponse < Struct.new(
|
309
|
+
:profile_resource_association)
|
310
|
+
SENSITIVE = []
|
311
|
+
include Aws::Structure
|
312
|
+
end
|
313
|
+
|
314
|
+
# @!attribute [rw] profile
|
315
|
+
# Information about the Profile, including the status of the Profile.
|
316
|
+
# @return [Types::Profile]
|
317
|
+
#
|
318
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/GetProfileResponse AWS API Documentation
|
319
|
+
#
|
320
|
+
class GetProfileResponse < Struct.new(
|
321
|
+
:profile)
|
322
|
+
SENSITIVE = []
|
323
|
+
include Aws::Structure
|
324
|
+
end
|
325
|
+
|
326
|
+
# An internal server error occured. Retry your request.
|
327
|
+
#
|
328
|
+
# @!attribute [rw] message
|
329
|
+
# @return [String]
|
330
|
+
#
|
331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/InternalServiceErrorException AWS API Documentation
|
332
|
+
#
|
333
|
+
class InternalServiceErrorException < Struct.new(
|
334
|
+
:message)
|
335
|
+
SENSITIVE = []
|
336
|
+
include Aws::Structure
|
337
|
+
end
|
338
|
+
|
339
|
+
# The `NextToken` you provided isn;t valid.
|
340
|
+
#
|
341
|
+
# @!attribute [rw] message
|
342
|
+
# @return [String]
|
343
|
+
#
|
344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/InvalidNextTokenException AWS API Documentation
|
345
|
+
#
|
346
|
+
class InvalidNextTokenException < Struct.new(
|
347
|
+
:message)
|
348
|
+
SENSITIVE = []
|
349
|
+
include Aws::Structure
|
350
|
+
end
|
351
|
+
|
352
|
+
# One or more parameters in this request are not valid.
|
353
|
+
#
|
354
|
+
# @!attribute [rw] field_name
|
355
|
+
# The parameter field name for the invalid parameter exception.
|
356
|
+
# @return [String]
|
357
|
+
#
|
358
|
+
# @!attribute [rw] message
|
359
|
+
# @return [String]
|
360
|
+
#
|
361
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/InvalidParameterException AWS API Documentation
|
362
|
+
#
|
363
|
+
class InvalidParameterException < Struct.new(
|
364
|
+
:field_name,
|
365
|
+
:message)
|
366
|
+
SENSITIVE = []
|
367
|
+
include Aws::Structure
|
368
|
+
end
|
369
|
+
|
370
|
+
# The request caused one or more limits to be exceeded.
|
371
|
+
#
|
372
|
+
# @!attribute [rw] message
|
373
|
+
# @return [String]
|
374
|
+
#
|
375
|
+
# @!attribute [rw] resource_type
|
376
|
+
# The resource type that caused the limits to be exceeded.
|
377
|
+
# @return [String]
|
378
|
+
#
|
379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/LimitExceededException AWS API Documentation
|
380
|
+
#
|
381
|
+
class LimitExceededException < Struct.new(
|
382
|
+
:message,
|
383
|
+
:resource_type)
|
384
|
+
SENSITIVE = []
|
385
|
+
include Aws::Structure
|
386
|
+
end
|
387
|
+
|
388
|
+
# @!attribute [rw] max_results
|
389
|
+
# The maximum number of objects that you want to return for this
|
390
|
+
# request. If more objects are available, in the response, a
|
391
|
+
# `NextToken` value, which you can use in a subsequent call to get the
|
392
|
+
# next batch of objects, is provided.
|
393
|
+
#
|
394
|
+
# If you don't specify a value for `MaxResults`, up to 100 objects
|
395
|
+
# are returned.
|
396
|
+
# @return [Integer]
|
397
|
+
#
|
398
|
+
# @!attribute [rw] next_token
|
399
|
+
# For the first call to this list request, omit this value.
|
400
|
+
#
|
401
|
+
# When you request a list of objects, at most the number of objects
|
402
|
+
# specified by `MaxResults` is returned. If more objects are available
|
403
|
+
# for retrieval, a `NextToken` value is returned in the response. To
|
404
|
+
# retrieve the next batch of objects, use the token that was returned
|
405
|
+
# for the prior request in your next request.
|
406
|
+
# @return [String]
|
407
|
+
#
|
408
|
+
# @!attribute [rw] profile_id
|
409
|
+
# ID of the Profile.
|
410
|
+
# @return [String]
|
411
|
+
#
|
412
|
+
# @!attribute [rw] resource_id
|
413
|
+
# ID of the VPC.
|
414
|
+
# @return [String]
|
415
|
+
#
|
416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListProfileAssociationsRequest AWS API Documentation
|
417
|
+
#
|
418
|
+
class ListProfileAssociationsRequest < Struct.new(
|
419
|
+
:max_results,
|
420
|
+
:next_token,
|
421
|
+
:profile_id,
|
422
|
+
:resource_id)
|
423
|
+
SENSITIVE = []
|
424
|
+
include Aws::Structure
|
425
|
+
end
|
426
|
+
|
427
|
+
# @!attribute [rw] next_token
|
428
|
+
# If more than `MaxResults` profile associations match the specified
|
429
|
+
# criteria, you can submit another `ListProfileAssociations` request
|
430
|
+
# to get the next group of results. In the next request, specify the
|
431
|
+
# value of `NextToken` from the previous response.
|
432
|
+
# @return [String]
|
433
|
+
#
|
434
|
+
# @!attribute [rw] profile_associations
|
435
|
+
# A complex type that containts settings information about the
|
436
|
+
# profile's VPC associations.
|
437
|
+
# @return [Array<Types::ProfileAssociation>]
|
438
|
+
#
|
439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListProfileAssociationsResponse AWS API Documentation
|
440
|
+
#
|
441
|
+
class ListProfileAssociationsResponse < Struct.new(
|
442
|
+
:next_token,
|
443
|
+
:profile_associations)
|
444
|
+
SENSITIVE = []
|
445
|
+
include Aws::Structure
|
446
|
+
end
|
447
|
+
|
448
|
+
# @!attribute [rw] max_results
|
449
|
+
# The maximum number of objects that you want to return for this
|
450
|
+
# request. If more objects are available, in the response, a
|
451
|
+
# `NextToken` value, which you can use in a subsequent call to get the
|
452
|
+
# next batch of objects, is provided.
|
453
|
+
#
|
454
|
+
# If you don't specify a value for `MaxResults`, up to 100 objects
|
455
|
+
# are returned.
|
456
|
+
# @return [Integer]
|
457
|
+
#
|
458
|
+
# @!attribute [rw] next_token
|
459
|
+
# For the first call to this list request, omit this value.
|
460
|
+
#
|
461
|
+
# When you request a list of objects, at most the number of objects
|
462
|
+
# specified by `MaxResults` is returned. If more objects are available
|
463
|
+
# for retrieval, a `NextToken` value is returned in the response. To
|
464
|
+
# retrieve the next batch of objects, use the token that was returned
|
465
|
+
# for the prior request in your next request.
|
466
|
+
# @return [String]
|
467
|
+
#
|
468
|
+
# @!attribute [rw] profile_id
|
469
|
+
# The ID of the Profile.
|
470
|
+
# @return [String]
|
471
|
+
#
|
472
|
+
# @!attribute [rw] resource_type
|
473
|
+
# ID of a resource if you want information on only one type.
|
474
|
+
# @return [String]
|
475
|
+
#
|
476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListProfileResourceAssociationsRequest AWS API Documentation
|
477
|
+
#
|
478
|
+
class ListProfileResourceAssociationsRequest < Struct.new(
|
479
|
+
:max_results,
|
480
|
+
:next_token,
|
481
|
+
:profile_id,
|
482
|
+
:resource_type)
|
483
|
+
SENSITIVE = []
|
484
|
+
include Aws::Structure
|
485
|
+
end
|
486
|
+
|
487
|
+
# @!attribute [rw] next_token
|
488
|
+
# If more than `MaxResults` resource associations match the specified
|
489
|
+
# criteria, you can submit another `ListProfileResourceAssociations`
|
490
|
+
# request to get the next group of results. In the next request,
|
491
|
+
# specify the value of `NextToken` from the previous response.
|
492
|
+
# @return [String]
|
493
|
+
#
|
494
|
+
# @!attribute [rw] profile_resource_associations
|
495
|
+
# Information about the profile resource association that you
|
496
|
+
# specified in a `GetProfileResourceAssociation` request.
|
497
|
+
# @return [Array<Types::ProfileResourceAssociation>]
|
498
|
+
#
|
499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListProfileResourceAssociationsResponse AWS API Documentation
|
500
|
+
#
|
501
|
+
class ListProfileResourceAssociationsResponse < Struct.new(
|
502
|
+
:next_token,
|
503
|
+
:profile_resource_associations)
|
504
|
+
SENSITIVE = []
|
505
|
+
include Aws::Structure
|
506
|
+
end
|
507
|
+
|
508
|
+
# @!attribute [rw] max_results
|
509
|
+
# The maximum number of objects that you want to return for this
|
510
|
+
# request. If more objects are available, in the response, a
|
511
|
+
# `NextToken` value, which you can use in a subsequent call to get the
|
512
|
+
# next batch of objects, is provided.
|
513
|
+
#
|
514
|
+
# If you don't specify a value for `MaxResults`, up to 100 objects
|
515
|
+
# are returned.
|
516
|
+
# @return [Integer]
|
517
|
+
#
|
518
|
+
# @!attribute [rw] next_token
|
519
|
+
# For the first call to this list request, omit this value.
|
520
|
+
#
|
521
|
+
# When you request a list of objects, at most the number of objects
|
522
|
+
# specified by `MaxResults` is returned. If more objects are available
|
523
|
+
# for retrieval, a `NextToken` value is returned in the response. To
|
524
|
+
# retrieve the next batch of objects, use the token that was returned
|
525
|
+
# for the prior request in your next request.
|
526
|
+
# @return [String]
|
527
|
+
#
|
528
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListProfilesRequest AWS API Documentation
|
529
|
+
#
|
530
|
+
class ListProfilesRequest < Struct.new(
|
531
|
+
:max_results,
|
532
|
+
:next_token)
|
533
|
+
SENSITIVE = []
|
534
|
+
include Aws::Structure
|
535
|
+
end
|
536
|
+
|
537
|
+
# @!attribute [rw] next_token
|
538
|
+
# If more than `MaxResults` resource associations match the specified
|
539
|
+
# criteria, you can submit another `ListProfiles` request to get the
|
540
|
+
# next group of results. In the next request, specify the value of
|
541
|
+
# `NextToken` from the previous response.
|
542
|
+
# @return [String]
|
543
|
+
#
|
544
|
+
# @!attribute [rw] profile_summaries
|
545
|
+
# Summary information about the Profiles.
|
546
|
+
# @return [Array<Types::ProfileSummary>]
|
547
|
+
#
|
548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListProfilesResponse AWS API Documentation
|
549
|
+
#
|
550
|
+
class ListProfilesResponse < Struct.new(
|
551
|
+
:next_token,
|
552
|
+
:profile_summaries)
|
553
|
+
SENSITIVE = []
|
554
|
+
include Aws::Structure
|
555
|
+
end
|
556
|
+
|
557
|
+
# @!attribute [rw] resource_arn
|
558
|
+
# The Amazon Resource Name (ARN) for the resource that you want to
|
559
|
+
# list the tags for.
|
560
|
+
# @return [String]
|
561
|
+
#
|
562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListTagsForResourceRequest AWS API Documentation
|
563
|
+
#
|
564
|
+
class ListTagsForResourceRequest < Struct.new(
|
565
|
+
:resource_arn)
|
566
|
+
SENSITIVE = []
|
567
|
+
include Aws::Structure
|
568
|
+
end
|
569
|
+
|
570
|
+
# @!attribute [rw] tags
|
571
|
+
# The tags that are associated with the resource that you specified in
|
572
|
+
# the `ListTagsForResource` request.
|
573
|
+
# @return [Hash<String,String>]
|
574
|
+
#
|
575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ListTagsForResourceResponse AWS API Documentation
|
576
|
+
#
|
577
|
+
class ListTagsForResourceResponse < Struct.new(
|
578
|
+
:tags)
|
579
|
+
SENSITIVE = []
|
580
|
+
include Aws::Structure
|
581
|
+
end
|
582
|
+
|
583
|
+
# A complex type that includes settings for a Route 53 Profile.
|
584
|
+
#
|
585
|
+
# @!attribute [rw] arn
|
586
|
+
# The Amazon Resource Name (ARN) of the Profile.
|
587
|
+
# @return [String]
|
588
|
+
#
|
589
|
+
# @!attribute [rw] client_token
|
590
|
+
# The `ClientToken` value that was assigned when the Profile was
|
591
|
+
# created.
|
592
|
+
# @return [String]
|
593
|
+
#
|
594
|
+
# @!attribute [rw] creation_time
|
595
|
+
# The date and time that the Profile was created, in Unix time format
|
596
|
+
# and Coordinated Universal Time (UTC).
|
597
|
+
# @return [Time]
|
598
|
+
#
|
599
|
+
# @!attribute [rw] id
|
600
|
+
# ID of the Profile.
|
601
|
+
# @return [String]
|
602
|
+
#
|
603
|
+
# @!attribute [rw] modification_time
|
604
|
+
# The date and time that the Profile was modified, in Unix time format
|
605
|
+
# and Coordinated Universal Time (UTC).
|
606
|
+
# @return [Time]
|
607
|
+
#
|
608
|
+
# @!attribute [rw] name
|
609
|
+
# Name of the Profile.
|
610
|
+
# @return [String]
|
611
|
+
#
|
612
|
+
# @!attribute [rw] owner_id
|
613
|
+
# Amazon Web Services account ID of the Profile owner.
|
614
|
+
# @return [String]
|
615
|
+
#
|
616
|
+
# @!attribute [rw] share_status
|
617
|
+
# Sharing status for the Profile.
|
618
|
+
# @return [String]
|
619
|
+
#
|
620
|
+
# @!attribute [rw] status
|
621
|
+
# The status for the Profile.
|
622
|
+
# @return [String]
|
623
|
+
#
|
624
|
+
# @!attribute [rw] status_message
|
625
|
+
# Status message that includes additiona information about the
|
626
|
+
# Profile.
|
627
|
+
# @return [String]
|
628
|
+
#
|
629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/Profile AWS API Documentation
|
630
|
+
#
|
631
|
+
class Profile < Struct.new(
|
632
|
+
:arn,
|
633
|
+
:client_token,
|
634
|
+
:creation_time,
|
635
|
+
:id,
|
636
|
+
:modification_time,
|
637
|
+
:name,
|
638
|
+
:owner_id,
|
639
|
+
:share_status,
|
640
|
+
:status,
|
641
|
+
:status_message)
|
642
|
+
SENSITIVE = []
|
643
|
+
include Aws::Structure
|
644
|
+
end
|
645
|
+
|
646
|
+
# An association between a Route 53 Profile and a VPC.
|
647
|
+
#
|
648
|
+
# @!attribute [rw] creation_time
|
649
|
+
# The date and time that the Profile association was created, in Unix
|
650
|
+
# time format and Coordinated Universal Time (UTC).
|
651
|
+
# @return [Time]
|
652
|
+
#
|
653
|
+
# @!attribute [rw] id
|
654
|
+
# ID of the Profile association.
|
655
|
+
# @return [String]
|
656
|
+
#
|
657
|
+
# @!attribute [rw] modification_time
|
658
|
+
# The date and time that the Profile association was modified, in Unix
|
659
|
+
# time format and Coordinated Universal Time (UTC).
|
660
|
+
# @return [Time]
|
661
|
+
#
|
662
|
+
# @!attribute [rw] name
|
663
|
+
# Name of the Profile association.
|
664
|
+
# @return [String]
|
665
|
+
#
|
666
|
+
# @!attribute [rw] owner_id
|
667
|
+
# Amazon Web Services account ID of the Profile association owner.
|
668
|
+
# @return [String]
|
669
|
+
#
|
670
|
+
# @!attribute [rw] profile_id
|
671
|
+
# ID of the Profile.
|
672
|
+
# @return [String]
|
673
|
+
#
|
674
|
+
# @!attribute [rw] resource_id
|
675
|
+
# The Amazon Resource Name (ARN) of the VPC.
|
676
|
+
# @return [String]
|
677
|
+
#
|
678
|
+
# @!attribute [rw] status
|
679
|
+
# Status of the Profile association.
|
680
|
+
# @return [String]
|
681
|
+
#
|
682
|
+
# @!attribute [rw] status_message
|
683
|
+
# Additional information about the Profile association.
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ProfileAssociation AWS API Documentation
|
687
|
+
#
|
688
|
+
class ProfileAssociation < Struct.new(
|
689
|
+
:creation_time,
|
690
|
+
:id,
|
691
|
+
:modification_time,
|
692
|
+
:name,
|
693
|
+
:owner_id,
|
694
|
+
:profile_id,
|
695
|
+
:resource_id,
|
696
|
+
:status,
|
697
|
+
:status_message)
|
698
|
+
SENSITIVE = []
|
699
|
+
include Aws::Structure
|
700
|
+
end
|
701
|
+
|
702
|
+
# The association between a Route 53 Profile and resources.
|
703
|
+
#
|
704
|
+
# @!attribute [rw] creation_time
|
705
|
+
# The date and time that the Profile resource association was created,
|
706
|
+
# in Unix time format and Coordinated Universal Time (UTC).
|
707
|
+
# @return [Time]
|
708
|
+
#
|
709
|
+
# @!attribute [rw] id
|
710
|
+
# ID of the Profile resource association.
|
711
|
+
# @return [String]
|
712
|
+
#
|
713
|
+
# @!attribute [rw] modification_time
|
714
|
+
# The date and time that the Profile resource association was
|
715
|
+
# modified, in Unix time format and Coordinated Universal Time (UTC).
|
716
|
+
# @return [Time]
|
717
|
+
#
|
718
|
+
# @!attribute [rw] name
|
719
|
+
# Name of the Profile resource association.
|
720
|
+
# @return [String]
|
721
|
+
#
|
722
|
+
# @!attribute [rw] owner_id
|
723
|
+
# Amazon Web Services account ID of the Profile resource association
|
724
|
+
# owner.
|
725
|
+
# @return [String]
|
726
|
+
#
|
727
|
+
# @!attribute [rw] profile_id
|
728
|
+
# Profile ID of the Profile that the resources are associated with.
|
729
|
+
# @return [String]
|
730
|
+
#
|
731
|
+
# @!attribute [rw] resource_arn
|
732
|
+
# The Amazon Resource Name (ARN) of the resource association.
|
733
|
+
# @return [String]
|
734
|
+
#
|
735
|
+
# @!attribute [rw] resource_properties
|
736
|
+
# If the DNS resource is a DNS Firewall rule group, this indicates the
|
737
|
+
# priority.
|
738
|
+
# @return [String]
|
739
|
+
#
|
740
|
+
# @!attribute [rw] resource_type
|
741
|
+
# Resource type, such as a private hosted zone, or DNS Firewall rule
|
742
|
+
# group.
|
743
|
+
# @return [String]
|
744
|
+
#
|
745
|
+
# @!attribute [rw] status
|
746
|
+
# Status of the Profile resource association.
|
747
|
+
# @return [String]
|
748
|
+
#
|
749
|
+
# @!attribute [rw] status_message
|
750
|
+
# Additional information about the Profile resource association.
|
751
|
+
# @return [String]
|
752
|
+
#
|
753
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ProfileResourceAssociation AWS API Documentation
|
754
|
+
#
|
755
|
+
class ProfileResourceAssociation < Struct.new(
|
756
|
+
:creation_time,
|
757
|
+
:id,
|
758
|
+
:modification_time,
|
759
|
+
:name,
|
760
|
+
:owner_id,
|
761
|
+
:profile_id,
|
762
|
+
:resource_arn,
|
763
|
+
:resource_properties,
|
764
|
+
:resource_type,
|
765
|
+
:status,
|
766
|
+
:status_message)
|
767
|
+
SENSITIVE = []
|
768
|
+
include Aws::Structure
|
769
|
+
end
|
770
|
+
|
771
|
+
# Summary information about a Route 53 Profile.
|
772
|
+
#
|
773
|
+
# @!attribute [rw] arn
|
774
|
+
# The Amazon Resource Name (ARN) of the Profile.
|
775
|
+
# @return [String]
|
776
|
+
#
|
777
|
+
# @!attribute [rw] id
|
778
|
+
# ID of the Profile.
|
779
|
+
# @return [String]
|
780
|
+
#
|
781
|
+
# @!attribute [rw] name
|
782
|
+
# Name of the Profile.
|
783
|
+
# @return [String]
|
784
|
+
#
|
785
|
+
# @!attribute [rw] share_status
|
786
|
+
# Share status of the Profile.
|
787
|
+
# @return [String]
|
788
|
+
#
|
789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ProfileSummary AWS API Documentation
|
790
|
+
#
|
791
|
+
class ProfileSummary < Struct.new(
|
792
|
+
:arn,
|
793
|
+
:id,
|
794
|
+
:name,
|
795
|
+
:share_status)
|
796
|
+
SENSITIVE = []
|
797
|
+
include Aws::Structure
|
798
|
+
end
|
799
|
+
|
800
|
+
# The resource you are trying to associate, has already been associated.
|
801
|
+
#
|
802
|
+
# @!attribute [rw] message
|
803
|
+
# @return [String]
|
804
|
+
#
|
805
|
+
# @!attribute [rw] resource_type
|
806
|
+
# The resource type that caused the resource exists exception.
|
807
|
+
# @return [String]
|
808
|
+
#
|
809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ResourceExistsException AWS API Documentation
|
810
|
+
#
|
811
|
+
class ResourceExistsException < Struct.new(
|
812
|
+
:message,
|
813
|
+
:resource_type)
|
814
|
+
SENSITIVE = []
|
815
|
+
include Aws::Structure
|
816
|
+
end
|
817
|
+
|
818
|
+
# The resource you are associating is not found.
|
819
|
+
#
|
820
|
+
# @!attribute [rw] message
|
821
|
+
# @return [String]
|
822
|
+
#
|
823
|
+
# @!attribute [rw] resource_type
|
824
|
+
# The resource type that caused the resource not found exception.
|
825
|
+
# @return [String]
|
826
|
+
#
|
827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ResourceNotFoundException AWS API Documentation
|
828
|
+
#
|
829
|
+
class ResourceNotFoundException < Struct.new(
|
830
|
+
:message,
|
831
|
+
:resource_type)
|
832
|
+
SENSITIVE = []
|
833
|
+
include Aws::Structure
|
834
|
+
end
|
835
|
+
|
836
|
+
# Tag for the Profile.
|
837
|
+
#
|
838
|
+
# @!attribute [rw] key
|
839
|
+
# Key associated with the `Tag`.
|
840
|
+
# @return [String]
|
841
|
+
#
|
842
|
+
# @!attribute [rw] value
|
843
|
+
# Value for the Tag.
|
844
|
+
# @return [String]
|
845
|
+
#
|
846
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/Tag AWS API Documentation
|
847
|
+
#
|
848
|
+
class Tag < Struct.new(
|
849
|
+
:key,
|
850
|
+
:value)
|
851
|
+
SENSITIVE = []
|
852
|
+
include Aws::Structure
|
853
|
+
end
|
854
|
+
|
855
|
+
# @!attribute [rw] resource_arn
|
856
|
+
# The Amazon Resource Name (ARN) for the resource that you want to add
|
857
|
+
# tags to.
|
858
|
+
# @return [String]
|
859
|
+
#
|
860
|
+
# @!attribute [rw] tags
|
861
|
+
# The tags that you want to add to the specified resource.
|
862
|
+
# @return [Hash<String,String>]
|
863
|
+
#
|
864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/TagResourceRequest AWS API Documentation
|
865
|
+
#
|
866
|
+
class TagResourceRequest < Struct.new(
|
867
|
+
:resource_arn,
|
868
|
+
:tags)
|
869
|
+
SENSITIVE = []
|
870
|
+
include Aws::Structure
|
871
|
+
end
|
872
|
+
|
873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/TagResourceResponse AWS API Documentation
|
874
|
+
#
|
875
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
876
|
+
|
877
|
+
# The request was throttled. Try again in a few minutes.
|
878
|
+
#
|
879
|
+
# @!attribute [rw] message
|
880
|
+
# @return [String]
|
881
|
+
#
|
882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ThrottlingException AWS API Documentation
|
883
|
+
#
|
884
|
+
class ThrottlingException < Struct.new(
|
885
|
+
:message)
|
886
|
+
SENSITIVE = []
|
887
|
+
include Aws::Structure
|
888
|
+
end
|
889
|
+
|
890
|
+
# @!attribute [rw] resource_arn
|
891
|
+
# The Amazon Resource Name (ARN) for the resource that you want to
|
892
|
+
# remove tags from.
|
893
|
+
# @return [String]
|
894
|
+
#
|
895
|
+
# @!attribute [rw] tag_keys
|
896
|
+
# The tags that you want to remove to the specified resource.
|
897
|
+
# @return [Array<String>]
|
898
|
+
#
|
899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/UntagResourceRequest AWS API Documentation
|
900
|
+
#
|
901
|
+
class UntagResourceRequest < Struct.new(
|
902
|
+
:resource_arn,
|
903
|
+
:tag_keys)
|
904
|
+
SENSITIVE = []
|
905
|
+
include Aws::Structure
|
906
|
+
end
|
907
|
+
|
908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/UntagResourceResponse AWS API Documentation
|
909
|
+
#
|
910
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
911
|
+
|
912
|
+
# @!attribute [rw] name
|
913
|
+
# Name of the resource association.
|
914
|
+
# @return [String]
|
915
|
+
#
|
916
|
+
# @!attribute [rw] profile_resource_association_id
|
917
|
+
# ID of the resource association.
|
918
|
+
# @return [String]
|
919
|
+
#
|
920
|
+
# @!attribute [rw] resource_properties
|
921
|
+
# If you are adding a DNS Firewall rule group, include also a priority
|
922
|
+
# in this format:
|
923
|
+
#
|
924
|
+
# `Key=FirewallRuleGroupPriority,Value=100`.
|
925
|
+
# @return [String]
|
926
|
+
#
|
927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/UpdateProfileResourceAssociationRequest AWS API Documentation
|
928
|
+
#
|
929
|
+
class UpdateProfileResourceAssociationRequest < Struct.new(
|
930
|
+
:name,
|
931
|
+
:profile_resource_association_id,
|
932
|
+
:resource_properties)
|
933
|
+
SENSITIVE = []
|
934
|
+
include Aws::Structure
|
935
|
+
end
|
936
|
+
|
937
|
+
# @!attribute [rw] profile_resource_association
|
938
|
+
# Information about the `UpdateProfileResourceAssociation` request,
|
939
|
+
# including a status message.
|
940
|
+
# @return [Types::ProfileResourceAssociation]
|
941
|
+
#
|
942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/UpdateProfileResourceAssociationResponse AWS API Documentation
|
943
|
+
#
|
944
|
+
class UpdateProfileResourceAssociationResponse < Struct.new(
|
945
|
+
:profile_resource_association)
|
946
|
+
SENSITIVE = []
|
947
|
+
include Aws::Structure
|
948
|
+
end
|
949
|
+
|
950
|
+
# You have provided an invalid command.
|
951
|
+
#
|
952
|
+
# @!attribute [rw] message
|
953
|
+
# @return [String]
|
954
|
+
#
|
955
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53profiles-2018-05-10/ValidationException AWS API Documentation
|
956
|
+
#
|
957
|
+
class ValidationException < Struct.new(
|
958
|
+
:message)
|
959
|
+
SENSITIVE = []
|
960
|
+
include Aws::Structure
|
961
|
+
end
|
962
|
+
|
963
|
+
end
|
964
|
+
end
|