aws-sdk-globalaccelerator 1.55.0 → 1.57.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -303,6 +303,13 @@ module Aws::GlobalAccelerator
303
303
  # The address range, in CIDR notation. This must be the exact range
304
304
  # that you provisioned. You can't advertise only a portion of the
305
305
  # provisioned range.
306
+ #
307
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
308
+ # in the Global Accelerator Developer Guide.
309
+ #
310
+ #
311
+ #
312
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
306
313
  # @return [String]
307
314
  #
308
315
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/AdvertiseByoipCidrRequest AWS API Documentation
@@ -410,9 +417,8 @@ module Aws::GlobalAccelerator
410
417
  end
411
418
 
412
419
  # A cross-account attachment in Global Accelerator. A cross-account
413
- # attachment specifies the *principals* who have permission to add to
414
- # accelerators in their own account the resources in your account that
415
- # you also list in the attachment.
420
+ # attachment specifies the *principals* who have permission to work with
421
+ # *resources* in your account, which you also list in the attachment.
416
422
  #
417
423
  # @!attribute [rw] attachment_arn
418
424
  # The Amazon Resource Name (ARN) of the cross-account attachment.
@@ -523,6 +529,13 @@ module Aws::GlobalAccelerator
523
529
  #
524
530
  # @!attribute [rw] cidr
525
531
  # The address range, in CIDR notation.
532
+ #
533
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
534
+ # in the Global Accelerator Developer Guide.
535
+ #
536
+ #
537
+ #
538
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
526
539
  # @return [String]
527
540
  #
528
541
  # @!attribute [rw] state
@@ -723,15 +736,16 @@ module Aws::GlobalAccelerator
723
736
  # @return [String]
724
737
  #
725
738
  # @!attribute [rw] principals
726
- # The principals to list in the cross-account attachment. A principal
727
- # can be an Amazon Web Services account number or the Amazon Resource
728
- # Name (ARN) for an accelerator.
739
+ # The principals to include in the cross-account attachment. A
740
+ # principal can be an Amazon Web Services account number or the Amazon
741
+ # Resource Name (ARN) for an accelerator.
729
742
  # @return [Array<String>]
730
743
  #
731
744
  # @!attribute [rw] resources
732
- # The Amazon Resource Names (ARNs) for the resources to list in the
745
+ # The Amazon Resource Names (ARNs) for the resources to include in the
733
746
  # cross-account attachment. A resource can be any supported Amazon Web
734
- # Services resource type for Global Accelerator.
747
+ # Services resource type for Global Accelerator or a CIDR range for a
748
+ # bring your own IP address (BYOIP) address pool.
735
749
  # @return [Array<Types::Resource>]
736
750
  #
737
751
  # @!attribute [rw] idempotency_token
@@ -743,7 +757,7 @@ module Aws::GlobalAccelerator
743
757
  # @return [String]
744
758
  #
745
759
  # @!attribute [rw] tags
746
- # Create tags for cross-account attachment.
760
+ # Add tags for a cross-account attachment.
747
761
  #
748
762
  # For more information, see [Tagging in Global Accelerator][1] in the
749
763
  # *Global Accelerator Developer Guide*.
@@ -1147,9 +1161,18 @@ module Aws::GlobalAccelerator
1147
1161
  include Aws::Structure
1148
1162
  end
1149
1163
 
1150
- # An endpoint (Amazon Web Services resource) that is listed in a
1151
- # cross-account attachment and can be added to an accelerator by
1152
- # specified principals, that are also listed in the attachment.
1164
+ # An endpoint (Amazon Web Services resource) or an IP address range, in
1165
+ # CIDR format, that is listed in a cross-account attachment. A
1166
+ # cross-account resource can be added to an accelerator by specified
1167
+ # principals, which are also listed in the attachment.
1168
+ #
1169
+ # For more information, see [ Working with cross-account attachments and
1170
+ # resources in Global Accelerator][1] in the <i> Global Accelerator
1171
+ # Developer Guide</i>.
1172
+ #
1173
+ #
1174
+ #
1175
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/cross-account-resources.html
1153
1176
  #
1154
1177
  # @!attribute [rw] endpoint_id
1155
1178
  # The endpoint ID for the endpoint that is listed in a cross-account
@@ -1157,17 +1180,31 @@ module Aws::GlobalAccelerator
1157
1180
  # principals.
1158
1181
  # @return [String]
1159
1182
  #
1183
+ # @!attribute [rw] cidr
1184
+ # An IP address range, in CIDR format, that is specified as an Amazon
1185
+ # Web Services resource. The address must be provisioned and
1186
+ # advertised in Global Accelerator by following the bring your own IP
1187
+ # address (BYOIP) process for Global Accelerator.
1188
+ #
1189
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
1190
+ # in the Global Accelerator Developer Guide.
1191
+ #
1192
+ #
1193
+ #
1194
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
1195
+ # @return [String]
1196
+ #
1160
1197
  # @!attribute [rw] attachment_arn
1161
1198
  # The Amazon Resource Name (ARN) of the cross-account attachment that
1162
- # specifies the endpoints (resources) that can be added to
1163
- # accelerators and principals that have permission to add the
1164
- # endpoints to accelerators.
1199
+ # specifies the resources (endpoints or CIDR range) that can be added
1200
+ # to accelerators and principals that have permission to add them.
1165
1201
  # @return [String]
1166
1202
  #
1167
1203
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/CrossAccountResource AWS API Documentation
1168
1204
  #
1169
1205
  class CrossAccountResource < Struct.new(
1170
1206
  :endpoint_id,
1207
+ :cidr,
1171
1208
  :attachment_arn)
1172
1209
  SENSITIVE = []
1173
1210
  include Aws::Structure
@@ -1367,7 +1404,7 @@ module Aws::GlobalAccelerator
1367
1404
  # The Amazon Resource Name (ARN) of the cross-account attachment that
1368
1405
  # specifies the endpoints (resources) that can be added to
1369
1406
  # accelerators and principals that have permission to add the
1370
- # endpoints to accelerators.
1407
+ # endpoints.
1371
1408
  # @return [String]
1372
1409
  #
1373
1410
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/CustomRoutingEndpointConfiguration AWS API Documentation
@@ -1598,6 +1635,13 @@ module Aws::GlobalAccelerator
1598
1635
  # @!attribute [rw] cidr
1599
1636
  # The address range, in CIDR notation. The prefix must be the same
1600
1637
  # prefix that you specified when you provisioned the address range.
1638
+ #
1639
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
1640
+ # in the Global Accelerator Developer Guide.
1641
+ #
1642
+ #
1643
+ #
1644
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
1601
1645
  # @return [String]
1602
1646
  #
1603
1647
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/DeprovisionByoipCidrRequest AWS API Documentation
@@ -1919,8 +1963,7 @@ module Aws::GlobalAccelerator
1919
1963
  # is the EC2 instance ID. A resource must be valid and active when you
1920
1964
  # add it as an endpoint.
1921
1965
  #
1922
- # An Application Load Balancer can be either internal or
1923
- # internet-facing.
1966
+ # For cross-account endpoints, this must be the ARN of the resource.
1924
1967
  # @return [String]
1925
1968
  #
1926
1969
  # @!attribute [rw] weight
@@ -1965,7 +2008,7 @@ module Aws::GlobalAccelerator
1965
2008
  # The Amazon Resource Name (ARN) of the cross-account attachment that
1966
2009
  # specifies the endpoints (resources) that can be added to
1967
2010
  # accelerators and principals that have permission to add the
1968
- # endpoints to accelerators.
2011
+ # endpoints.
1969
2012
  # @return [String]
1970
2013
  #
1971
2014
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/EndpointConfiguration AWS API Documentation
@@ -2431,7 +2474,7 @@ module Aws::GlobalAccelerator
2431
2474
 
2432
2475
  # @!attribute [rw] resource_owner_aws_account_ids
2433
2476
  # The account IDs of principals (resource owners) in a cross-account
2434
- # attachment who can add endpoints (resources) listed in the same
2477
+ # attachment who can work with resources listed in the same
2435
2478
  # attachment.
2436
2479
  # @return [Array<String>]
2437
2480
  #
@@ -2453,8 +2496,8 @@ module Aws::GlobalAccelerator
2453
2496
  # @return [String]
2454
2497
  #
2455
2498
  # @!attribute [rw] max_results
2456
- # The number of cross-account endpoints objects that you want to
2457
- # return with this call. The default value is 10.
2499
+ # The number of cross-account resource objects that you want to return
2500
+ # with this call. The default value is 10.
2458
2501
  # @return [Integer]
2459
2502
  #
2460
2503
  # @!attribute [rw] next_token
@@ -2474,8 +2517,7 @@ module Aws::GlobalAccelerator
2474
2517
  end
2475
2518
 
2476
2519
  # @!attribute [rw] cross_account_resources
2477
- # The endpoints attached to an accelerator in a cross-account
2478
- # attachment.
2520
+ # The cross-account resources used with an accelerator.
2479
2521
  # @return [Array<Types::CrossAccountResource>]
2480
2522
  #
2481
2523
  # @!attribute [rw] next_token
@@ -2992,8 +3034,15 @@ module Aws::GlobalAccelerator
2992
3034
  # @!attribute [rw] cidr
2993
3035
  # The public IPv4 address range, in CIDR notation. The most specific
2994
3036
  # IP prefix that you can specify is /24. The address range cannot
2995
- # overlap with another address range that you've brought to this or
2996
- # another Region.
3037
+ # overlap with another address range that you've brought to this
3038
+ # Amazon Web Services Region or another Region.
3039
+ #
3040
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
3041
+ # in the Global Accelerator Developer Guide.
3042
+ #
3043
+ #
3044
+ #
3045
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
2997
3046
  # @return [String]
2998
3047
  #
2999
3048
  # @!attribute [rw] cidr_authorization_context
@@ -3058,21 +3107,44 @@ module Aws::GlobalAccelerator
3058
3107
  include Aws::Structure
3059
3108
  end
3060
3109
 
3061
- # An Amazon Web Services resource that is supported by Global
3062
- # Accelerator and can be added as an endpoint for an accelerator.
3110
+ # A resource is one of the following: the ARN for an Amazon Web Services
3111
+ # resource that is supported by Global Accelerator to be added as an
3112
+ # endpoint, or a CIDR range that specifies a bring your own IP (BYOIP)
3113
+ # address pool.
3063
3114
  #
3064
3115
  # @!attribute [rw] endpoint_id
3065
- # The endpoint ID for the endpoint (Amazon Web Services resource).
3116
+ # The endpoint ID for the endpoint that is specified as a Amazon Web
3117
+ # Services resource.
3118
+ #
3119
+ # An endpoint ID for the cross-account feature is the ARN of an Amazon
3120
+ # Web Services resource, such as a Network Load Balancer, that Global
3121
+ # Accelerator supports as an endpoint for an accelerator.
3122
+ # @return [String]
3123
+ #
3124
+ # @!attribute [rw] cidr
3125
+ # An IP address range, in CIDR format, that is specified as resource.
3126
+ # The address must be provisioned and advertised in Global Accelerator
3127
+ # by following the bring your own IP address (BYOIP) process for
3128
+ # Global Accelerator
3129
+ #
3130
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
3131
+ # in the Global Accelerator Developer Guide.
3132
+ #
3133
+ #
3134
+ #
3135
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
3066
3136
  # @return [String]
3067
3137
  #
3068
3138
  # @!attribute [rw] region
3069
- # The Amazon Web Services Region where a resource is located.
3139
+ # The Amazon Web Services Region where a shared endpoint resource is
3140
+ # located.
3070
3141
  # @return [String]
3071
3142
  #
3072
3143
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/Resource AWS API Documentation
3073
3144
  #
3074
3145
  class Resource < Struct.new(
3075
3146
  :endpoint_id,
3147
+ :cidr,
3076
3148
  :region)
3077
3149
  SENSITIVE = []
3078
3150
  include Aws::Structure
@@ -3293,8 +3365,8 @@ module Aws::GlobalAccelerator
3293
3365
  # @!attribute [rw] add_principals
3294
3366
  # The principals to add to the cross-account attachment. A principal
3295
3367
  # is an account or the Amazon Resource Name (ARN) of an accelerator
3296
- # that the attachment gives permission to add the resources from
3297
- # another account, listed in the attachment.
3368
+ # that the attachment gives permission to work with resources from
3369
+ # another account. The resources are also listed in the attachment.
3298
3370
  #
3299
3371
  # To add more than one principal, separate the account numbers or
3300
3372
  # accelerator ARNs, or both, with commas.
@@ -3303,8 +3375,9 @@ module Aws::GlobalAccelerator
3303
3375
  # @!attribute [rw] remove_principals
3304
3376
  # The principals to remove from the cross-account attachment. A
3305
3377
  # principal is an account or the Amazon Resource Name (ARN) of an
3306
- # accelerator that is given permission to add the resources from
3307
- # another account, listed in the cross-account attachment.
3378
+ # accelerator that the attachment gives permission to work with
3379
+ # resources from another account. The resources are also listed in the
3380
+ # attachment.
3308
3381
  #
3309
3382
  # To remove more than one principal, separate the account numbers or
3310
3383
  # accelerator ARNs, or both, with commas.
@@ -3312,7 +3385,7 @@ module Aws::GlobalAccelerator
3312
3385
  #
3313
3386
  # @!attribute [rw] add_resources
3314
3387
  # The resources to add to the cross-account attachment. A resource
3315
- # listed in a cross-account attachment can be added to an accelerator
3388
+ # listed in a cross-account attachment can be used with an accelerator
3316
3389
  # by the principals that are listed in the attachment.
3317
3390
  #
3318
3391
  # To add more than one resource, separate the resource ARNs with
@@ -3321,9 +3394,8 @@ module Aws::GlobalAccelerator
3321
3394
  #
3322
3395
  # @!attribute [rw] remove_resources
3323
3396
  # The resources to remove from the cross-account attachment. A
3324
- # resource listed in a cross-account attachment can be added to an
3325
- # accelerator fy principals that are listed in the cross-account
3326
- # attachment.
3397
+ # resource listed in a cross-account attachment can be used with an
3398
+ # accelerator by the principals that are listed in the attachment.
3327
3399
  #
3328
3400
  # To remove more than one resource, separate the resource ARNs with
3329
3401
  # commas.
@@ -3660,6 +3732,13 @@ module Aws::GlobalAccelerator
3660
3732
 
3661
3733
  # @!attribute [rw] cidr
3662
3734
  # The address range, in CIDR notation.
3735
+ #
3736
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
3737
+ # in the Global Accelerator Developer Guide.
3738
+ #
3739
+ #
3740
+ #
3741
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
3663
3742
  # @return [String]
3664
3743
  #
3665
3744
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/WithdrawByoipCidrRequest AWS API Documentation
@@ -3671,7 +3750,7 @@ module Aws::GlobalAccelerator
3671
3750
  end
3672
3751
 
3673
3752
  # @!attribute [rw] byoip_cidr
3674
- # Information about the address pool.
3753
+ # Information about the BYOIP address pool.
3675
3754
  # @return [Types::ByoipCidr]
3676
3755
  #
3677
3756
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/WithdrawByoipCidrResponse AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-globalaccelerator/customizations'
52
52
  # @!group service
53
53
  module Aws::GlobalAccelerator
54
54
 
55
- GEM_VERSION = '1.55.0'
55
+ GEM_VERSION = '1.57.0'
56
56
 
57
57
  end