aws-sdk-vpclattice 1.24.0 → 1.26.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-vpclattice/client.rb +1115 -102
- data/lib/aws-sdk-vpclattice/client_api.rb +687 -0
- data/lib/aws-sdk-vpclattice/types.rb +1803 -199
- data/lib/aws-sdk-vpclattice.rb +1 -1
- data/sig/client.rbs +330 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +414 -0
- metadata +6 -6
@@ -30,8 +30,8 @@ module Aws::VPCLattice
|
|
30
30
|
# @return [String]
|
31
31
|
#
|
32
32
|
# @!attribute [rw] created_at
|
33
|
-
# The date and time that the access log subscription was created,
|
34
|
-
#
|
33
|
+
# The date and time that the access log subscription was created, in
|
34
|
+
# ISO-8601 format.
|
35
35
|
# @return [Time]
|
36
36
|
#
|
37
37
|
# @!attribute [rw] destination_arn
|
@@ -44,7 +44,7 @@ module Aws::VPCLattice
|
|
44
44
|
#
|
45
45
|
# @!attribute [rw] last_updated_at
|
46
46
|
# The date and time that the access log subscription was last updated,
|
47
|
-
#
|
47
|
+
# in ISO-8601 format.
|
48
48
|
# @return [Time]
|
49
49
|
#
|
50
50
|
# @!attribute [rw] resource_arn
|
@@ -55,6 +55,10 @@ module Aws::VPCLattice
|
|
55
55
|
# The ID of the service or service network.
|
56
56
|
# @return [String]
|
57
57
|
#
|
58
|
+
# @!attribute [rw] service_network_log_type
|
59
|
+
# Log type of the service network.
|
60
|
+
# @return [String]
|
61
|
+
#
|
58
62
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/AccessLogSubscriptionSummary AWS API Documentation
|
59
63
|
#
|
60
64
|
class AccessLogSubscriptionSummary < Struct.new(
|
@@ -64,13 +68,28 @@ module Aws::VPCLattice
|
|
64
68
|
:id,
|
65
69
|
:last_updated_at,
|
66
70
|
:resource_arn,
|
67
|
-
:resource_id
|
71
|
+
:resource_id,
|
72
|
+
:service_network_log_type)
|
73
|
+
SENSITIVE = []
|
74
|
+
include Aws::Structure
|
75
|
+
end
|
76
|
+
|
77
|
+
# The Amazon Resource Name (ARN) of the resource.
|
78
|
+
#
|
79
|
+
# @!attribute [rw] arn
|
80
|
+
# The Amazon Resource Name (ARN) of the resource.
|
81
|
+
# @return [String]
|
82
|
+
#
|
83
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ArnResource AWS API Documentation
|
84
|
+
#
|
85
|
+
class ArnResource < Struct.new(
|
86
|
+
:arn)
|
68
87
|
SENSITIVE = []
|
69
88
|
include Aws::Structure
|
70
89
|
end
|
71
90
|
|
72
91
|
# @!attribute [rw] listener_identifier
|
73
|
-
# The ID or
|
92
|
+
# The ID or ARN of the listener.
|
74
93
|
# @return [String]
|
75
94
|
#
|
76
95
|
# @!attribute [rw] rules
|
@@ -78,7 +97,7 @@ module Aws::VPCLattice
|
|
78
97
|
# @return [Array<Types::RuleUpdate>]
|
79
98
|
#
|
80
99
|
# @!attribute [rw] service_identifier
|
81
|
-
# The ID or
|
100
|
+
# The ID or ARN of the service.
|
82
101
|
# @return [String]
|
83
102
|
#
|
84
103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/BatchUpdateRuleRequest AWS API Documentation
|
@@ -150,8 +169,12 @@ module Aws::VPCLattice
|
|
150
169
|
# @return [String]
|
151
170
|
#
|
152
171
|
# @!attribute [rw] resource_identifier
|
153
|
-
# The ID or
|
154
|
-
#
|
172
|
+
# The ID or ARN of the service network or service.
|
173
|
+
# @return [String]
|
174
|
+
#
|
175
|
+
# @!attribute [rw] service_network_log_type
|
176
|
+
# The type of log that monitors your Amazon VPC Lattice service
|
177
|
+
# networks.
|
155
178
|
# @return [String]
|
156
179
|
#
|
157
180
|
# @!attribute [rw] tags
|
@@ -164,6 +187,7 @@ module Aws::VPCLattice
|
|
164
187
|
:client_token,
|
165
188
|
:destination_arn,
|
166
189
|
:resource_identifier,
|
190
|
+
:service_network_log_type,
|
167
191
|
:tags)
|
168
192
|
SENSITIVE = []
|
169
193
|
include Aws::Structure
|
@@ -189,6 +213,11 @@ module Aws::VPCLattice
|
|
189
213
|
# The ID of the service network or service.
|
190
214
|
# @return [String]
|
191
215
|
#
|
216
|
+
# @!attribute [rw] service_network_log_type
|
217
|
+
# The type of log that monitors your Amazon VPC Lattice service
|
218
|
+
# networks.
|
219
|
+
# @return [String]
|
220
|
+
#
|
192
221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateAccessLogSubscriptionResponse AWS API Documentation
|
193
222
|
#
|
194
223
|
class CreateAccessLogSubscriptionResponse < Struct.new(
|
@@ -196,7 +225,8 @@ module Aws::VPCLattice
|
|
196
225
|
:destination_arn,
|
197
226
|
:id,
|
198
227
|
:resource_arn,
|
199
|
-
:resource_id
|
228
|
+
:resource_id,
|
229
|
+
:service_network_log_type)
|
200
230
|
SENSITIVE = []
|
201
231
|
include Aws::Structure
|
202
232
|
end
|
@@ -234,7 +264,7 @@ module Aws::VPCLattice
|
|
234
264
|
# @return [String]
|
235
265
|
#
|
236
266
|
# @!attribute [rw] service_identifier
|
237
|
-
# The ID or
|
267
|
+
# The ID or ARN of the service.
|
238
268
|
# @return [String]
|
239
269
|
#
|
240
270
|
# @!attribute [rw] tags
|
@@ -302,6 +332,264 @@ module Aws::VPCLattice
|
|
302
332
|
include Aws::Structure
|
303
333
|
end
|
304
334
|
|
335
|
+
# @!attribute [rw] allow_association_to_shareable_service_network
|
336
|
+
# (SINGLE, GROUP, ARN) Specifies whether the resource configuration
|
337
|
+
# can be associated with a sharable service network. The default is
|
338
|
+
# false.
|
339
|
+
# @return [Boolean]
|
340
|
+
#
|
341
|
+
# @!attribute [rw] client_token
|
342
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
343
|
+
# idempotency of the request. If you retry a request that completed
|
344
|
+
# successfully using the same client token and parameters, the retry
|
345
|
+
# succeeds without performing any actions. If the parameters aren't
|
346
|
+
# identical, the retry fails.
|
347
|
+
#
|
348
|
+
# **A suitable default value is auto-generated.** You should normally
|
349
|
+
# not need to pass this option.
|
350
|
+
# @return [String]
|
351
|
+
#
|
352
|
+
# @!attribute [rw] name
|
353
|
+
# The name of the resource configuration. The name must be unique
|
354
|
+
# within the account. The valid characters are a-z, 0-9, and hyphens
|
355
|
+
# (-). You can't use a hyphen as the first or last character, or
|
356
|
+
# immediately after another hyphen.
|
357
|
+
# @return [String]
|
358
|
+
#
|
359
|
+
# @!attribute [rw] port_ranges
|
360
|
+
# (SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use
|
361
|
+
# to access a resource configuration (for example: 1-65535). You can
|
362
|
+
# separate port ranges using commas (for example: 1,2,22-30).
|
363
|
+
# @return [Array<String>]
|
364
|
+
#
|
365
|
+
# @!attribute [rw] protocol
|
366
|
+
# (SINGLE, GROUP) The protocol accepted by the resource configuration.
|
367
|
+
# @return [String]
|
368
|
+
#
|
369
|
+
# @!attribute [rw] resource_configuration_definition
|
370
|
+
# (SINGLE, CHILD, ARN) The resource configuration.
|
371
|
+
# @return [Types::ResourceConfigurationDefinition]
|
372
|
+
#
|
373
|
+
# @!attribute [rw] resource_configuration_group_identifier
|
374
|
+
# (CHILD) The ID or ARN of the parent resource configuration (type is
|
375
|
+
# `GROUP`). This is used to associate a child resource configuration
|
376
|
+
# with a group resource configuration.
|
377
|
+
# @return [String]
|
378
|
+
#
|
379
|
+
# @!attribute [rw] resource_gateway_identifier
|
380
|
+
# (SINGLE, GROUP, ARN) The ID or ARN of the resource gateway used to
|
381
|
+
# connect to the resource configuration. For a child resource
|
382
|
+
# configuration, this value is inherited from the parent resource
|
383
|
+
# configuration.
|
384
|
+
# @return [String]
|
385
|
+
#
|
386
|
+
# @!attribute [rw] tags
|
387
|
+
# The tags for the resource configuration.
|
388
|
+
# @return [Hash<String,String>]
|
389
|
+
#
|
390
|
+
# @!attribute [rw] type
|
391
|
+
# The type of resource configuration.
|
392
|
+
#
|
393
|
+
# * `SINGLE` - A single resource.
|
394
|
+
#
|
395
|
+
# * `GROUP` - A group of resources. You must create a group resource
|
396
|
+
# configuration before you create a child resource configuration.
|
397
|
+
#
|
398
|
+
# * `CHILD` - A single resource that is part of a group resource
|
399
|
+
# configuration.
|
400
|
+
#
|
401
|
+
# * `ARN` - An Amazon Web Services resource.
|
402
|
+
# @return [String]
|
403
|
+
#
|
404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateResourceConfigurationRequest AWS API Documentation
|
405
|
+
#
|
406
|
+
class CreateResourceConfigurationRequest < Struct.new(
|
407
|
+
:allow_association_to_shareable_service_network,
|
408
|
+
:client_token,
|
409
|
+
:name,
|
410
|
+
:port_ranges,
|
411
|
+
:protocol,
|
412
|
+
:resource_configuration_definition,
|
413
|
+
:resource_configuration_group_identifier,
|
414
|
+
:resource_gateway_identifier,
|
415
|
+
:tags,
|
416
|
+
:type)
|
417
|
+
SENSITIVE = []
|
418
|
+
include Aws::Structure
|
419
|
+
end
|
420
|
+
|
421
|
+
# @!attribute [rw] allow_association_to_shareable_service_network
|
422
|
+
# Specifies whether the resource configuration can be associated with
|
423
|
+
# a sharable service network.
|
424
|
+
# @return [Boolean]
|
425
|
+
#
|
426
|
+
# @!attribute [rw] arn
|
427
|
+
# The Amazon Resource Name (ARN) of the resource configuration.
|
428
|
+
# @return [String]
|
429
|
+
#
|
430
|
+
# @!attribute [rw] created_at
|
431
|
+
# The date and time that the resource configuration was created, in
|
432
|
+
# ISO-8601 format.
|
433
|
+
# @return [Time]
|
434
|
+
#
|
435
|
+
# @!attribute [rw] failure_reason
|
436
|
+
# The reason that the request failed.
|
437
|
+
# @return [String]
|
438
|
+
#
|
439
|
+
# @!attribute [rw] id
|
440
|
+
# The ID of the resource configuration.
|
441
|
+
# @return [String]
|
442
|
+
#
|
443
|
+
# @!attribute [rw] name
|
444
|
+
# The name of the resource configuration.
|
445
|
+
# @return [String]
|
446
|
+
#
|
447
|
+
# @!attribute [rw] port_ranges
|
448
|
+
# The port range.
|
449
|
+
# @return [Array<String>]
|
450
|
+
#
|
451
|
+
# @!attribute [rw] protocol
|
452
|
+
# The protocol.
|
453
|
+
# @return [String]
|
454
|
+
#
|
455
|
+
# @!attribute [rw] resource_configuration_definition
|
456
|
+
# The resource configuration.
|
457
|
+
# @return [Types::ResourceConfigurationDefinition]
|
458
|
+
#
|
459
|
+
# @!attribute [rw] resource_configuration_group_id
|
460
|
+
# The ID of the parent resource configuration (type is GROUP).
|
461
|
+
# @return [String]
|
462
|
+
#
|
463
|
+
# @!attribute [rw] resource_gateway_id
|
464
|
+
# The ID of the resource gateway associated with the resource
|
465
|
+
# configuration.
|
466
|
+
# @return [String]
|
467
|
+
#
|
468
|
+
# @!attribute [rw] status
|
469
|
+
# The current status of the resource configuration.
|
470
|
+
# @return [String]
|
471
|
+
#
|
472
|
+
# @!attribute [rw] type
|
473
|
+
# The type of resource configuration.
|
474
|
+
# @return [String]
|
475
|
+
#
|
476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateResourceConfigurationResponse AWS API Documentation
|
477
|
+
#
|
478
|
+
class CreateResourceConfigurationResponse < Struct.new(
|
479
|
+
:allow_association_to_shareable_service_network,
|
480
|
+
:arn,
|
481
|
+
:created_at,
|
482
|
+
:failure_reason,
|
483
|
+
:id,
|
484
|
+
:name,
|
485
|
+
:port_ranges,
|
486
|
+
:protocol,
|
487
|
+
:resource_configuration_definition,
|
488
|
+
:resource_configuration_group_id,
|
489
|
+
:resource_gateway_id,
|
490
|
+
:status,
|
491
|
+
:type)
|
492
|
+
SENSITIVE = []
|
493
|
+
include Aws::Structure
|
494
|
+
end
|
495
|
+
|
496
|
+
# @!attribute [rw] client_token
|
497
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
498
|
+
# idempotency of the request. If you retry a request that completed
|
499
|
+
# successfully using the same client token and parameters, the retry
|
500
|
+
# succeeds without performing any actions. If the parameters aren't
|
501
|
+
# identical, the retry fails.
|
502
|
+
#
|
503
|
+
# **A suitable default value is auto-generated.** You should normally
|
504
|
+
# not need to pass this option.
|
505
|
+
# @return [String]
|
506
|
+
#
|
507
|
+
# @!attribute [rw] ip_address_type
|
508
|
+
# The type of IP address used by the resource gateway.
|
509
|
+
# @return [String]
|
510
|
+
#
|
511
|
+
# @!attribute [rw] name
|
512
|
+
# The name of the resource gateway.
|
513
|
+
# @return [String]
|
514
|
+
#
|
515
|
+
# @!attribute [rw] security_group_ids
|
516
|
+
# The IDs of the security groups to apply to the resource gateway. The
|
517
|
+
# security groups must be in the same VPC.
|
518
|
+
# @return [Array<String>]
|
519
|
+
#
|
520
|
+
# @!attribute [rw] subnet_ids
|
521
|
+
# The IDs of the VPC subnets in which to create the resource gateway.
|
522
|
+
# @return [Array<String>]
|
523
|
+
#
|
524
|
+
# @!attribute [rw] tags
|
525
|
+
# The tags for the resource gateway.
|
526
|
+
# @return [Hash<String,String>]
|
527
|
+
#
|
528
|
+
# @!attribute [rw] vpc_identifier
|
529
|
+
# The ID of the VPC for the resource gateway.
|
530
|
+
# @return [String]
|
531
|
+
#
|
532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateResourceGatewayRequest AWS API Documentation
|
533
|
+
#
|
534
|
+
class CreateResourceGatewayRequest < Struct.new(
|
535
|
+
:client_token,
|
536
|
+
:ip_address_type,
|
537
|
+
:name,
|
538
|
+
:security_group_ids,
|
539
|
+
:subnet_ids,
|
540
|
+
:tags,
|
541
|
+
:vpc_identifier)
|
542
|
+
SENSITIVE = []
|
543
|
+
include Aws::Structure
|
544
|
+
end
|
545
|
+
|
546
|
+
# @!attribute [rw] arn
|
547
|
+
# The Amazon Resource Name (ARN) of the resource gateway.
|
548
|
+
# @return [String]
|
549
|
+
#
|
550
|
+
# @!attribute [rw] id
|
551
|
+
# The ID of the resource gateway.
|
552
|
+
# @return [String]
|
553
|
+
#
|
554
|
+
# @!attribute [rw] ip_address_type
|
555
|
+
# The type of IP address for the resource gateway.
|
556
|
+
# @return [String]
|
557
|
+
#
|
558
|
+
# @!attribute [rw] name
|
559
|
+
# The name of the resource gateway.
|
560
|
+
# @return [String]
|
561
|
+
#
|
562
|
+
# @!attribute [rw] security_group_ids
|
563
|
+
# The IDs of the security groups for the resource gateway.
|
564
|
+
# @return [Array<String>]
|
565
|
+
#
|
566
|
+
# @!attribute [rw] status
|
567
|
+
# The status of the resource gateway.
|
568
|
+
# @return [String]
|
569
|
+
#
|
570
|
+
# @!attribute [rw] subnet_ids
|
571
|
+
# The IDs of the resource gateway subnets.
|
572
|
+
# @return [Array<String>]
|
573
|
+
#
|
574
|
+
# @!attribute [rw] vpc_identifier
|
575
|
+
# The ID of the VPC.
|
576
|
+
# @return [String]
|
577
|
+
#
|
578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateResourceGatewayResponse AWS API Documentation
|
579
|
+
#
|
580
|
+
class CreateResourceGatewayResponse < Struct.new(
|
581
|
+
:arn,
|
582
|
+
:id,
|
583
|
+
:ip_address_type,
|
584
|
+
:name,
|
585
|
+
:security_group_ids,
|
586
|
+
:status,
|
587
|
+
:subnet_ids,
|
588
|
+
:vpc_identifier)
|
589
|
+
SENSITIVE = []
|
590
|
+
include Aws::Structure
|
591
|
+
end
|
592
|
+
|
305
593
|
# @!attribute [rw] action
|
306
594
|
# The action for the default rule.
|
307
595
|
# @return [Types::RuleAction]
|
@@ -318,7 +606,7 @@ module Aws::VPCLattice
|
|
318
606
|
# @return [String]
|
319
607
|
#
|
320
608
|
# @!attribute [rw] listener_identifier
|
321
|
-
# The ID or
|
609
|
+
# The ID or ARN of the listener.
|
322
610
|
# @return [String]
|
323
611
|
#
|
324
612
|
# @!attribute [rw] match
|
@@ -339,7 +627,7 @@ module Aws::VPCLattice
|
|
339
627
|
# @return [Integer]
|
340
628
|
#
|
341
629
|
# @!attribute [rw] service_identifier
|
342
|
-
# The ID or
|
630
|
+
# The ID or ARN of the service.
|
343
631
|
# @return [String]
|
344
632
|
#
|
345
633
|
# @!attribute [rw] tags
|
@@ -429,6 +717,10 @@ module Aws::VPCLattice
|
|
429
717
|
# after another hyphen.
|
430
718
|
# @return [String]
|
431
719
|
#
|
720
|
+
# @!attribute [rw] sharing_config
|
721
|
+
# Specify if the service network should be enabled for sharing.
|
722
|
+
# @return [Types::SharingConfig]
|
723
|
+
#
|
432
724
|
# @!attribute [rw] tags
|
433
725
|
# The tags for the service network.
|
434
726
|
# @return [Hash<String,String>]
|
@@ -439,11 +731,75 @@ module Aws::VPCLattice
|
|
439
731
|
:auth_type,
|
440
732
|
:client_token,
|
441
733
|
:name,
|
734
|
+
:sharing_config,
|
735
|
+
:tags)
|
736
|
+
SENSITIVE = []
|
737
|
+
include Aws::Structure
|
738
|
+
end
|
739
|
+
|
740
|
+
# @!attribute [rw] client_token
|
741
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
742
|
+
# idempotency of the request. If you retry a request that completed
|
743
|
+
# successfully using the same client token and parameters, the retry
|
744
|
+
# succeeds without performing any actions. If the parameters aren't
|
745
|
+
# identical, the retry fails.
|
746
|
+
#
|
747
|
+
# **A suitable default value is auto-generated.** You should normally
|
748
|
+
# not need to pass this option.
|
749
|
+
# @return [String]
|
750
|
+
#
|
751
|
+
# @!attribute [rw] resource_configuration_identifier
|
752
|
+
# The ID of the resource configuration to associate with the service
|
753
|
+
# network.
|
754
|
+
# @return [String]
|
755
|
+
#
|
756
|
+
# @!attribute [rw] service_network_identifier
|
757
|
+
# The ID of the service network to associate with the resource
|
758
|
+
# configuration.
|
759
|
+
# @return [String]
|
760
|
+
#
|
761
|
+
# @!attribute [rw] tags
|
762
|
+
# The tags for the association.
|
763
|
+
# @return [Hash<String,String>]
|
764
|
+
#
|
765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateServiceNetworkResourceAssociationRequest AWS API Documentation
|
766
|
+
#
|
767
|
+
class CreateServiceNetworkResourceAssociationRequest < Struct.new(
|
768
|
+
:client_token,
|
769
|
+
:resource_configuration_identifier,
|
770
|
+
:service_network_identifier,
|
442
771
|
:tags)
|
443
772
|
SENSITIVE = []
|
444
773
|
include Aws::Structure
|
445
774
|
end
|
446
775
|
|
776
|
+
# @!attribute [rw] arn
|
777
|
+
# The Amazon Resource Name (ARN) of the association.
|
778
|
+
# @return [String]
|
779
|
+
#
|
780
|
+
# @!attribute [rw] created_by
|
781
|
+
# The ID of the account that created the association.
|
782
|
+
# @return [String]
|
783
|
+
#
|
784
|
+
# @!attribute [rw] id
|
785
|
+
# The ID of the association.
|
786
|
+
# @return [String]
|
787
|
+
#
|
788
|
+
# @!attribute [rw] status
|
789
|
+
# The status of the association.
|
790
|
+
# @return [String]
|
791
|
+
#
|
792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateServiceNetworkResourceAssociationResponse AWS API Documentation
|
793
|
+
#
|
794
|
+
class CreateServiceNetworkResourceAssociationResponse < Struct.new(
|
795
|
+
:arn,
|
796
|
+
:created_by,
|
797
|
+
:id,
|
798
|
+
:status)
|
799
|
+
SENSITIVE = []
|
800
|
+
include Aws::Structure
|
801
|
+
end
|
802
|
+
|
447
803
|
# @!attribute [rw] arn
|
448
804
|
# The Amazon Resource Name (ARN) of the service network.
|
449
805
|
# @return [String]
|
@@ -460,13 +816,18 @@ module Aws::VPCLattice
|
|
460
816
|
# The name of the service network.
|
461
817
|
# @return [String]
|
462
818
|
#
|
819
|
+
# @!attribute [rw] sharing_config
|
820
|
+
# Specifies if the service network is enabled for sharing.
|
821
|
+
# @return [Types::SharingConfig]
|
822
|
+
#
|
463
823
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateServiceNetworkResponse AWS API Documentation
|
464
824
|
#
|
465
825
|
class CreateServiceNetworkResponse < Struct.new(
|
466
826
|
:arn,
|
467
827
|
:auth_type,
|
468
828
|
:id,
|
469
|
-
:name
|
829
|
+
:name,
|
830
|
+
:sharing_config)
|
470
831
|
SENSITIVE = []
|
471
832
|
include Aws::Structure
|
472
833
|
end
|
@@ -483,13 +844,12 @@ module Aws::VPCLattice
|
|
483
844
|
# @return [String]
|
484
845
|
#
|
485
846
|
# @!attribute [rw] service_identifier
|
486
|
-
# The ID or
|
847
|
+
# The ID or ARN of the service.
|
487
848
|
# @return [String]
|
488
849
|
#
|
489
850
|
# @!attribute [rw] service_network_identifier
|
490
|
-
# The ID or
|
491
|
-
#
|
492
|
-
# different accounts.
|
851
|
+
# The ID or ARN of the service network. You must use an ARN if the
|
852
|
+
# resources are in different accounts.
|
493
853
|
# @return [String]
|
494
854
|
#
|
495
855
|
# @!attribute [rw] tags
|
@@ -569,9 +929,8 @@ module Aws::VPCLattice
|
|
569
929
|
# @return [Array<String>]
|
570
930
|
#
|
571
931
|
# @!attribute [rw] service_network_identifier
|
572
|
-
# The ID or
|
573
|
-
#
|
574
|
-
# in different accounts.
|
932
|
+
# The ID or ARN of the service network. You must use an ARN if the
|
933
|
+
# resources are in different accounts.
|
575
934
|
# @return [String]
|
576
935
|
#
|
577
936
|
# @!attribute [rw] tags
|
@@ -809,7 +1168,7 @@ module Aws::VPCLattice
|
|
809
1168
|
end
|
810
1169
|
|
811
1170
|
# @!attribute [rw] access_log_subscription_identifier
|
812
|
-
# The ID or
|
1171
|
+
# The ID or ARN of the access log subscription.
|
813
1172
|
# @return [String]
|
814
1173
|
#
|
815
1174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteAccessLogSubscriptionRequest AWS API Documentation
|
@@ -825,7 +1184,7 @@ module Aws::VPCLattice
|
|
825
1184
|
class DeleteAccessLogSubscriptionResponse < Aws::EmptyStructure; end
|
826
1185
|
|
827
1186
|
# @!attribute [rw] resource_identifier
|
828
|
-
# The ID or
|
1187
|
+
# The ID or ARN of the resource.
|
829
1188
|
# @return [String]
|
830
1189
|
#
|
831
1190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteAuthPolicyRequest AWS API Documentation
|
@@ -841,11 +1200,11 @@ module Aws::VPCLattice
|
|
841
1200
|
class DeleteAuthPolicyResponse < Aws::EmptyStructure; end
|
842
1201
|
|
843
1202
|
# @!attribute [rw] listener_identifier
|
844
|
-
# The ID or
|
1203
|
+
# The ID or ARN of the listener.
|
845
1204
|
# @return [String]
|
846
1205
|
#
|
847
1206
|
# @!attribute [rw] service_identifier
|
848
|
-
# The ID or
|
1207
|
+
# The ID or ARN of the service.
|
849
1208
|
# @return [String]
|
850
1209
|
#
|
851
1210
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteListenerRequest AWS API Documentation
|
@@ -861,33 +1220,134 @@ module Aws::VPCLattice
|
|
861
1220
|
#
|
862
1221
|
class DeleteListenerResponse < Aws::EmptyStructure; end
|
863
1222
|
|
864
|
-
# @!attribute [rw]
|
865
|
-
# The
|
1223
|
+
# @!attribute [rw] resource_configuration_identifier
|
1224
|
+
# The ID or ARN of the resource configuration.
|
866
1225
|
# @return [String]
|
867
1226
|
#
|
868
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/
|
1227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourceConfigurationRequest AWS API Documentation
|
869
1228
|
#
|
870
|
-
class
|
871
|
-
:
|
1229
|
+
class DeleteResourceConfigurationRequest < Struct.new(
|
1230
|
+
:resource_configuration_identifier)
|
872
1231
|
SENSITIVE = []
|
873
1232
|
include Aws::Structure
|
874
1233
|
end
|
875
1234
|
|
876
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/
|
1235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourceConfigurationResponse AWS API Documentation
|
877
1236
|
#
|
878
|
-
class
|
1237
|
+
class DeleteResourceConfigurationResponse < Aws::EmptyStructure; end
|
879
1238
|
|
880
|
-
# @!attribute [rw]
|
881
|
-
# The ID or
|
1239
|
+
# @!attribute [rw] resource_endpoint_association_identifier
|
1240
|
+
# The ID or ARN of the association.
|
882
1241
|
# @return [String]
|
883
1242
|
#
|
884
|
-
#
|
885
|
-
# The ID or Amazon Resource Name (ARN) of the rule.
|
886
|
-
# @return [String]
|
1243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourceEndpointAssociationRequest AWS API Documentation
|
887
1244
|
#
|
888
|
-
|
889
|
-
|
890
|
-
|
1245
|
+
class DeleteResourceEndpointAssociationRequest < Struct.new(
|
1246
|
+
:resource_endpoint_association_identifier)
|
1247
|
+
SENSITIVE = []
|
1248
|
+
include Aws::Structure
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
# @!attribute [rw] arn
|
1252
|
+
# The Amazon Resource Name (ARN) of the association.
|
1253
|
+
# @return [String]
|
1254
|
+
#
|
1255
|
+
# @!attribute [rw] id
|
1256
|
+
# The ID of the association.
|
1257
|
+
# @return [String]
|
1258
|
+
#
|
1259
|
+
# @!attribute [rw] resource_configuration_arn
|
1260
|
+
# The Amazon Resource Name (ARN) of the resource configuration
|
1261
|
+
# associated with the VPC endpoint of type resource.
|
1262
|
+
# @return [String]
|
1263
|
+
#
|
1264
|
+
# @!attribute [rw] resource_configuration_id
|
1265
|
+
# The ID of the resource configuration.
|
1266
|
+
# @return [String]
|
1267
|
+
#
|
1268
|
+
# @!attribute [rw] vpc_endpoint_id
|
1269
|
+
# The ID of the resource VPC endpoint that is associated with the
|
1270
|
+
# resource configuration.
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourceEndpointAssociationResponse AWS API Documentation
|
1274
|
+
#
|
1275
|
+
class DeleteResourceEndpointAssociationResponse < Struct.new(
|
1276
|
+
:arn,
|
1277
|
+
:id,
|
1278
|
+
:resource_configuration_arn,
|
1279
|
+
:resource_configuration_id,
|
1280
|
+
:vpc_endpoint_id)
|
1281
|
+
SENSITIVE = []
|
1282
|
+
include Aws::Structure
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
# @!attribute [rw] resource_gateway_identifier
|
1286
|
+
# The ID or ARN of the resource gateway.
|
1287
|
+
# @return [String]
|
1288
|
+
#
|
1289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourceGatewayRequest AWS API Documentation
|
1290
|
+
#
|
1291
|
+
class DeleteResourceGatewayRequest < Struct.new(
|
1292
|
+
:resource_gateway_identifier)
|
1293
|
+
SENSITIVE = []
|
1294
|
+
include Aws::Structure
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
# @!attribute [rw] arn
|
1298
|
+
# The Amazon Resource Name (ARN) of the resource gateway.
|
1299
|
+
# @return [String]
|
1300
|
+
#
|
1301
|
+
# @!attribute [rw] id
|
1302
|
+
# The ID of the resource gateway.
|
1303
|
+
# @return [String]
|
1304
|
+
#
|
1305
|
+
# @!attribute [rw] name
|
1306
|
+
# The name of the resource gateway.
|
1307
|
+
# @return [String]
|
1308
|
+
#
|
1309
|
+
# @!attribute [rw] status
|
1310
|
+
# The status of the resource gateway.
|
1311
|
+
# @return [String]
|
1312
|
+
#
|
1313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourceGatewayResponse AWS API Documentation
|
1314
|
+
#
|
1315
|
+
class DeleteResourceGatewayResponse < Struct.new(
|
1316
|
+
:arn,
|
1317
|
+
:id,
|
1318
|
+
:name,
|
1319
|
+
:status)
|
1320
|
+
SENSITIVE = []
|
1321
|
+
include Aws::Structure
|
1322
|
+
end
|
1323
|
+
|
1324
|
+
# @!attribute [rw] resource_arn
|
1325
|
+
# The Amazon Resource Name (ARN) of the resource.
|
1326
|
+
# @return [String]
|
1327
|
+
#
|
1328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourcePolicyRequest AWS API Documentation
|
1329
|
+
#
|
1330
|
+
class DeleteResourcePolicyRequest < Struct.new(
|
1331
|
+
:resource_arn)
|
1332
|
+
SENSITIVE = []
|
1333
|
+
include Aws::Structure
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteResourcePolicyResponse AWS API Documentation
|
1337
|
+
#
|
1338
|
+
class DeleteResourcePolicyResponse < Aws::EmptyStructure; end
|
1339
|
+
|
1340
|
+
# @!attribute [rw] listener_identifier
|
1341
|
+
# The ID or ARN of the listener.
|
1342
|
+
# @return [String]
|
1343
|
+
#
|
1344
|
+
# @!attribute [rw] rule_identifier
|
1345
|
+
# The ID or ARN of the rule.
|
1346
|
+
# @return [String]
|
1347
|
+
#
|
1348
|
+
# @!attribute [rw] service_identifier
|
1349
|
+
# The ID or ARN of the service.
|
1350
|
+
# @return [String]
|
891
1351
|
#
|
892
1352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteRuleRequest AWS API Documentation
|
893
1353
|
#
|
@@ -904,7 +1364,7 @@ module Aws::VPCLattice
|
|
904
1364
|
class DeleteRuleResponse < Aws::EmptyStructure; end
|
905
1365
|
|
906
1366
|
# @!attribute [rw] service_network_identifier
|
907
|
-
# The
|
1367
|
+
# The ID or ARN of the service network.
|
908
1368
|
# @return [String]
|
909
1369
|
#
|
910
1370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteServiceNetworkRequest AWS API Documentation
|
@@ -915,12 +1375,46 @@ module Aws::VPCLattice
|
|
915
1375
|
include Aws::Structure
|
916
1376
|
end
|
917
1377
|
|
1378
|
+
# @!attribute [rw] service_network_resource_association_identifier
|
1379
|
+
# The ID of the association.
|
1380
|
+
# @return [String]
|
1381
|
+
#
|
1382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteServiceNetworkResourceAssociationRequest AWS API Documentation
|
1383
|
+
#
|
1384
|
+
class DeleteServiceNetworkResourceAssociationRequest < Struct.new(
|
1385
|
+
:service_network_resource_association_identifier)
|
1386
|
+
SENSITIVE = []
|
1387
|
+
include Aws::Structure
|
1388
|
+
end
|
1389
|
+
|
1390
|
+
# @!attribute [rw] arn
|
1391
|
+
# The Amazon Resource Name (ARN) of the association.
|
1392
|
+
# @return [String]
|
1393
|
+
#
|
1394
|
+
# @!attribute [rw] id
|
1395
|
+
# The ID of the association.
|
1396
|
+
# @return [String]
|
1397
|
+
#
|
1398
|
+
# @!attribute [rw] status
|
1399
|
+
# The status of the association.
|
1400
|
+
# @return [String]
|
1401
|
+
#
|
1402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteServiceNetworkResourceAssociationResponse AWS API Documentation
|
1403
|
+
#
|
1404
|
+
class DeleteServiceNetworkResourceAssociationResponse < Struct.new(
|
1405
|
+
:arn,
|
1406
|
+
:id,
|
1407
|
+
:status)
|
1408
|
+
SENSITIVE = []
|
1409
|
+
include Aws::Structure
|
1410
|
+
end
|
1411
|
+
|
918
1412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteServiceNetworkResponse AWS API Documentation
|
919
1413
|
#
|
920
1414
|
class DeleteServiceNetworkResponse < Aws::EmptyStructure; end
|
921
1415
|
|
922
1416
|
# @!attribute [rw] service_network_service_association_identifier
|
923
|
-
# The ID or
|
1417
|
+
# The ID or ARN of the association.
|
924
1418
|
# @return [String]
|
925
1419
|
#
|
926
1420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteServiceNetworkServiceAssociationRequest AWS API Documentation
|
@@ -956,7 +1450,7 @@ module Aws::VPCLattice
|
|
956
1450
|
end
|
957
1451
|
|
958
1452
|
# @!attribute [rw] service_network_vpc_association_identifier
|
959
|
-
# The ID or
|
1453
|
+
# The ID or ARN of the association.
|
960
1454
|
# @return [String]
|
961
1455
|
#
|
962
1456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteServiceNetworkVpcAssociationRequest AWS API Documentation
|
@@ -992,7 +1486,7 @@ module Aws::VPCLattice
|
|
992
1486
|
end
|
993
1487
|
|
994
1488
|
# @!attribute [rw] service_identifier
|
995
|
-
# The ID or
|
1489
|
+
# The ID or ARN of the service.
|
996
1490
|
# @return [String]
|
997
1491
|
#
|
998
1492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteServiceRequest AWS API Documentation
|
@@ -1033,7 +1527,7 @@ module Aws::VPCLattice
|
|
1033
1527
|
end
|
1034
1528
|
|
1035
1529
|
# @!attribute [rw] target_group_identifier
|
1036
|
-
# The ID or
|
1530
|
+
# The ID or ARN of the target group.
|
1037
1531
|
# @return [String]
|
1038
1532
|
#
|
1039
1533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DeleteTargetGroupRequest AWS API Documentation
|
@@ -1069,7 +1563,7 @@ module Aws::VPCLattice
|
|
1069
1563
|
end
|
1070
1564
|
|
1071
1565
|
# @!attribute [rw] target_group_identifier
|
1072
|
-
# The ID or
|
1566
|
+
# The ID or ARN of the target group.
|
1073
1567
|
# @return [String]
|
1074
1568
|
#
|
1075
1569
|
# @!attribute [rw] targets
|
@@ -1121,6 +1615,25 @@ module Aws::VPCLattice
|
|
1121
1615
|
include Aws::Structure
|
1122
1616
|
end
|
1123
1617
|
|
1618
|
+
# The DNS name of the resource.
|
1619
|
+
#
|
1620
|
+
# @!attribute [rw] domain_name
|
1621
|
+
# The domain name of the resource.
|
1622
|
+
# @return [String]
|
1623
|
+
#
|
1624
|
+
# @!attribute [rw] ip_address_type
|
1625
|
+
# The type of IP address.
|
1626
|
+
# @return [String]
|
1627
|
+
#
|
1628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/DnsResource AWS API Documentation
|
1629
|
+
#
|
1630
|
+
class DnsResource < Struct.new(
|
1631
|
+
:domain_name,
|
1632
|
+
:ip_address_type)
|
1633
|
+
SENSITIVE = []
|
1634
|
+
include Aws::Structure
|
1635
|
+
end
|
1636
|
+
|
1124
1637
|
# Describes an action that returns a custom HTTP response.
|
1125
1638
|
#
|
1126
1639
|
# @!attribute [rw] status_code
|
@@ -1161,7 +1674,7 @@ module Aws::VPCLattice
|
|
1161
1674
|
end
|
1162
1675
|
|
1163
1676
|
# @!attribute [rw] access_log_subscription_identifier
|
1164
|
-
# The ID or
|
1677
|
+
# The ID or ARN of the access log subscription.
|
1165
1678
|
# @return [String]
|
1166
1679
|
#
|
1167
1680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetAccessLogSubscriptionRequest AWS API Documentation
|
@@ -1177,8 +1690,8 @@ module Aws::VPCLattice
|
|
1177
1690
|
# @return [String]
|
1178
1691
|
#
|
1179
1692
|
# @!attribute [rw] created_at
|
1180
|
-
# The date and time that the access log subscription was created,
|
1181
|
-
#
|
1693
|
+
# The date and time that the access log subscription was created, in
|
1694
|
+
# ISO-8601 format.
|
1182
1695
|
# @return [Time]
|
1183
1696
|
#
|
1184
1697
|
# @!attribute [rw] destination_arn
|
@@ -1191,7 +1704,7 @@ module Aws::VPCLattice
|
|
1191
1704
|
#
|
1192
1705
|
# @!attribute [rw] last_updated_at
|
1193
1706
|
# The date and time that the access log subscription was last updated,
|
1194
|
-
#
|
1707
|
+
# in ISO-8601 format.
|
1195
1708
|
# @return [Time]
|
1196
1709
|
#
|
1197
1710
|
# @!attribute [rw] resource_arn
|
@@ -1202,6 +1715,10 @@ module Aws::VPCLattice
|
|
1202
1715
|
# The ID of the service network or service.
|
1203
1716
|
# @return [String]
|
1204
1717
|
#
|
1718
|
+
# @!attribute [rw] service_network_log_type
|
1719
|
+
# The log type for the service network.
|
1720
|
+
# @return [String]
|
1721
|
+
#
|
1205
1722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetAccessLogSubscriptionResponse AWS API Documentation
|
1206
1723
|
#
|
1207
1724
|
class GetAccessLogSubscriptionResponse < Struct.new(
|
@@ -1211,14 +1728,14 @@ module Aws::VPCLattice
|
|
1211
1728
|
:id,
|
1212
1729
|
:last_updated_at,
|
1213
1730
|
:resource_arn,
|
1214
|
-
:resource_id
|
1731
|
+
:resource_id,
|
1732
|
+
:service_network_log_type)
|
1215
1733
|
SENSITIVE = []
|
1216
1734
|
include Aws::Structure
|
1217
1735
|
end
|
1218
1736
|
|
1219
1737
|
# @!attribute [rw] resource_identifier
|
1220
|
-
# The ID or
|
1221
|
-
# service.
|
1738
|
+
# The ID or ARN of the service network or service.
|
1222
1739
|
# @return [String]
|
1223
1740
|
#
|
1224
1741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetAuthPolicyRequest AWS API Documentation
|
@@ -1230,13 +1747,13 @@ module Aws::VPCLattice
|
|
1230
1747
|
end
|
1231
1748
|
|
1232
1749
|
# @!attribute [rw] created_at
|
1233
|
-
# The date and time that the auth policy was created,
|
1234
|
-
#
|
1750
|
+
# The date and time that the auth policy was created, in ISO-8601
|
1751
|
+
# format.
|
1235
1752
|
# @return [Time]
|
1236
1753
|
#
|
1237
1754
|
# @!attribute [rw] last_updated_at
|
1238
|
-
# The date and time that the auth policy was last updated,
|
1239
|
-
#
|
1755
|
+
# The date and time that the auth policy was last updated, in ISO-8601
|
1756
|
+
# format.
|
1240
1757
|
# @return [Time]
|
1241
1758
|
#
|
1242
1759
|
# @!attribute [rw] policy
|
@@ -1269,11 +1786,11 @@ module Aws::VPCLattice
|
|
1269
1786
|
end
|
1270
1787
|
|
1271
1788
|
# @!attribute [rw] listener_identifier
|
1272
|
-
# The ID or
|
1789
|
+
# The ID or ARN of the listener.
|
1273
1790
|
# @return [String]
|
1274
1791
|
#
|
1275
1792
|
# @!attribute [rw] service_identifier
|
1276
|
-
# The ID or
|
1793
|
+
# The ID or ARN of the service.
|
1277
1794
|
# @return [String]
|
1278
1795
|
#
|
1279
1796
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetListenerRequest AWS API Documentation
|
@@ -1290,8 +1807,7 @@ module Aws::VPCLattice
|
|
1290
1807
|
# @return [String]
|
1291
1808
|
#
|
1292
1809
|
# @!attribute [rw] created_at
|
1293
|
-
# The date and time that the listener was created,
|
1294
|
-
# ISO-8601 format.
|
1810
|
+
# The date and time that the listener was created, in ISO-8601 format.
|
1295
1811
|
# @return [Time]
|
1296
1812
|
#
|
1297
1813
|
# @!attribute [rw] default_action
|
@@ -1303,8 +1819,8 @@ module Aws::VPCLattice
|
|
1303
1819
|
# @return [String]
|
1304
1820
|
#
|
1305
1821
|
# @!attribute [rw] last_updated_at
|
1306
|
-
# The date and time that the listener was last updated,
|
1307
|
-
#
|
1822
|
+
# The date and time that the listener was last updated, in ISO-8601
|
1823
|
+
# format.
|
1308
1824
|
# @return [Time]
|
1309
1825
|
#
|
1310
1826
|
# @!attribute [rw] name
|
@@ -1344,6 +1860,194 @@ module Aws::VPCLattice
|
|
1344
1860
|
include Aws::Structure
|
1345
1861
|
end
|
1346
1862
|
|
1863
|
+
# @!attribute [rw] resource_configuration_identifier
|
1864
|
+
# The ID of the resource configuration.
|
1865
|
+
# @return [String]
|
1866
|
+
#
|
1867
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetResourceConfigurationRequest AWS API Documentation
|
1868
|
+
#
|
1869
|
+
class GetResourceConfigurationRequest < Struct.new(
|
1870
|
+
:resource_configuration_identifier)
|
1871
|
+
SENSITIVE = []
|
1872
|
+
include Aws::Structure
|
1873
|
+
end
|
1874
|
+
|
1875
|
+
# @!attribute [rw] allow_association_to_shareable_service_network
|
1876
|
+
# Specifies whether the resource configuration is associated with a
|
1877
|
+
# sharable service network.
|
1878
|
+
# @return [Boolean]
|
1879
|
+
#
|
1880
|
+
# @!attribute [rw] amazon_managed
|
1881
|
+
# Indicates whether the resource configuration was created and is
|
1882
|
+
# managed by Amazon.
|
1883
|
+
# @return [Boolean]
|
1884
|
+
#
|
1885
|
+
# @!attribute [rw] arn
|
1886
|
+
# The Amazon Resource Name (ARN) of the resource configuration.
|
1887
|
+
# @return [String]
|
1888
|
+
#
|
1889
|
+
# @!attribute [rw] created_at
|
1890
|
+
# The date and time that the resource configuration was created, in
|
1891
|
+
# ISO-8601 format.
|
1892
|
+
# @return [Time]
|
1893
|
+
#
|
1894
|
+
# @!attribute [rw] custom_domain_name
|
1895
|
+
# The custom domain name of the resource configuration.
|
1896
|
+
# @return [String]
|
1897
|
+
#
|
1898
|
+
# @!attribute [rw] failure_reason
|
1899
|
+
# The reason the create-resource-configuration request failed.
|
1900
|
+
# @return [String]
|
1901
|
+
#
|
1902
|
+
# @!attribute [rw] id
|
1903
|
+
# The ID of the resource configuration.
|
1904
|
+
# @return [String]
|
1905
|
+
#
|
1906
|
+
# @!attribute [rw] last_updated_at
|
1907
|
+
# The most recent date and time that the resource configuration was
|
1908
|
+
# updated, in ISO-8601 format.
|
1909
|
+
# @return [Time]
|
1910
|
+
#
|
1911
|
+
# @!attribute [rw] name
|
1912
|
+
# The name of the resource configuration.
|
1913
|
+
# @return [String]
|
1914
|
+
#
|
1915
|
+
# @!attribute [rw] port_ranges
|
1916
|
+
# The TCP port ranges that a consumer can use to access a resource
|
1917
|
+
# configuration. You can separate port ranges with a comma. Example:
|
1918
|
+
# 1-65535 or 1,2,22-30
|
1919
|
+
# @return [Array<String>]
|
1920
|
+
#
|
1921
|
+
# @!attribute [rw] protocol
|
1922
|
+
# The TCP protocol accepted by the specified resource configuration.
|
1923
|
+
# @return [String]
|
1924
|
+
#
|
1925
|
+
# @!attribute [rw] resource_configuration_definition
|
1926
|
+
# The resource configuration.
|
1927
|
+
# @return [Types::ResourceConfigurationDefinition]
|
1928
|
+
#
|
1929
|
+
# @!attribute [rw] resource_configuration_group_id
|
1930
|
+
# The ID of the group resource configuration.
|
1931
|
+
# @return [String]
|
1932
|
+
#
|
1933
|
+
# @!attribute [rw] resource_gateway_id
|
1934
|
+
# The ID of the resource gateway used to connect to the resource
|
1935
|
+
# configuration in a given VPC. You can specify the resource gateway
|
1936
|
+
# identifier only for resource configurations with type SINGLE, GROUP,
|
1937
|
+
# or ARN.
|
1938
|
+
# @return [String]
|
1939
|
+
#
|
1940
|
+
# @!attribute [rw] status
|
1941
|
+
# The status of the resource configuration.
|
1942
|
+
# @return [String]
|
1943
|
+
#
|
1944
|
+
# @!attribute [rw] type
|
1945
|
+
# The type of resource configuration.
|
1946
|
+
#
|
1947
|
+
# * `SINGLE` - A single resource.
|
1948
|
+
#
|
1949
|
+
# * `GROUP` - A group of resources.
|
1950
|
+
#
|
1951
|
+
# * `CHILD` - A single resource that is part of a group resource
|
1952
|
+
# configuration.
|
1953
|
+
#
|
1954
|
+
# * `ARN` - An Amazon Web Services resource.
|
1955
|
+
# @return [String]
|
1956
|
+
#
|
1957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetResourceConfigurationResponse AWS API Documentation
|
1958
|
+
#
|
1959
|
+
class GetResourceConfigurationResponse < Struct.new(
|
1960
|
+
:allow_association_to_shareable_service_network,
|
1961
|
+
:amazon_managed,
|
1962
|
+
:arn,
|
1963
|
+
:created_at,
|
1964
|
+
:custom_domain_name,
|
1965
|
+
:failure_reason,
|
1966
|
+
:id,
|
1967
|
+
:last_updated_at,
|
1968
|
+
:name,
|
1969
|
+
:port_ranges,
|
1970
|
+
:protocol,
|
1971
|
+
:resource_configuration_definition,
|
1972
|
+
:resource_configuration_group_id,
|
1973
|
+
:resource_gateway_id,
|
1974
|
+
:status,
|
1975
|
+
:type)
|
1976
|
+
SENSITIVE = []
|
1977
|
+
include Aws::Structure
|
1978
|
+
end
|
1979
|
+
|
1980
|
+
# @!attribute [rw] resource_gateway_identifier
|
1981
|
+
# The ID of the resource gateway.
|
1982
|
+
# @return [String]
|
1983
|
+
#
|
1984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetResourceGatewayRequest AWS API Documentation
|
1985
|
+
#
|
1986
|
+
class GetResourceGatewayRequest < Struct.new(
|
1987
|
+
:resource_gateway_identifier)
|
1988
|
+
SENSITIVE = []
|
1989
|
+
include Aws::Structure
|
1990
|
+
end
|
1991
|
+
|
1992
|
+
# @!attribute [rw] arn
|
1993
|
+
# The Amazon Resource Name (ARN) of the resource gateway.
|
1994
|
+
# @return [String]
|
1995
|
+
#
|
1996
|
+
# @!attribute [rw] created_at
|
1997
|
+
# The date and time that the resource gateway was created, in ISO-8601
|
1998
|
+
# format.
|
1999
|
+
# @return [Time]
|
2000
|
+
#
|
2001
|
+
# @!attribute [rw] id
|
2002
|
+
# The ID of the resource gateway.
|
2003
|
+
# @return [String]
|
2004
|
+
#
|
2005
|
+
# @!attribute [rw] ip_address_type
|
2006
|
+
# The type of IP address for the resource gateway.
|
2007
|
+
# @return [String]
|
2008
|
+
#
|
2009
|
+
# @!attribute [rw] last_updated_at
|
2010
|
+
# The date and time that the resource gateway was last updated, in
|
2011
|
+
# ISO-8601 format.
|
2012
|
+
# @return [Time]
|
2013
|
+
#
|
2014
|
+
# @!attribute [rw] name
|
2015
|
+
# The name of the resource gateway.
|
2016
|
+
# @return [String]
|
2017
|
+
#
|
2018
|
+
# @!attribute [rw] security_group_ids
|
2019
|
+
# The security group IDs associated with the resource gateway.
|
2020
|
+
# @return [Array<String>]
|
2021
|
+
#
|
2022
|
+
# @!attribute [rw] status
|
2023
|
+
# The status for the resource gateway.
|
2024
|
+
# @return [String]
|
2025
|
+
#
|
2026
|
+
# @!attribute [rw] subnet_ids
|
2027
|
+
# The IDs of the VPC subnets for resource gateway.
|
2028
|
+
# @return [Array<String>]
|
2029
|
+
#
|
2030
|
+
# @!attribute [rw] vpc_id
|
2031
|
+
# The ID of the VPC for the resource gateway.
|
2032
|
+
# @return [String]
|
2033
|
+
#
|
2034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetResourceGatewayResponse AWS API Documentation
|
2035
|
+
#
|
2036
|
+
class GetResourceGatewayResponse < Struct.new(
|
2037
|
+
:arn,
|
2038
|
+
:created_at,
|
2039
|
+
:id,
|
2040
|
+
:ip_address_type,
|
2041
|
+
:last_updated_at,
|
2042
|
+
:name,
|
2043
|
+
:security_group_ids,
|
2044
|
+
:status,
|
2045
|
+
:subnet_ids,
|
2046
|
+
:vpc_id)
|
2047
|
+
SENSITIVE = []
|
2048
|
+
include Aws::Structure
|
2049
|
+
end
|
2050
|
+
|
1347
2051
|
# @!attribute [rw] resource_arn
|
1348
2052
|
# The Amazon Resource Name (ARN) of the service network or service.
|
1349
2053
|
# @return [String]
|
@@ -1369,15 +2073,15 @@ module Aws::VPCLattice
|
|
1369
2073
|
end
|
1370
2074
|
|
1371
2075
|
# @!attribute [rw] listener_identifier
|
1372
|
-
# The ID or
|
2076
|
+
# The ID or ARN of the listener.
|
1373
2077
|
# @return [String]
|
1374
2078
|
#
|
1375
2079
|
# @!attribute [rw] rule_identifier
|
1376
|
-
# The ID or
|
2080
|
+
# The ID or ARN of the listener rule.
|
1377
2081
|
# @return [String]
|
1378
2082
|
#
|
1379
2083
|
# @!attribute [rw] service_identifier
|
1380
|
-
# The ID or
|
2084
|
+
# The ID or ARN of the service.
|
1381
2085
|
# @return [String]
|
1382
2086
|
#
|
1383
2087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetRuleRequest AWS API Documentation
|
@@ -1399,8 +2103,8 @@ module Aws::VPCLattice
|
|
1399
2103
|
# @return [String]
|
1400
2104
|
#
|
1401
2105
|
# @!attribute [rw] created_at
|
1402
|
-
# The date and time that the listener rule was created,
|
1403
|
-
#
|
2106
|
+
# The date and time that the listener rule was created, in ISO-8601
|
2107
|
+
# format.
|
1404
2108
|
# @return [Time]
|
1405
2109
|
#
|
1406
2110
|
# @!attribute [rw] id
|
@@ -1412,8 +2116,8 @@ module Aws::VPCLattice
|
|
1412
2116
|
# @return [Boolean]
|
1413
2117
|
#
|
1414
2118
|
# @!attribute [rw] last_updated_at
|
1415
|
-
# The date and time that the listener rule was last updated,
|
1416
|
-
#
|
2119
|
+
# The date and time that the listener rule was last updated, in
|
2120
|
+
# ISO-8601 format.
|
1417
2121
|
# @return [Time]
|
1418
2122
|
#
|
1419
2123
|
# @!attribute [rw] match
|
@@ -1445,7 +2149,7 @@ module Aws::VPCLattice
|
|
1445
2149
|
end
|
1446
2150
|
|
1447
2151
|
# @!attribute [rw] service_network_identifier
|
1448
|
-
# The ID or
|
2152
|
+
# The ID or ARN of the service network.
|
1449
2153
|
# @return [String]
|
1450
2154
|
#
|
1451
2155
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkRequest AWS API Documentation
|
@@ -1456,6 +2160,117 @@ module Aws::VPCLattice
|
|
1456
2160
|
include Aws::Structure
|
1457
2161
|
end
|
1458
2162
|
|
2163
|
+
# @!attribute [rw] service_network_resource_association_identifier
|
2164
|
+
# The ID of the association.
|
2165
|
+
# @return [String]
|
2166
|
+
#
|
2167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkResourceAssociationRequest AWS API Documentation
|
2168
|
+
#
|
2169
|
+
class GetServiceNetworkResourceAssociationRequest < Struct.new(
|
2170
|
+
:service_network_resource_association_identifier)
|
2171
|
+
SENSITIVE = []
|
2172
|
+
include Aws::Structure
|
2173
|
+
end
|
2174
|
+
|
2175
|
+
# @!attribute [rw] arn
|
2176
|
+
# The Amazon Resource Name (ARN) of the association.
|
2177
|
+
# @return [String]
|
2178
|
+
#
|
2179
|
+
# @!attribute [rw] created_at
|
2180
|
+
# The date and time that the association was created, in ISO-8601
|
2181
|
+
# format.
|
2182
|
+
# @return [Time]
|
2183
|
+
#
|
2184
|
+
# @!attribute [rw] created_by
|
2185
|
+
# The account that created the association.
|
2186
|
+
# @return [String]
|
2187
|
+
#
|
2188
|
+
# @!attribute [rw] dns_entry
|
2189
|
+
# The DNS entry for the service.
|
2190
|
+
# @return [Types::DnsEntry]
|
2191
|
+
#
|
2192
|
+
# @!attribute [rw] failure_code
|
2193
|
+
# The failure code.
|
2194
|
+
# @return [String]
|
2195
|
+
#
|
2196
|
+
# @!attribute [rw] failure_reason
|
2197
|
+
# The reason the association request failed.
|
2198
|
+
# @return [String]
|
2199
|
+
#
|
2200
|
+
# @!attribute [rw] id
|
2201
|
+
# The ID of the association.
|
2202
|
+
# @return [String]
|
2203
|
+
#
|
2204
|
+
# @!attribute [rw] is_managed_association
|
2205
|
+
# Indicates whether the association is managed by Amazon.
|
2206
|
+
# @return [Boolean]
|
2207
|
+
#
|
2208
|
+
# @!attribute [rw] last_updated_at
|
2209
|
+
# The most recent date and time that the association was updated, in
|
2210
|
+
# ISO-8601 format.
|
2211
|
+
# @return [Time]
|
2212
|
+
#
|
2213
|
+
# @!attribute [rw] private_dns_entry
|
2214
|
+
# The private DNS entry for the service.
|
2215
|
+
# @return [Types::DnsEntry]
|
2216
|
+
#
|
2217
|
+
# @!attribute [rw] resource_configuration_arn
|
2218
|
+
# The Amazon Resource Name (ARN) of the association.
|
2219
|
+
# @return [String]
|
2220
|
+
#
|
2221
|
+
# @!attribute [rw] resource_configuration_id
|
2222
|
+
# The ID of the resource configuration that is associated with the
|
2223
|
+
# service network.
|
2224
|
+
# @return [String]
|
2225
|
+
#
|
2226
|
+
# @!attribute [rw] resource_configuration_name
|
2227
|
+
# The name of the resource configuration that is associated with the
|
2228
|
+
# service network.
|
2229
|
+
# @return [String]
|
2230
|
+
#
|
2231
|
+
# @!attribute [rw] service_network_arn
|
2232
|
+
# The Amazon Resource Name (ARN) of the service network that is
|
2233
|
+
# associated with the resource configuration.
|
2234
|
+
# @return [String]
|
2235
|
+
#
|
2236
|
+
# @!attribute [rw] service_network_id
|
2237
|
+
# The ID of the service network that is associated with the resource
|
2238
|
+
# configuration.
|
2239
|
+
# @return [String]
|
2240
|
+
#
|
2241
|
+
# @!attribute [rw] service_network_name
|
2242
|
+
# The name of the service network that is associated with the resource
|
2243
|
+
# configuration.
|
2244
|
+
# @return [String]
|
2245
|
+
#
|
2246
|
+
# @!attribute [rw] status
|
2247
|
+
# The status of the association.
|
2248
|
+
# @return [String]
|
2249
|
+
#
|
2250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkResourceAssociationResponse AWS API Documentation
|
2251
|
+
#
|
2252
|
+
class GetServiceNetworkResourceAssociationResponse < Struct.new(
|
2253
|
+
:arn,
|
2254
|
+
:created_at,
|
2255
|
+
:created_by,
|
2256
|
+
:dns_entry,
|
2257
|
+
:failure_code,
|
2258
|
+
:failure_reason,
|
2259
|
+
:id,
|
2260
|
+
:is_managed_association,
|
2261
|
+
:last_updated_at,
|
2262
|
+
:private_dns_entry,
|
2263
|
+
:resource_configuration_arn,
|
2264
|
+
:resource_configuration_id,
|
2265
|
+
:resource_configuration_name,
|
2266
|
+
:service_network_arn,
|
2267
|
+
:service_network_id,
|
2268
|
+
:service_network_name,
|
2269
|
+
:status)
|
2270
|
+
SENSITIVE = []
|
2271
|
+
include Aws::Structure
|
2272
|
+
end
|
2273
|
+
|
1459
2274
|
# @!attribute [rw] arn
|
1460
2275
|
# The Amazon Resource Name (ARN) of the service network.
|
1461
2276
|
# @return [String]
|
@@ -1465,8 +2280,8 @@ module Aws::VPCLattice
|
|
1465
2280
|
# @return [String]
|
1466
2281
|
#
|
1467
2282
|
# @!attribute [rw] created_at
|
1468
|
-
# The date and time that the service network was created,
|
1469
|
-
#
|
2283
|
+
# The date and time that the service network was created, in ISO-8601
|
2284
|
+
# format.
|
1470
2285
|
# @return [Time]
|
1471
2286
|
#
|
1472
2287
|
# @!attribute [rw] id
|
@@ -1474,7 +2289,7 @@ module Aws::VPCLattice
|
|
1474
2289
|
# @return [String]
|
1475
2290
|
#
|
1476
2291
|
# @!attribute [rw] last_updated_at
|
1477
|
-
# The date and time of the last update,
|
2292
|
+
# The date and time of the last update, in ISO-8601 format.
|
1478
2293
|
# @return [Time]
|
1479
2294
|
#
|
1480
2295
|
# @!attribute [rw] name
|
@@ -1489,6 +2304,10 @@ module Aws::VPCLattice
|
|
1489
2304
|
# The number of VPCs associated with the service network.
|
1490
2305
|
# @return [Integer]
|
1491
2306
|
#
|
2307
|
+
# @!attribute [rw] sharing_config
|
2308
|
+
# Specifies if the service network is enabled for sharing.
|
2309
|
+
# @return [Types::SharingConfig]
|
2310
|
+
#
|
1492
2311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkResponse AWS API Documentation
|
1493
2312
|
#
|
1494
2313
|
class GetServiceNetworkResponse < Struct.new(
|
@@ -1499,13 +2318,14 @@ module Aws::VPCLattice
|
|
1499
2318
|
:last_updated_at,
|
1500
2319
|
:name,
|
1501
2320
|
:number_of_associated_services,
|
1502
|
-
:number_of_associated_vp_cs
|
2321
|
+
:number_of_associated_vp_cs,
|
2322
|
+
:sharing_config)
|
1503
2323
|
SENSITIVE = []
|
1504
2324
|
include Aws::Structure
|
1505
2325
|
end
|
1506
2326
|
|
1507
2327
|
# @!attribute [rw] service_network_service_association_identifier
|
1508
|
-
# The ID or
|
2328
|
+
# The ID or ARN of the association.
|
1509
2329
|
# @return [String]
|
1510
2330
|
#
|
1511
2331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkServiceAssociationRequest AWS API Documentation
|
@@ -1521,8 +2341,8 @@ module Aws::VPCLattice
|
|
1521
2341
|
# @return [String]
|
1522
2342
|
#
|
1523
2343
|
# @!attribute [rw] created_at
|
1524
|
-
# The date and time that the association was created,
|
1525
|
-
#
|
2344
|
+
# The date and time that the association was created, in ISO-8601
|
2345
|
+
# format.
|
1526
2346
|
# @return [Time]
|
1527
2347
|
#
|
1528
2348
|
# @!attribute [rw] created_by
|
@@ -1600,7 +2420,7 @@ module Aws::VPCLattice
|
|
1600
2420
|
end
|
1601
2421
|
|
1602
2422
|
# @!attribute [rw] service_network_vpc_association_identifier
|
1603
|
-
# The ID or
|
2423
|
+
# The ID or ARN of the association.
|
1604
2424
|
# @return [String]
|
1605
2425
|
#
|
1606
2426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceNetworkVpcAssociationRequest AWS API Documentation
|
@@ -1616,8 +2436,8 @@ module Aws::VPCLattice
|
|
1616
2436
|
# @return [String]
|
1617
2437
|
#
|
1618
2438
|
# @!attribute [rw] created_at
|
1619
|
-
# The date and time that the association was created,
|
1620
|
-
#
|
2439
|
+
# The date and time that the association was created, in ISO-8601
|
2440
|
+
# format.
|
1621
2441
|
# @return [Time]
|
1622
2442
|
#
|
1623
2443
|
# @!attribute [rw] created_by
|
@@ -1633,13 +2453,12 @@ module Aws::VPCLattice
|
|
1633
2453
|
# @return [String]
|
1634
2454
|
#
|
1635
2455
|
# @!attribute [rw] id
|
1636
|
-
# The ID of the
|
1637
|
-
# the VPC.
|
2456
|
+
# The ID of the association.
|
1638
2457
|
# @return [String]
|
1639
2458
|
#
|
1640
2459
|
# @!attribute [rw] last_updated_at
|
1641
|
-
# The date and time that the association was last updated,
|
1642
|
-
#
|
2460
|
+
# The date and time that the association was last updated, in ISO-8601
|
2461
|
+
# format.
|
1643
2462
|
# @return [Time]
|
1644
2463
|
#
|
1645
2464
|
# @!attribute [rw] security_group_ids
|
@@ -1687,7 +2506,7 @@ module Aws::VPCLattice
|
|
1687
2506
|
end
|
1688
2507
|
|
1689
2508
|
# @!attribute [rw] service_identifier
|
1690
|
-
# The ID or
|
2509
|
+
# The ID or ARN of the service.
|
1691
2510
|
# @return [String]
|
1692
2511
|
#
|
1693
2512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetServiceRequest AWS API Documentation
|
@@ -1711,8 +2530,7 @@ module Aws::VPCLattice
|
|
1711
2530
|
# @return [String]
|
1712
2531
|
#
|
1713
2532
|
# @!attribute [rw] created_at
|
1714
|
-
# The date and time that the service was created,
|
1715
|
-
# ISO-8601 format.
|
2533
|
+
# The date and time that the service was created, in ISO-8601 format.
|
1716
2534
|
# @return [Time]
|
1717
2535
|
#
|
1718
2536
|
# @!attribute [rw] custom_domain_name
|
@@ -1736,8 +2554,8 @@ module Aws::VPCLattice
|
|
1736
2554
|
# @return [String]
|
1737
2555
|
#
|
1738
2556
|
# @!attribute [rw] last_updated_at
|
1739
|
-
# The date and time that the service was last updated,
|
1740
|
-
#
|
2557
|
+
# The date and time that the service was last updated, in ISO-8601
|
2558
|
+
# format.
|
1741
2559
|
# @return [Time]
|
1742
2560
|
#
|
1743
2561
|
# @!attribute [rw] name
|
@@ -1768,7 +2586,7 @@ module Aws::VPCLattice
|
|
1768
2586
|
end
|
1769
2587
|
|
1770
2588
|
# @!attribute [rw] target_group_identifier
|
1771
|
-
# The ID or
|
2589
|
+
# The ID or ARN of the target group.
|
1772
2590
|
# @return [String]
|
1773
2591
|
#
|
1774
2592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetTargetGroupRequest AWS API Documentation
|
@@ -1788,8 +2606,8 @@ module Aws::VPCLattice
|
|
1788
2606
|
# @return [Types::TargetGroupConfig]
|
1789
2607
|
#
|
1790
2608
|
# @!attribute [rw] created_at
|
1791
|
-
# The date and time that the target group was created,
|
1792
|
-
#
|
2609
|
+
# The date and time that the target group was created, in ISO-8601
|
2610
|
+
# format.
|
1793
2611
|
# @return [Time]
|
1794
2612
|
#
|
1795
2613
|
# @!attribute [rw] failure_code
|
@@ -1805,8 +2623,8 @@ module Aws::VPCLattice
|
|
1805
2623
|
# @return [String]
|
1806
2624
|
#
|
1807
2625
|
# @!attribute [rw] last_updated_at
|
1808
|
-
# The date and time that the target group was last updated,
|
1809
|
-
#
|
2626
|
+
# The date and time that the target group was last updated, in
|
2627
|
+
# ISO-8601 format.
|
1810
2628
|
# @return [Time]
|
1811
2629
|
#
|
1812
2630
|
# @!attribute [rw] name
|
@@ -2022,40 +2840,194 @@ module Aws::VPCLattice
|
|
2022
2840
|
include Aws::Structure
|
2023
2841
|
end
|
2024
2842
|
|
2843
|
+
# Describes an IP resource.
|
2844
|
+
#
|
2845
|
+
# @!attribute [rw] ip_address
|
2846
|
+
# The IP address of the IP resource.
|
2847
|
+
# @return [String]
|
2848
|
+
#
|
2849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/IpResource AWS API Documentation
|
2850
|
+
#
|
2851
|
+
class IpResource < Struct.new(
|
2852
|
+
:ip_address)
|
2853
|
+
SENSITIVE = []
|
2854
|
+
include Aws::Structure
|
2855
|
+
end
|
2856
|
+
|
2857
|
+
# @!attribute [rw] max_results
|
2858
|
+
# The maximum number of results to return.
|
2859
|
+
# @return [Integer]
|
2860
|
+
#
|
2861
|
+
# @!attribute [rw] next_token
|
2862
|
+
# A pagination token for the next page of results.
|
2863
|
+
# @return [String]
|
2864
|
+
#
|
2865
|
+
# @!attribute [rw] resource_identifier
|
2866
|
+
# The ID or ARN of the service network or service.
|
2867
|
+
# @return [String]
|
2868
|
+
#
|
2869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListAccessLogSubscriptionsRequest AWS API Documentation
|
2870
|
+
#
|
2871
|
+
class ListAccessLogSubscriptionsRequest < Struct.new(
|
2872
|
+
:max_results,
|
2873
|
+
:next_token,
|
2874
|
+
:resource_identifier)
|
2875
|
+
SENSITIVE = []
|
2876
|
+
include Aws::Structure
|
2877
|
+
end
|
2878
|
+
|
2879
|
+
# @!attribute [rw] items
|
2880
|
+
# Information about the access log subscriptions.
|
2881
|
+
# @return [Array<Types::AccessLogSubscriptionSummary>]
|
2882
|
+
#
|
2883
|
+
# @!attribute [rw] next_token
|
2884
|
+
# A pagination token for the next page of results.
|
2885
|
+
# @return [String]
|
2886
|
+
#
|
2887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListAccessLogSubscriptionsResponse AWS API Documentation
|
2888
|
+
#
|
2889
|
+
class ListAccessLogSubscriptionsResponse < Struct.new(
|
2890
|
+
:items,
|
2891
|
+
:next_token)
|
2892
|
+
SENSITIVE = []
|
2893
|
+
include Aws::Structure
|
2894
|
+
end
|
2895
|
+
|
2896
|
+
# @!attribute [rw] max_results
|
2897
|
+
# The maximum number of results to return.
|
2898
|
+
# @return [Integer]
|
2899
|
+
#
|
2900
|
+
# @!attribute [rw] next_token
|
2901
|
+
# A pagination token for the next page of results.
|
2902
|
+
# @return [String]
|
2903
|
+
#
|
2904
|
+
# @!attribute [rw] service_identifier
|
2905
|
+
# The ID or ARN of the service.
|
2906
|
+
# @return [String]
|
2907
|
+
#
|
2908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListListenersRequest AWS API Documentation
|
2909
|
+
#
|
2910
|
+
class ListListenersRequest < Struct.new(
|
2911
|
+
:max_results,
|
2912
|
+
:next_token,
|
2913
|
+
:service_identifier)
|
2914
|
+
SENSITIVE = []
|
2915
|
+
include Aws::Structure
|
2916
|
+
end
|
2917
|
+
|
2918
|
+
# @!attribute [rw] items
|
2919
|
+
# Information about the listeners.
|
2920
|
+
# @return [Array<Types::ListenerSummary>]
|
2921
|
+
#
|
2922
|
+
# @!attribute [rw] next_token
|
2923
|
+
# If there are additional results, a pagination token for the next
|
2924
|
+
# page of results.
|
2925
|
+
# @return [String]
|
2926
|
+
#
|
2927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListListenersResponse AWS API Documentation
|
2928
|
+
#
|
2929
|
+
class ListListenersResponse < Struct.new(
|
2930
|
+
:items,
|
2931
|
+
:next_token)
|
2932
|
+
SENSITIVE = []
|
2933
|
+
include Aws::Structure
|
2934
|
+
end
|
2935
|
+
|
2936
|
+
# @!attribute [rw] max_results
|
2937
|
+
# The maximum page size.
|
2938
|
+
# @return [Integer]
|
2939
|
+
#
|
2940
|
+
# @!attribute [rw] next_token
|
2941
|
+
# A pagination token for the next page of results.
|
2942
|
+
# @return [String]
|
2943
|
+
#
|
2944
|
+
# @!attribute [rw] resource_configuration_group_identifier
|
2945
|
+
# The ID of the group resource configuration.
|
2946
|
+
# @return [String]
|
2947
|
+
#
|
2948
|
+
# @!attribute [rw] resource_gateway_identifier
|
2949
|
+
# The ID of the resource gateway for the resource configuration.
|
2950
|
+
# @return [String]
|
2951
|
+
#
|
2952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceConfigurationsRequest AWS API Documentation
|
2953
|
+
#
|
2954
|
+
class ListResourceConfigurationsRequest < Struct.new(
|
2955
|
+
:max_results,
|
2956
|
+
:next_token,
|
2957
|
+
:resource_configuration_group_identifier,
|
2958
|
+
:resource_gateway_identifier)
|
2959
|
+
SENSITIVE = []
|
2960
|
+
include Aws::Structure
|
2961
|
+
end
|
2962
|
+
|
2963
|
+
# @!attribute [rw] items
|
2964
|
+
# Information about the resource configurations.
|
2965
|
+
# @return [Array<Types::ResourceConfigurationSummary>]
|
2966
|
+
#
|
2967
|
+
# @!attribute [rw] next_token
|
2968
|
+
# If there are additional results, a pagination token for the next
|
2969
|
+
# page of results.
|
2970
|
+
# @return [String]
|
2971
|
+
#
|
2972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceConfigurationsResponse AWS API Documentation
|
2973
|
+
#
|
2974
|
+
class ListResourceConfigurationsResponse < Struct.new(
|
2975
|
+
:items,
|
2976
|
+
:next_token)
|
2977
|
+
SENSITIVE = []
|
2978
|
+
include Aws::Structure
|
2979
|
+
end
|
2980
|
+
|
2025
2981
|
# @!attribute [rw] max_results
|
2026
|
-
# The maximum
|
2982
|
+
# The maximum page size.
|
2027
2983
|
# @return [Integer]
|
2028
2984
|
#
|
2029
2985
|
# @!attribute [rw] next_token
|
2030
2986
|
# A pagination token for the next page of results.
|
2031
2987
|
# @return [String]
|
2032
2988
|
#
|
2033
|
-
# @!attribute [rw]
|
2034
|
-
# The ID
|
2035
|
-
#
|
2989
|
+
# @!attribute [rw] resource_configuration_identifier
|
2990
|
+
# The ID for the resource configuration associated with the VPC
|
2991
|
+
# endpoint.
|
2036
2992
|
# @return [String]
|
2037
2993
|
#
|
2038
|
-
#
|
2994
|
+
# @!attribute [rw] resource_endpoint_association_identifier
|
2995
|
+
# The ID of the association.
|
2996
|
+
# @return [String]
|
2039
2997
|
#
|
2040
|
-
|
2998
|
+
# @!attribute [rw] vpc_endpoint_id
|
2999
|
+
# The ID of the VPC endpoint in the association.
|
3000
|
+
# @return [String]
|
3001
|
+
#
|
3002
|
+
# @!attribute [rw] vpc_endpoint_owner
|
3003
|
+
# The owner of the VPC endpoint in the association.
|
3004
|
+
# @return [String]
|
3005
|
+
#
|
3006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceEndpointAssociationsRequest AWS API Documentation
|
3007
|
+
#
|
3008
|
+
class ListResourceEndpointAssociationsRequest < Struct.new(
|
2041
3009
|
:max_results,
|
2042
3010
|
:next_token,
|
2043
|
-
:
|
3011
|
+
:resource_configuration_identifier,
|
3012
|
+
:resource_endpoint_association_identifier,
|
3013
|
+
:vpc_endpoint_id,
|
3014
|
+
:vpc_endpoint_owner)
|
2044
3015
|
SENSITIVE = []
|
2045
3016
|
include Aws::Structure
|
2046
3017
|
end
|
2047
3018
|
|
2048
3019
|
# @!attribute [rw] items
|
2049
|
-
# Information about the
|
2050
|
-
# @return [Array<Types::
|
3020
|
+
# Information about the VPC endpoint associations.
|
3021
|
+
# @return [Array<Types::ResourceEndpointAssociationSummary>]
|
2051
3022
|
#
|
2052
3023
|
# @!attribute [rw] next_token
|
2053
|
-
#
|
3024
|
+
# If there are additional results, a pagination token for the next
|
3025
|
+
# page of results.
|
2054
3026
|
# @return [String]
|
2055
3027
|
#
|
2056
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/
|
3028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceEndpointAssociationsResponse AWS API Documentation
|
2057
3029
|
#
|
2058
|
-
class
|
3030
|
+
class ListResourceEndpointAssociationsResponse < Struct.new(
|
2059
3031
|
:items,
|
2060
3032
|
:next_token)
|
2061
3033
|
SENSITIVE = []
|
@@ -2063,39 +3035,35 @@ module Aws::VPCLattice
|
|
2063
3035
|
end
|
2064
3036
|
|
2065
3037
|
# @!attribute [rw] max_results
|
2066
|
-
# The maximum
|
3038
|
+
# The maximum page size.
|
2067
3039
|
# @return [Integer]
|
2068
3040
|
#
|
2069
3041
|
# @!attribute [rw] next_token
|
2070
|
-
#
|
2071
|
-
#
|
2072
|
-
#
|
2073
|
-
# @!attribute [rw] service_identifier
|
2074
|
-
# The ID or Amazon Resource Name (ARN) of the service.
|
3042
|
+
# If there are additional results, a pagination token for the next
|
3043
|
+
# page of results.
|
2075
3044
|
# @return [String]
|
2076
3045
|
#
|
2077
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/
|
3046
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceGatewaysRequest AWS API Documentation
|
2078
3047
|
#
|
2079
|
-
class
|
3048
|
+
class ListResourceGatewaysRequest < Struct.new(
|
2080
3049
|
:max_results,
|
2081
|
-
:next_token
|
2082
|
-
:service_identifier)
|
3050
|
+
:next_token)
|
2083
3051
|
SENSITIVE = []
|
2084
3052
|
include Aws::Structure
|
2085
3053
|
end
|
2086
3054
|
|
2087
3055
|
# @!attribute [rw] items
|
2088
|
-
# Information about the
|
2089
|
-
# @return [Array<Types::
|
3056
|
+
# Information about the resource gateways.
|
3057
|
+
# @return [Array<Types::ResourceGatewaySummary>]
|
2090
3058
|
#
|
2091
3059
|
# @!attribute [rw] next_token
|
2092
3060
|
# If there are additional results, a pagination token for the next
|
2093
3061
|
# page of results.
|
2094
3062
|
# @return [String]
|
2095
3063
|
#
|
2096
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/
|
3064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListResourceGatewaysResponse AWS API Documentation
|
2097
3065
|
#
|
2098
|
-
class
|
3066
|
+
class ListResourceGatewaysResponse < Struct.new(
|
2099
3067
|
:items,
|
2100
3068
|
:next_token)
|
2101
3069
|
SENSITIVE = []
|
@@ -2103,7 +3071,7 @@ module Aws::VPCLattice
|
|
2103
3071
|
end
|
2104
3072
|
|
2105
3073
|
# @!attribute [rw] listener_identifier
|
2106
|
-
# The ID or
|
3074
|
+
# The ID or ARN of the listener.
|
2107
3075
|
# @return [String]
|
2108
3076
|
#
|
2109
3077
|
# @!attribute [rw] max_results
|
@@ -2115,7 +3083,7 @@ module Aws::VPCLattice
|
|
2115
3083
|
# @return [String]
|
2116
3084
|
#
|
2117
3085
|
# @!attribute [rw] service_identifier
|
2118
|
-
# The ID or
|
3086
|
+
# The ID or ARN of the service.
|
2119
3087
|
# @return [String]
|
2120
3088
|
#
|
2121
3089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListRulesRequest AWS API Documentation
|
@@ -2147,6 +3115,52 @@ module Aws::VPCLattice
|
|
2147
3115
|
include Aws::Structure
|
2148
3116
|
end
|
2149
3117
|
|
3118
|
+
# @!attribute [rw] max_results
|
3119
|
+
# The maximum page size.
|
3120
|
+
# @return [Integer]
|
3121
|
+
#
|
3122
|
+
# @!attribute [rw] next_token
|
3123
|
+
# If there are additional results, a pagination token for the next
|
3124
|
+
# page of results.
|
3125
|
+
# @return [String]
|
3126
|
+
#
|
3127
|
+
# @!attribute [rw] resource_configuration_identifier
|
3128
|
+
# The ID of the resource configurationk.
|
3129
|
+
# @return [String]
|
3130
|
+
#
|
3131
|
+
# @!attribute [rw] service_network_identifier
|
3132
|
+
# The ID of the service network.
|
3133
|
+
# @return [String]
|
3134
|
+
#
|
3135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListServiceNetworkResourceAssociationsRequest AWS API Documentation
|
3136
|
+
#
|
3137
|
+
class ListServiceNetworkResourceAssociationsRequest < Struct.new(
|
3138
|
+
:max_results,
|
3139
|
+
:next_token,
|
3140
|
+
:resource_configuration_identifier,
|
3141
|
+
:service_network_identifier)
|
3142
|
+
SENSITIVE = []
|
3143
|
+
include Aws::Structure
|
3144
|
+
end
|
3145
|
+
|
3146
|
+
# @!attribute [rw] items
|
3147
|
+
# Information about the associations.
|
3148
|
+
# @return [Array<Types::ServiceNetworkResourceAssociationSummary>]
|
3149
|
+
#
|
3150
|
+
# @!attribute [rw] next_token
|
3151
|
+
# If there are additional results, a pagination token for the next
|
3152
|
+
# page of results.
|
3153
|
+
# @return [String]
|
3154
|
+
#
|
3155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListServiceNetworkResourceAssociationsResponse AWS API Documentation
|
3156
|
+
#
|
3157
|
+
class ListServiceNetworkResourceAssociationsResponse < Struct.new(
|
3158
|
+
:items,
|
3159
|
+
:next_token)
|
3160
|
+
SENSITIVE = []
|
3161
|
+
include Aws::Structure
|
3162
|
+
end
|
3163
|
+
|
2150
3164
|
# @!attribute [rw] max_results
|
2151
3165
|
# The maximum number of results to return.
|
2152
3166
|
# @return [Integer]
|
@@ -2156,11 +3170,11 @@ module Aws::VPCLattice
|
|
2156
3170
|
# @return [String]
|
2157
3171
|
#
|
2158
3172
|
# @!attribute [rw] service_identifier
|
2159
|
-
# The ID or
|
3173
|
+
# The ID or ARN of the service.
|
2160
3174
|
# @return [String]
|
2161
3175
|
#
|
2162
3176
|
# @!attribute [rw] service_network_identifier
|
2163
|
-
# The ID or
|
3177
|
+
# The ID or ARN of the service network.
|
2164
3178
|
# @return [String]
|
2165
3179
|
#
|
2166
3180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListServiceNetworkServiceAssociationsRequest AWS API Documentation
|
@@ -2201,11 +3215,11 @@ module Aws::VPCLattice
|
|
2201
3215
|
# @return [String]
|
2202
3216
|
#
|
2203
3217
|
# @!attribute [rw] service_network_identifier
|
2204
|
-
# The ID or
|
3218
|
+
# The ID or ARN of the service network.
|
2205
3219
|
# @return [String]
|
2206
3220
|
#
|
2207
3221
|
# @!attribute [rw] vpc_identifier
|
2208
|
-
# The ID or
|
3222
|
+
# The ID or ARN of the VPC.
|
2209
3223
|
# @return [String]
|
2210
3224
|
#
|
2211
3225
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListServiceNetworkVpcAssociationsRequest AWS API Documentation
|
@@ -2237,6 +3251,48 @@ module Aws::VPCLattice
|
|
2237
3251
|
include Aws::Structure
|
2238
3252
|
end
|
2239
3253
|
|
3254
|
+
# @!attribute [rw] max_results
|
3255
|
+
# The maximum page size.
|
3256
|
+
# @return [Integer]
|
3257
|
+
#
|
3258
|
+
# @!attribute [rw] next_token
|
3259
|
+
# If there are additional results, a pagination token for the next
|
3260
|
+
# page of results.
|
3261
|
+
# @return [String]
|
3262
|
+
#
|
3263
|
+
# @!attribute [rw] service_network_identifier
|
3264
|
+
# The ID of the service network associated with the VPC endpoint.
|
3265
|
+
# @return [String]
|
3266
|
+
#
|
3267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListServiceNetworkVpcEndpointAssociationsRequest AWS API Documentation
|
3268
|
+
#
|
3269
|
+
class ListServiceNetworkVpcEndpointAssociationsRequest < Struct.new(
|
3270
|
+
:max_results,
|
3271
|
+
:next_token,
|
3272
|
+
:service_network_identifier)
|
3273
|
+
SENSITIVE = []
|
3274
|
+
include Aws::Structure
|
3275
|
+
end
|
3276
|
+
|
3277
|
+
# @!attribute [rw] items
|
3278
|
+
# Information about the association between the VPC endpoint and
|
3279
|
+
# service network.
|
3280
|
+
# @return [Array<Types::ServiceNetworkEndpointAssociation>]
|
3281
|
+
#
|
3282
|
+
# @!attribute [rw] next_token
|
3283
|
+
# If there are additional results, a pagination token for the next
|
3284
|
+
# page of results.
|
3285
|
+
# @return [String]
|
3286
|
+
#
|
3287
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListServiceNetworkVpcEndpointAssociationsResponse AWS API Documentation
|
3288
|
+
#
|
3289
|
+
class ListServiceNetworkVpcEndpointAssociationsResponse < Struct.new(
|
3290
|
+
:items,
|
3291
|
+
:next_token)
|
3292
|
+
SENSITIVE = []
|
3293
|
+
include Aws::Structure
|
3294
|
+
end
|
3295
|
+
|
2240
3296
|
# @!attribute [rw] max_results
|
2241
3297
|
# The maximum number of results to return.
|
2242
3298
|
# @return [Integer]
|
@@ -2344,7 +3400,7 @@ module Aws::VPCLattice
|
|
2344
3400
|
# @return [String]
|
2345
3401
|
#
|
2346
3402
|
# @!attribute [rw] vpc_identifier
|
2347
|
-
# The ID or
|
3403
|
+
# The ID or ARN of the VPC.
|
2348
3404
|
# @return [String]
|
2349
3405
|
#
|
2350
3406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListTargetGroupsRequest AWS API Documentation
|
@@ -2385,7 +3441,7 @@ module Aws::VPCLattice
|
|
2385
3441
|
# @return [String]
|
2386
3442
|
#
|
2387
3443
|
# @!attribute [rw] target_group_identifier
|
2388
|
-
# The ID or
|
3444
|
+
# The ID or ARN of the target group.
|
2389
3445
|
# @return [String]
|
2390
3446
|
#
|
2391
3447
|
# @!attribute [rw] targets
|
@@ -2428,8 +3484,7 @@ module Aws::VPCLattice
|
|
2428
3484
|
# @return [String]
|
2429
3485
|
#
|
2430
3486
|
# @!attribute [rw] created_at
|
2431
|
-
# The date and time that the listener was created,
|
2432
|
-
# ISO-8601 format.
|
3487
|
+
# The date and time that the listener was created, in ISO-8601 format.
|
2433
3488
|
# @return [Time]
|
2434
3489
|
#
|
2435
3490
|
# @!attribute [rw] id
|
@@ -2437,8 +3492,8 @@ module Aws::VPCLattice
|
|
2437
3492
|
# @return [String]
|
2438
3493
|
#
|
2439
3494
|
# @!attribute [rw] last_updated_at
|
2440
|
-
# The date and time that the listener was last updated,
|
2441
|
-
#
|
3495
|
+
# The date and time that the listener was last updated, in ISO-8601
|
3496
|
+
# format.
|
2442
3497
|
# @return [Time]
|
2443
3498
|
#
|
2444
3499
|
# @!attribute [rw] name
|
@@ -2548,8 +3603,8 @@ module Aws::VPCLattice
|
|
2548
3603
|
# @return [String]
|
2549
3604
|
#
|
2550
3605
|
# @!attribute [rw] resource_identifier
|
2551
|
-
# The ID or
|
2552
|
-
#
|
3606
|
+
# The ID or ARN of the service network or service for which the policy
|
3607
|
+
# is created.
|
2553
3608
|
# @return [String]
|
2554
3609
|
#
|
2555
3610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/PutAuthPolicyRequest AWS API Documentation
|
@@ -2595,8 +3650,8 @@ module Aws::VPCLattice
|
|
2595
3650
|
# @return [String]
|
2596
3651
|
#
|
2597
3652
|
# @!attribute [rw] resource_arn
|
2598
|
-
# The ID or
|
2599
|
-
#
|
3653
|
+
# The ID or ARN of the service network or service for which the policy
|
3654
|
+
# is created.
|
2600
3655
|
# @return [String]
|
2601
3656
|
#
|
2602
3657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/PutResourcePolicyRequest AWS API Documentation
|
@@ -2610,38 +3665,260 @@ module Aws::VPCLattice
|
|
2610
3665
|
|
2611
3666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/PutResourcePolicyResponse AWS API Documentation
|
2612
3667
|
#
|
2613
|
-
class PutResourcePolicyResponse < Aws::EmptyStructure; end
|
2614
|
-
|
2615
|
-
# @!attribute [rw] target_group_identifier
|
2616
|
-
# The ID or
|
3668
|
+
class PutResourcePolicyResponse < Aws::EmptyStructure; end
|
3669
|
+
|
3670
|
+
# @!attribute [rw] target_group_identifier
|
3671
|
+
# The ID or ARN of the target group.
|
3672
|
+
# @return [String]
|
3673
|
+
#
|
3674
|
+
# @!attribute [rw] targets
|
3675
|
+
# The targets.
|
3676
|
+
# @return [Array<Types::Target>]
|
3677
|
+
#
|
3678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/RegisterTargetsRequest AWS API Documentation
|
3679
|
+
#
|
3680
|
+
class RegisterTargetsRequest < Struct.new(
|
3681
|
+
:target_group_identifier,
|
3682
|
+
:targets)
|
3683
|
+
SENSITIVE = []
|
3684
|
+
include Aws::Structure
|
3685
|
+
end
|
3686
|
+
|
3687
|
+
# @!attribute [rw] successful
|
3688
|
+
# The targets that were successfully registered.
|
3689
|
+
# @return [Array<Types::Target>]
|
3690
|
+
#
|
3691
|
+
# @!attribute [rw] unsuccessful
|
3692
|
+
# The targets that were not registered.
|
3693
|
+
# @return [Array<Types::TargetFailure>]
|
3694
|
+
#
|
3695
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/RegisterTargetsResponse AWS API Documentation
|
3696
|
+
#
|
3697
|
+
class RegisterTargetsResponse < Struct.new(
|
3698
|
+
:successful,
|
3699
|
+
:unsuccessful)
|
3700
|
+
SENSITIVE = []
|
3701
|
+
include Aws::Structure
|
3702
|
+
end
|
3703
|
+
|
3704
|
+
# Describes a resource configuration.
|
3705
|
+
#
|
3706
|
+
# @note ResourceConfigurationDefinition is a union - when making an API calls you must set exactly one of the members.
|
3707
|
+
#
|
3708
|
+
# @note ResourceConfigurationDefinition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceConfigurationDefinition corresponding to the set member.
|
3709
|
+
#
|
3710
|
+
# @!attribute [rw] arn_resource
|
3711
|
+
# The Amazon Resource Name (ARN) of the resource.
|
3712
|
+
# @return [Types::ArnResource]
|
3713
|
+
#
|
3714
|
+
# @!attribute [rw] dns_resource
|
3715
|
+
# The DNS name of the resource.
|
3716
|
+
# @return [Types::DnsResource]
|
3717
|
+
#
|
3718
|
+
# @!attribute [rw] ip_resource
|
3719
|
+
# The IP resource.
|
3720
|
+
# @return [Types::IpResource]
|
3721
|
+
#
|
3722
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ResourceConfigurationDefinition AWS API Documentation
|
3723
|
+
#
|
3724
|
+
class ResourceConfigurationDefinition < Struct.new(
|
3725
|
+
:arn_resource,
|
3726
|
+
:dns_resource,
|
3727
|
+
:ip_resource,
|
3728
|
+
:unknown)
|
3729
|
+
SENSITIVE = []
|
3730
|
+
include Aws::Structure
|
3731
|
+
include Aws::Structure::Union
|
3732
|
+
|
3733
|
+
class ArnResource < ResourceConfigurationDefinition; end
|
3734
|
+
class DnsResource < ResourceConfigurationDefinition; end
|
3735
|
+
class IpResource < ResourceConfigurationDefinition; end
|
3736
|
+
class Unknown < ResourceConfigurationDefinition; end
|
3737
|
+
end
|
3738
|
+
|
3739
|
+
# Summary information about a resource configuration.
|
3740
|
+
#
|
3741
|
+
# @!attribute [rw] amazon_managed
|
3742
|
+
# Indicates whether the resource configuration was created and is
|
3743
|
+
# managed by Amazon.
|
3744
|
+
# @return [Boolean]
|
3745
|
+
#
|
3746
|
+
# @!attribute [rw] arn
|
3747
|
+
# The Amazon Resource Name (ARN) of the resource configuration.
|
3748
|
+
# @return [String]
|
3749
|
+
#
|
3750
|
+
# @!attribute [rw] created_at
|
3751
|
+
# The date and time that the resource configuration was created, in
|
3752
|
+
# ISO-8601 format.
|
3753
|
+
# @return [Time]
|
3754
|
+
#
|
3755
|
+
# @!attribute [rw] id
|
3756
|
+
# The ID of the resource configuration.
|
3757
|
+
# @return [String]
|
3758
|
+
#
|
3759
|
+
# @!attribute [rw] last_updated_at
|
3760
|
+
# The most recent date and time that the resource configuration was
|
3761
|
+
# updated, in ISO-8601 format.
|
3762
|
+
# @return [Time]
|
3763
|
+
#
|
3764
|
+
# @!attribute [rw] name
|
3765
|
+
# The name of the resource configuration.
|
3766
|
+
# @return [String]
|
3767
|
+
#
|
3768
|
+
# @!attribute [rw] resource_configuration_group_id
|
3769
|
+
# The ID of the group resource configuration.
|
3770
|
+
# @return [String]
|
3771
|
+
#
|
3772
|
+
# @!attribute [rw] resource_gateway_id
|
3773
|
+
# The ID of the resource gateway.
|
3774
|
+
# @return [String]
|
3775
|
+
#
|
3776
|
+
# @!attribute [rw] status
|
3777
|
+
# The status of the resource configuration.
|
3778
|
+
# @return [String]
|
3779
|
+
#
|
3780
|
+
# @!attribute [rw] type
|
3781
|
+
# The type of resource configuration.
|
3782
|
+
#
|
3783
|
+
# * `SINGLE` - A single resource.
|
3784
|
+
#
|
3785
|
+
# * `GROUP` - A group of resources.
|
3786
|
+
#
|
3787
|
+
# * `CHILD` - A single resource that is part of a group resource
|
3788
|
+
# configuration.
|
3789
|
+
#
|
3790
|
+
# * `ARN` - An Amazon Web Services resource.
|
3791
|
+
# @return [String]
|
3792
|
+
#
|
3793
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ResourceConfigurationSummary AWS API Documentation
|
3794
|
+
#
|
3795
|
+
class ResourceConfigurationSummary < Struct.new(
|
3796
|
+
:amazon_managed,
|
3797
|
+
:arn,
|
3798
|
+
:created_at,
|
3799
|
+
:id,
|
3800
|
+
:last_updated_at,
|
3801
|
+
:name,
|
3802
|
+
:resource_configuration_group_id,
|
3803
|
+
:resource_gateway_id,
|
3804
|
+
:status,
|
3805
|
+
:type)
|
3806
|
+
SENSITIVE = []
|
3807
|
+
include Aws::Structure
|
3808
|
+
end
|
3809
|
+
|
3810
|
+
# Summary information about a VPC endpoint association.
|
3811
|
+
#
|
3812
|
+
# @!attribute [rw] arn
|
3813
|
+
# The Amazon Resource Name (ARN) of the VPC endpoint association.
|
3814
|
+
# @return [String]
|
3815
|
+
#
|
3816
|
+
# @!attribute [rw] created_at
|
3817
|
+
# The date and time that the VPC endpoint association was created, in
|
3818
|
+
# ISO-8601 format.
|
3819
|
+
# @return [Time]
|
3820
|
+
#
|
3821
|
+
# @!attribute [rw] created_by
|
3822
|
+
# The account that created the association.
|
3823
|
+
# @return [String]
|
3824
|
+
#
|
3825
|
+
# @!attribute [rw] id
|
3826
|
+
# The ID of the VPC endpoint association.
|
3827
|
+
# @return [String]
|
3828
|
+
#
|
3829
|
+
# @!attribute [rw] resource_configuration_arn
|
3830
|
+
# The Amazon Resource Name (ARN) of the resource configuration.
|
3831
|
+
# @return [String]
|
3832
|
+
#
|
3833
|
+
# @!attribute [rw] resource_configuration_id
|
3834
|
+
# The ID of the resource configuration.
|
3835
|
+
# @return [String]
|
3836
|
+
#
|
3837
|
+
# @!attribute [rw] resource_configuration_name
|
3838
|
+
# The name of the resource configuration.
|
3839
|
+
# @return [String]
|
3840
|
+
#
|
3841
|
+
# @!attribute [rw] vpc_endpoint_id
|
3842
|
+
# The ID of the VPC endpoint.
|
3843
|
+
# @return [String]
|
3844
|
+
#
|
3845
|
+
# @!attribute [rw] vpc_endpoint_owner
|
3846
|
+
# The owner of the VPC endpoint.
|
3847
|
+
# @return [String]
|
3848
|
+
#
|
3849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ResourceEndpointAssociationSummary AWS API Documentation
|
3850
|
+
#
|
3851
|
+
class ResourceEndpointAssociationSummary < Struct.new(
|
3852
|
+
:arn,
|
3853
|
+
:created_at,
|
3854
|
+
:created_by,
|
3855
|
+
:id,
|
3856
|
+
:resource_configuration_arn,
|
3857
|
+
:resource_configuration_id,
|
3858
|
+
:resource_configuration_name,
|
3859
|
+
:vpc_endpoint_id,
|
3860
|
+
:vpc_endpoint_owner)
|
3861
|
+
SENSITIVE = []
|
3862
|
+
include Aws::Structure
|
3863
|
+
end
|
3864
|
+
|
3865
|
+
# Summary information about a resource gateway.
|
3866
|
+
#
|
3867
|
+
# @!attribute [rw] arn
|
3868
|
+
# The Amazon Resource Name (ARN) of the resource gateway.
|
3869
|
+
# @return [String]
|
3870
|
+
#
|
3871
|
+
# @!attribute [rw] created_at
|
3872
|
+
# The date and time that the VPC endpoint association was created, in
|
3873
|
+
# ISO-8601 format.
|
3874
|
+
# @return [Time]
|
3875
|
+
#
|
3876
|
+
# @!attribute [rw] id
|
3877
|
+
# The ID of the resource gateway.
|
3878
|
+
# @return [String]
|
3879
|
+
#
|
3880
|
+
# @!attribute [rw] ip_address_type
|
3881
|
+
# The type of IP address used by the resource gateway.
|
3882
|
+
# @return [String]
|
3883
|
+
#
|
3884
|
+
# @!attribute [rw] last_updated_at
|
3885
|
+
# The most recent date and time that the resource gateway was updated,
|
3886
|
+
# in ISO-8601 format.
|
3887
|
+
# @return [Time]
|
3888
|
+
#
|
3889
|
+
# @!attribute [rw] name
|
3890
|
+
# The name of the resource gateway.
|
2617
3891
|
# @return [String]
|
2618
3892
|
#
|
2619
|
-
# @!attribute [rw]
|
2620
|
-
# The
|
2621
|
-
# @return [Array<
|
3893
|
+
# @!attribute [rw] security_group_ids
|
3894
|
+
# The IDs of the security groups applied to the resource gateway.
|
3895
|
+
# @return [Array<String>]
|
2622
3896
|
#
|
2623
|
-
#
|
3897
|
+
# @!attribute [rw] status
|
3898
|
+
# The name of the resource gateway.
|
3899
|
+
# @return [String]
|
2624
3900
|
#
|
2625
|
-
|
2626
|
-
|
2627
|
-
|
2628
|
-
SENSITIVE = []
|
2629
|
-
include Aws::Structure
|
2630
|
-
end
|
2631
|
-
|
2632
|
-
# @!attribute [rw] successful
|
2633
|
-
# The targets that were successfully registered.
|
2634
|
-
# @return [Array<Types::Target>]
|
3901
|
+
# @!attribute [rw] subnet_ids
|
3902
|
+
# The IDs of the VPC subnets for the resource gateway.
|
3903
|
+
# @return [Array<String>]
|
2635
3904
|
#
|
2636
|
-
# @!attribute [rw]
|
2637
|
-
# The
|
2638
|
-
# @return [
|
3905
|
+
# @!attribute [rw] vpc_identifier
|
3906
|
+
# The ID of the VPC for the resource gateway.
|
3907
|
+
# @return [String]
|
2639
3908
|
#
|
2640
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/
|
3909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ResourceGatewaySummary AWS API Documentation
|
2641
3910
|
#
|
2642
|
-
class
|
2643
|
-
:
|
2644
|
-
:
|
3911
|
+
class ResourceGatewaySummary < Struct.new(
|
3912
|
+
:arn,
|
3913
|
+
:created_at,
|
3914
|
+
:id,
|
3915
|
+
:ip_address_type,
|
3916
|
+
:last_updated_at,
|
3917
|
+
:name,
|
3918
|
+
:security_group_ids,
|
3919
|
+
:status,
|
3920
|
+
:subnet_ids,
|
3921
|
+
:vpc_identifier)
|
2645
3922
|
SENSITIVE = []
|
2646
3923
|
include Aws::Structure
|
2647
3924
|
end
|
@@ -2722,15 +3999,15 @@ module Aws::VPCLattice
|
|
2722
3999
|
class Unknown < RuleMatch; end
|
2723
4000
|
end
|
2724
4001
|
|
2725
|
-
# Summary information about
|
4002
|
+
# Summary information about a listener rule.
|
2726
4003
|
#
|
2727
4004
|
# @!attribute [rw] arn
|
2728
4005
|
# The Amazon Resource Name (ARN) of the rule.
|
2729
4006
|
# @return [String]
|
2730
4007
|
#
|
2731
4008
|
# @!attribute [rw] created_at
|
2732
|
-
# The date and time that the listener rule was created,
|
2733
|
-
#
|
4009
|
+
# The date and time that the listener rule was created, in ISO-8601
|
4010
|
+
# format.
|
2734
4011
|
# @return [Time]
|
2735
4012
|
#
|
2736
4013
|
# @!attribute [rw] id
|
@@ -2742,8 +4019,8 @@ module Aws::VPCLattice
|
|
2742
4019
|
# @return [Boolean]
|
2743
4020
|
#
|
2744
4021
|
# @!attribute [rw] last_updated_at
|
2745
|
-
# The date and time that the listener rule was last updated,
|
2746
|
-
#
|
4022
|
+
# The date and time that the listener rule was last updated, in
|
4023
|
+
# ISO-8601 format.
|
2747
4024
|
# @return [Time]
|
2748
4025
|
#
|
2749
4026
|
# @!attribute [rw] name
|
@@ -2784,7 +4061,7 @@ module Aws::VPCLattice
|
|
2784
4061
|
# @return [Integer]
|
2785
4062
|
#
|
2786
4063
|
# @!attribute [rw] rule_identifier
|
2787
|
-
# The ID or
|
4064
|
+
# The ID or ARN of the rule.
|
2788
4065
|
# @return [String]
|
2789
4066
|
#
|
2790
4067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/RuleUpdate AWS API Documentation
|
@@ -2809,7 +4086,7 @@ module Aws::VPCLattice
|
|
2809
4086
|
# @return [String]
|
2810
4087
|
#
|
2811
4088
|
# @!attribute [rw] rule_identifier
|
2812
|
-
# The ID or
|
4089
|
+
# The ID or ARN of the rule.
|
2813
4090
|
# @return [String]
|
2814
4091
|
#
|
2815
4092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/RuleUpdateFailure AWS API Documentation
|
@@ -2866,16 +4143,155 @@ module Aws::VPCLattice
|
|
2866
4143
|
include Aws::Structure
|
2867
4144
|
end
|
2868
4145
|
|
2869
|
-
#
|
2870
|
-
#
|
4146
|
+
# Describes the association between a service network and a VPC
|
4147
|
+
# endpoint.
|
4148
|
+
#
|
4149
|
+
# @!attribute [rw] created_at
|
4150
|
+
# The date and time that the association was created, in ISO-8601
|
4151
|
+
# format.
|
4152
|
+
# @return [Time]
|
4153
|
+
#
|
4154
|
+
# @!attribute [rw] id
|
4155
|
+
# The ID of the association.
|
4156
|
+
# @return [String]
|
4157
|
+
#
|
4158
|
+
# @!attribute [rw] service_network_arn
|
4159
|
+
# The Amazon Resource Name (ARN) of the service network.
|
4160
|
+
# @return [String]
|
4161
|
+
#
|
4162
|
+
# @!attribute [rw] state
|
4163
|
+
# The state of the association.
|
4164
|
+
# @return [String]
|
4165
|
+
#
|
4166
|
+
# @!attribute [rw] vpc_endpoint_id
|
4167
|
+
# The ID of the VPC endpoint associated with the service network.
|
4168
|
+
# @return [String]
|
4169
|
+
#
|
4170
|
+
# @!attribute [rw] vpc_endpoint_owner_id
|
4171
|
+
# The owner of the VPC endpoint associated with the service network.
|
4172
|
+
# @return [String]
|
4173
|
+
#
|
4174
|
+
# @!attribute [rw] vpc_id
|
4175
|
+
# The ID of the VPC for the association.
|
4176
|
+
# @return [String]
|
4177
|
+
#
|
4178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ServiceNetworkEndpointAssociation AWS API Documentation
|
4179
|
+
#
|
4180
|
+
class ServiceNetworkEndpointAssociation < Struct.new(
|
4181
|
+
:created_at,
|
4182
|
+
:id,
|
4183
|
+
:service_network_arn,
|
4184
|
+
:state,
|
4185
|
+
:vpc_endpoint_id,
|
4186
|
+
:vpc_endpoint_owner_id,
|
4187
|
+
:vpc_id)
|
4188
|
+
SENSITIVE = []
|
4189
|
+
include Aws::Structure
|
4190
|
+
end
|
4191
|
+
|
4192
|
+
# Summary information about an association between a service network and
|
4193
|
+
# a resource configuration.
|
2871
4194
|
#
|
2872
4195
|
# @!attribute [rw] arn
|
2873
4196
|
# The Amazon Resource Name (ARN) of the association.
|
2874
4197
|
# @return [String]
|
2875
4198
|
#
|
2876
4199
|
# @!attribute [rw] created_at
|
2877
|
-
# The date and time that the association was created,
|
2878
|
-
#
|
4200
|
+
# The date and time that the association was created, in ISO-8601
|
4201
|
+
# format.
|
4202
|
+
# @return [Time]
|
4203
|
+
#
|
4204
|
+
# @!attribute [rw] created_by
|
4205
|
+
# The account that created the association.
|
4206
|
+
# @return [String]
|
4207
|
+
#
|
4208
|
+
# @!attribute [rw] dns_entry
|
4209
|
+
# The DNS entry for the service.
|
4210
|
+
# @return [Types::DnsEntry]
|
4211
|
+
#
|
4212
|
+
# @!attribute [rw] failure_code
|
4213
|
+
# The failure code.
|
4214
|
+
# @return [String]
|
4215
|
+
#
|
4216
|
+
# @!attribute [rw] id
|
4217
|
+
# The ID of the association between the service network and resource
|
4218
|
+
# configuration.
|
4219
|
+
# @return [String]
|
4220
|
+
#
|
4221
|
+
# @!attribute [rw] is_managed_association
|
4222
|
+
# Specifies whether the association is managed by Amazon.
|
4223
|
+
# @return [Boolean]
|
4224
|
+
#
|
4225
|
+
# @!attribute [rw] private_dns_entry
|
4226
|
+
# The private DNS entry for the service.
|
4227
|
+
# @return [Types::DnsEntry]
|
4228
|
+
#
|
4229
|
+
# @!attribute [rw] resource_configuration_arn
|
4230
|
+
# The Amazon Resource Name (ARN) of the association.
|
4231
|
+
# @return [String]
|
4232
|
+
#
|
4233
|
+
# @!attribute [rw] resource_configuration_id
|
4234
|
+
# The ID of the resource configuration associated with the service
|
4235
|
+
# network.
|
4236
|
+
# @return [String]
|
4237
|
+
#
|
4238
|
+
# @!attribute [rw] resource_configuration_name
|
4239
|
+
# The name of the resource configuration associated with the service
|
4240
|
+
# network.
|
4241
|
+
# @return [String]
|
4242
|
+
#
|
4243
|
+
# @!attribute [rw] service_network_arn
|
4244
|
+
# The Amazon Resource Name (ARN) of the service network associated
|
4245
|
+
# with the resource configuration.
|
4246
|
+
# @return [String]
|
4247
|
+
#
|
4248
|
+
# @!attribute [rw] service_network_id
|
4249
|
+
# The ID of the service network associated with the resource
|
4250
|
+
# configuration.
|
4251
|
+
# @return [String]
|
4252
|
+
#
|
4253
|
+
# @!attribute [rw] service_network_name
|
4254
|
+
# The name of the service network associated with the resource
|
4255
|
+
# configuration.
|
4256
|
+
# @return [String]
|
4257
|
+
#
|
4258
|
+
# @!attribute [rw] status
|
4259
|
+
# The status of the service network associated with the resource
|
4260
|
+
# configuration.
|
4261
|
+
# @return [String]
|
4262
|
+
#
|
4263
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ServiceNetworkResourceAssociationSummary AWS API Documentation
|
4264
|
+
#
|
4265
|
+
class ServiceNetworkResourceAssociationSummary < Struct.new(
|
4266
|
+
:arn,
|
4267
|
+
:created_at,
|
4268
|
+
:created_by,
|
4269
|
+
:dns_entry,
|
4270
|
+
:failure_code,
|
4271
|
+
:id,
|
4272
|
+
:is_managed_association,
|
4273
|
+
:private_dns_entry,
|
4274
|
+
:resource_configuration_arn,
|
4275
|
+
:resource_configuration_id,
|
4276
|
+
:resource_configuration_name,
|
4277
|
+
:service_network_arn,
|
4278
|
+
:service_network_id,
|
4279
|
+
:service_network_name,
|
4280
|
+
:status)
|
4281
|
+
SENSITIVE = []
|
4282
|
+
include Aws::Structure
|
4283
|
+
end
|
4284
|
+
|
4285
|
+
# Summary information about an association between a service network and
|
4286
|
+
# a service.
|
4287
|
+
#
|
4288
|
+
# @!attribute [rw] arn
|
4289
|
+
# The Amazon Resource Name (ARN) of the association.
|
4290
|
+
# @return [String]
|
4291
|
+
#
|
4292
|
+
# @!attribute [rw] created_at
|
4293
|
+
# The date and time that the association was created, in ISO-8601
|
4294
|
+
# format.
|
2879
4295
|
# @return [Time]
|
2880
4296
|
#
|
2881
4297
|
# @!attribute [rw] created_by
|
@@ -2949,8 +4365,8 @@ module Aws::VPCLattice
|
|
2949
4365
|
# @return [String]
|
2950
4366
|
#
|
2951
4367
|
# @!attribute [rw] created_at
|
2952
|
-
# The date and time that the service network was created,
|
2953
|
-
#
|
4368
|
+
# The date and time that the service network was created, in ISO-8601
|
4369
|
+
# format.
|
2954
4370
|
# @return [Time]
|
2955
4371
|
#
|
2956
4372
|
# @!attribute [rw] id
|
@@ -2958,14 +4374,19 @@ module Aws::VPCLattice
|
|
2958
4374
|
# @return [String]
|
2959
4375
|
#
|
2960
4376
|
# @!attribute [rw] last_updated_at
|
2961
|
-
# The date and time that the service network was last updated,
|
2962
|
-
#
|
4377
|
+
# The date and time that the service network was last updated, in
|
4378
|
+
# ISO-8601 format.
|
2963
4379
|
# @return [Time]
|
2964
4380
|
#
|
2965
4381
|
# @!attribute [rw] name
|
2966
4382
|
# The name of the service network.
|
2967
4383
|
# @return [String]
|
2968
4384
|
#
|
4385
|
+
# @!attribute [rw] number_of_associated_resource_configurations
|
4386
|
+
# The number of resource configurations associated with a service
|
4387
|
+
# network.
|
4388
|
+
# @return [Integer]
|
4389
|
+
#
|
2969
4390
|
# @!attribute [rw] number_of_associated_services
|
2970
4391
|
# The number of services associated with the service network.
|
2971
4392
|
# @return [Integer]
|
@@ -2982,6 +4403,7 @@ module Aws::VPCLattice
|
|
2982
4403
|
:id,
|
2983
4404
|
:last_updated_at,
|
2984
4405
|
:name,
|
4406
|
+
:number_of_associated_resource_configurations,
|
2985
4407
|
:number_of_associated_services,
|
2986
4408
|
:number_of_associated_vp_cs)
|
2987
4409
|
SENSITIVE = []
|
@@ -2996,8 +4418,8 @@ module Aws::VPCLattice
|
|
2996
4418
|
# @return [String]
|
2997
4419
|
#
|
2998
4420
|
# @!attribute [rw] created_at
|
2999
|
-
# The date and time that the association was created,
|
3000
|
-
#
|
4421
|
+
# The date and time that the association was created, in ISO-8601
|
4422
|
+
# format.
|
3001
4423
|
# @return [Time]
|
3002
4424
|
#
|
3003
4425
|
# @!attribute [rw] created_by
|
@@ -3009,8 +4431,8 @@ module Aws::VPCLattice
|
|
3009
4431
|
# @return [String]
|
3010
4432
|
#
|
3011
4433
|
# @!attribute [rw] last_updated_at
|
3012
|
-
# The date and time that the association was last updated,
|
3013
|
-
#
|
4434
|
+
# The date and time that the association was last updated, in ISO-8601
|
4435
|
+
# format.
|
3014
4436
|
# @return [Time]
|
3015
4437
|
#
|
3016
4438
|
# @!attribute [rw] service_network_arn
|
@@ -3090,8 +4512,7 @@ module Aws::VPCLattice
|
|
3090
4512
|
# @return [String]
|
3091
4513
|
#
|
3092
4514
|
# @!attribute [rw] created_at
|
3093
|
-
# The date and time that the service was created,
|
3094
|
-
# ISO-8601 format.
|
4515
|
+
# The date and time that the service was created, in ISO-8601 format.
|
3095
4516
|
# @return [Time]
|
3096
4517
|
#
|
3097
4518
|
# @!attribute [rw] custom_domain_name
|
@@ -3107,8 +4528,8 @@ module Aws::VPCLattice
|
|
3107
4528
|
# @return [String]
|
3108
4529
|
#
|
3109
4530
|
# @!attribute [rw] last_updated_at
|
3110
|
-
# The date and time that the service was last updated
|
3111
|
-
#
|
4531
|
+
# The date and time that the service was last updated, in ISO-8601
|
4532
|
+
# format.
|
3112
4533
|
# @return [Time]
|
3113
4534
|
#
|
3114
4535
|
# @!attribute [rw] name
|
@@ -3134,6 +4555,20 @@ module Aws::VPCLattice
|
|
3134
4555
|
include Aws::Structure
|
3135
4556
|
end
|
3136
4557
|
|
4558
|
+
# Specifies if the service network should be enabled for sharing.
|
4559
|
+
#
|
4560
|
+
# @!attribute [rw] enabled
|
4561
|
+
# Specifies if the service network is enabled for sharing.
|
4562
|
+
# @return [Boolean]
|
4563
|
+
#
|
4564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/SharingConfig AWS API Documentation
|
4565
|
+
#
|
4566
|
+
class SharingConfig < Struct.new(
|
4567
|
+
:enabled)
|
4568
|
+
SENSITIVE = []
|
4569
|
+
include Aws::Structure
|
4570
|
+
end
|
4571
|
+
|
3137
4572
|
# @!attribute [rw] resource_arn
|
3138
4573
|
# The Amazon Resource Name (ARN) of the resource.
|
3139
4574
|
# @return [String]
|
@@ -3288,8 +4723,8 @@ module Aws::VPCLattice
|
|
3288
4723
|
# @return [String]
|
3289
4724
|
#
|
3290
4725
|
# @!attribute [rw] created_at
|
3291
|
-
# The date and time that the target group was created,
|
3292
|
-
#
|
4726
|
+
# The date and time that the target group was created, in ISO-8601
|
4727
|
+
# format.
|
3293
4728
|
# @return [Time]
|
3294
4729
|
#
|
3295
4730
|
# @!attribute [rw] id
|
@@ -3308,8 +4743,8 @@ module Aws::VPCLattice
|
|
3308
4743
|
# @return [String]
|
3309
4744
|
#
|
3310
4745
|
# @!attribute [rw] last_updated_at
|
3311
|
-
# The date and time that the target group was last updated,
|
3312
|
-
#
|
4746
|
+
# The date and time that the target group was last updated, in
|
4747
|
+
# ISO-8601 format.
|
3313
4748
|
# @return [Time]
|
3314
4749
|
#
|
3315
4750
|
# @!attribute [rw] name
|
@@ -3458,7 +4893,7 @@ module Aws::VPCLattice
|
|
3458
4893
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
3459
4894
|
|
3460
4895
|
# @!attribute [rw] access_log_subscription_identifier
|
3461
|
-
# The ID or
|
4896
|
+
# The ID or ARN of the access log subscription.
|
3462
4897
|
# @return [String]
|
3463
4898
|
#
|
3464
4899
|
# @!attribute [rw] destination_arn
|
@@ -3511,11 +4946,11 @@ module Aws::VPCLattice
|
|
3511
4946
|
# @return [Types::RuleAction]
|
3512
4947
|
#
|
3513
4948
|
# @!attribute [rw] listener_identifier
|
3514
|
-
# The ID or
|
4949
|
+
# The ID or ARN of the listener.
|
3515
4950
|
# @return [String]
|
3516
4951
|
#
|
3517
4952
|
# @!attribute [rw] service_identifier
|
3518
|
-
# The ID or
|
4953
|
+
# The ID or ARN of the service.
|
3519
4954
|
# @return [String]
|
3520
4955
|
#
|
3521
4956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateListenerRequest AWS API Documentation
|
@@ -3575,12 +5010,181 @@ module Aws::VPCLattice
|
|
3575
5010
|
include Aws::Structure
|
3576
5011
|
end
|
3577
5012
|
|
5013
|
+
# @!attribute [rw] allow_association_to_shareable_service_network
|
5014
|
+
# Indicates whether to add the resource configuration to service
|
5015
|
+
# networks that are shared with other accounts.
|
5016
|
+
# @return [Boolean]
|
5017
|
+
#
|
5018
|
+
# @!attribute [rw] port_ranges
|
5019
|
+
# The TCP port ranges that a consumer can use to access a resource
|
5020
|
+
# configuration. You can separate port ranges with a comma. Example:
|
5021
|
+
# 1-65535 or 1,2,22-30
|
5022
|
+
# @return [Array<String>]
|
5023
|
+
#
|
5024
|
+
# @!attribute [rw] resource_configuration_definition
|
5025
|
+
# The resource configuration.
|
5026
|
+
# @return [Types::ResourceConfigurationDefinition]
|
5027
|
+
#
|
5028
|
+
# @!attribute [rw] resource_configuration_identifier
|
5029
|
+
# The ID of the resource configuration.
|
5030
|
+
# @return [String]
|
5031
|
+
#
|
5032
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateResourceConfigurationRequest AWS API Documentation
|
5033
|
+
#
|
5034
|
+
class UpdateResourceConfigurationRequest < Struct.new(
|
5035
|
+
:allow_association_to_shareable_service_network,
|
5036
|
+
:port_ranges,
|
5037
|
+
:resource_configuration_definition,
|
5038
|
+
:resource_configuration_identifier)
|
5039
|
+
SENSITIVE = []
|
5040
|
+
include Aws::Structure
|
5041
|
+
end
|
5042
|
+
|
5043
|
+
# @!attribute [rw] allow_association_to_shareable_service_network
|
5044
|
+
# Indicates whether to add the resource configuration to service
|
5045
|
+
# networks that are shared with other accounts.
|
5046
|
+
# @return [Boolean]
|
5047
|
+
#
|
5048
|
+
# @!attribute [rw] arn
|
5049
|
+
# The Amazon Resource Name (ARN) of the resource configuration.
|
5050
|
+
# @return [String]
|
5051
|
+
#
|
5052
|
+
# @!attribute [rw] id
|
5053
|
+
# The ID of the resource configuration.
|
5054
|
+
# @return [String]
|
5055
|
+
#
|
5056
|
+
# @!attribute [rw] name
|
5057
|
+
# The name of the resource configuration.
|
5058
|
+
# @return [String]
|
5059
|
+
#
|
5060
|
+
# @!attribute [rw] port_ranges
|
5061
|
+
# The TCP port ranges that a consumer can use to access a resource
|
5062
|
+
# configuration. You can separate port ranges with a comma. Example:
|
5063
|
+
# 1-65535 or 1,2,22-30
|
5064
|
+
# @return [Array<String>]
|
5065
|
+
#
|
5066
|
+
# @!attribute [rw] protocol
|
5067
|
+
# The TCP protocol accepted by the specified resource configuration.
|
5068
|
+
# @return [String]
|
5069
|
+
#
|
5070
|
+
# @!attribute [rw] resource_configuration_definition
|
5071
|
+
# The resource configuration.
|
5072
|
+
# @return [Types::ResourceConfigurationDefinition]
|
5073
|
+
#
|
5074
|
+
# @!attribute [rw] resource_configuration_group_id
|
5075
|
+
# The ID of the group resource configuration.
|
5076
|
+
# @return [String]
|
5077
|
+
#
|
5078
|
+
# @!attribute [rw] resource_gateway_id
|
5079
|
+
# The ID of the resource gateway associated with the resource
|
5080
|
+
# configuration.
|
5081
|
+
# @return [String]
|
5082
|
+
#
|
5083
|
+
# @!attribute [rw] status
|
5084
|
+
# The status of the resource configuration.
|
5085
|
+
# @return [String]
|
5086
|
+
#
|
5087
|
+
# @!attribute [rw] type
|
5088
|
+
# The type of resource configuration.
|
5089
|
+
#
|
5090
|
+
# * `SINGLE` - A single resource.
|
5091
|
+
#
|
5092
|
+
# * `GROUP` - A group of resources.
|
5093
|
+
#
|
5094
|
+
# * `CHILD` - A single resource that is part of a group resource
|
5095
|
+
# configuration.
|
5096
|
+
#
|
5097
|
+
# * `ARN` - An Amazon Web Services resource.
|
5098
|
+
# @return [String]
|
5099
|
+
#
|
5100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateResourceConfigurationResponse AWS API Documentation
|
5101
|
+
#
|
5102
|
+
class UpdateResourceConfigurationResponse < Struct.new(
|
5103
|
+
:allow_association_to_shareable_service_network,
|
5104
|
+
:arn,
|
5105
|
+
:id,
|
5106
|
+
:name,
|
5107
|
+
:port_ranges,
|
5108
|
+
:protocol,
|
5109
|
+
:resource_configuration_definition,
|
5110
|
+
:resource_configuration_group_id,
|
5111
|
+
:resource_gateway_id,
|
5112
|
+
:status,
|
5113
|
+
:type)
|
5114
|
+
SENSITIVE = []
|
5115
|
+
include Aws::Structure
|
5116
|
+
end
|
5117
|
+
|
5118
|
+
# @!attribute [rw] resource_gateway_identifier
|
5119
|
+
# The ID or ARN of the resource gateway.
|
5120
|
+
# @return [String]
|
5121
|
+
#
|
5122
|
+
# @!attribute [rw] security_group_ids
|
5123
|
+
# The IDs of the security groups associated with the resource gateway.
|
5124
|
+
# @return [Array<String>]
|
5125
|
+
#
|
5126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateResourceGatewayRequest AWS API Documentation
|
5127
|
+
#
|
5128
|
+
class UpdateResourceGatewayRequest < Struct.new(
|
5129
|
+
:resource_gateway_identifier,
|
5130
|
+
:security_group_ids)
|
5131
|
+
SENSITIVE = []
|
5132
|
+
include Aws::Structure
|
5133
|
+
end
|
5134
|
+
|
5135
|
+
# @!attribute [rw] arn
|
5136
|
+
# The Amazon Resource Name (ARN) of the resource gateway.
|
5137
|
+
# @return [String]
|
5138
|
+
#
|
5139
|
+
# @!attribute [rw] id
|
5140
|
+
# The ID of the resource gateway.
|
5141
|
+
# @return [String]
|
5142
|
+
#
|
5143
|
+
# @!attribute [rw] ip_address_type
|
5144
|
+
# The type of IP address used by the resource gateway.
|
5145
|
+
# @return [String]
|
5146
|
+
#
|
5147
|
+
# @!attribute [rw] name
|
5148
|
+
# The name of the resource gateway.
|
5149
|
+
# @return [String]
|
5150
|
+
#
|
5151
|
+
# @!attribute [rw] security_group_ids
|
5152
|
+
# The IDs of the security groups associated with the resource gateway.
|
5153
|
+
# @return [Array<String>]
|
5154
|
+
#
|
5155
|
+
# @!attribute [rw] status
|
5156
|
+
# The status of the resource gateway.
|
5157
|
+
# @return [String]
|
5158
|
+
#
|
5159
|
+
# @!attribute [rw] subnet_ids
|
5160
|
+
# The IDs of the VPC subnets for the resource gateway.
|
5161
|
+
# @return [Array<String>]
|
5162
|
+
#
|
5163
|
+
# @!attribute [rw] vpc_id
|
5164
|
+
# The ID of the VPC for the resource gateway.
|
5165
|
+
# @return [String]
|
5166
|
+
#
|
5167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateResourceGatewayResponse AWS API Documentation
|
5168
|
+
#
|
5169
|
+
class UpdateResourceGatewayResponse < Struct.new(
|
5170
|
+
:arn,
|
5171
|
+
:id,
|
5172
|
+
:ip_address_type,
|
5173
|
+
:name,
|
5174
|
+
:security_group_ids,
|
5175
|
+
:status,
|
5176
|
+
:subnet_ids,
|
5177
|
+
:vpc_id)
|
5178
|
+
SENSITIVE = []
|
5179
|
+
include Aws::Structure
|
5180
|
+
end
|
5181
|
+
|
3578
5182
|
# @!attribute [rw] action
|
3579
5183
|
# Information about the action for the specified listener rule.
|
3580
5184
|
# @return [Types::RuleAction]
|
3581
5185
|
#
|
3582
5186
|
# @!attribute [rw] listener_identifier
|
3583
|
-
# The ID or
|
5187
|
+
# The ID or ARN of the listener.
|
3584
5188
|
# @return [String]
|
3585
5189
|
#
|
3586
5190
|
# @!attribute [rw] match
|
@@ -3593,11 +5197,11 @@ module Aws::VPCLattice
|
|
3593
5197
|
# @return [Integer]
|
3594
5198
|
#
|
3595
5199
|
# @!attribute [rw] rule_identifier
|
3596
|
-
# The ID or
|
5200
|
+
# The ID or ARN of the rule.
|
3597
5201
|
# @return [String]
|
3598
5202
|
#
|
3599
5203
|
# @!attribute [rw] service_identifier
|
3600
|
-
# The ID or
|
5204
|
+
# The ID or ARN of the service.
|
3601
5205
|
# @return [String]
|
3602
5206
|
#
|
3603
5207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateRuleRequest AWS API Documentation
|
@@ -3666,7 +5270,7 @@ module Aws::VPCLattice
|
|
3666
5270
|
# @return [String]
|
3667
5271
|
#
|
3668
5272
|
# @!attribute [rw] service_network_identifier
|
3669
|
-
# The ID or
|
5273
|
+
# The ID or ARN of the service network.
|
3670
5274
|
# @return [String]
|
3671
5275
|
#
|
3672
5276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceNetworkRequest AWS API Documentation
|
@@ -3710,7 +5314,7 @@ module Aws::VPCLattice
|
|
3710
5314
|
# @return [Array<String>]
|
3711
5315
|
#
|
3712
5316
|
# @!attribute [rw] service_network_vpc_association_identifier
|
3713
|
-
# The ID or
|
5317
|
+
# The ID or ARN of the association.
|
3714
5318
|
# @return [String]
|
3715
5319
|
#
|
3716
5320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceNetworkVpcAssociationRequest AWS API Documentation
|
@@ -3771,7 +5375,7 @@ module Aws::VPCLattice
|
|
3771
5375
|
# @return [String]
|
3772
5376
|
#
|
3773
5377
|
# @!attribute [rw] service_identifier
|
3774
|
-
# The ID or
|
5378
|
+
# The ID or ARN of the service.
|
3775
5379
|
# @return [String]
|
3776
5380
|
#
|
3777
5381
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceRequest AWS API Documentation
|
@@ -3826,7 +5430,7 @@ module Aws::VPCLattice
|
|
3826
5430
|
# @return [Types::HealthCheckConfig]
|
3827
5431
|
#
|
3828
5432
|
# @!attribute [rw] target_group_identifier
|
3829
|
-
# The ID or
|
5433
|
+
# The ID or ARN of the target group.
|
3830
5434
|
# @return [String]
|
3831
5435
|
#
|
3832
5436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateTargetGroupRequest AWS API Documentation
|
@@ -3921,7 +5525,7 @@ module Aws::VPCLattice
|
|
3921
5525
|
# Describes the weight of a target group.
|
3922
5526
|
#
|
3923
5527
|
# @!attribute [rw] target_group_identifier
|
3924
|
-
# The ID or
|
5528
|
+
# The ID or ARN of the target group.
|
3925
5529
|
# @return [String]
|
3926
5530
|
#
|
3927
5531
|
# @!attribute [rw] weight
|