Class: Aws::GlobalAccelerator::Types::Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlobalAccelerator::Types::Resource
- Defined in:
- gems/aws-sdk-globalaccelerator/lib/aws-sdk-globalaccelerator/types.rb
Overview
A resource is one of the following: the ARN for an Amazon Web Services resource that is supported by Global Accelerator to be added as an endpoint, or a CIDR range that specifies a bring your own IP (BYOIP) address pool.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr ⇒ String
An IP address range, in CIDR format, that is specified as resource.
-
#endpoint_id ⇒ String
The endpoint ID for the endpoint that is specified as a Amazon Web Services resource.
-
#region ⇒ String
The Amazon Web Services Region where a shared endpoint resource is located.
Instance Attribute Details
#cidr ⇒ String
An IP address range, in CIDR format, that is specified as resource. The address must be provisioned and advertised in Global Accelerator by following the bring your own IP address (BYOIP) process for Global Accelerator
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide.
3145 3146 3147 3148 3149 3150 3151 |
# File 'gems/aws-sdk-globalaccelerator/lib/aws-sdk-globalaccelerator/types.rb', line 3145 class Resource < Struct.new( :endpoint_id, :cidr, :region) SENSITIVE = [] include Aws::Structure end |
#endpoint_id ⇒ String
The endpoint ID for the endpoint that is specified as a Amazon Web Services resource.
An endpoint ID for the cross-account feature is the ARN of an Amazon Web Services resource, such as a Network Load Balancer, that Global Accelerator supports as an endpoint for an accelerator.
3145 3146 3147 3148 3149 3150 3151 |
# File 'gems/aws-sdk-globalaccelerator/lib/aws-sdk-globalaccelerator/types.rb', line 3145 class Resource < Struct.new( :endpoint_id, :cidr, :region) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Amazon Web Services Region where a shared endpoint resource is located.
3145 3146 3147 3148 3149 3150 3151 |
# File 'gems/aws-sdk-globalaccelerator/lib/aws-sdk-globalaccelerator/types.rb', line 3145 class Resource < Struct.new( :endpoint_id, :cidr, :region) SENSITIVE = [] include Aws::Structure end |