Class: Aws::APIGateway::Types::VpcLink
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::VpcLink
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
A API Gateway VPC link for a RestApi to access resources in an Amazon Virtual Private Cloud (VPC).
<div class=“remarks” markdown=“1”> To enable access to a resource in an Amazon Virtual Private Cloud through Amazon API Gateway, you, as an API developer, create a VpcLink resource targeted for one or more network load balancers of the VPC and then integrate an API method with a private integration that uses the VpcLink. The private integration has an integration type of ‘HTTP` or `HTTP_PROXY` and has a connection type of `VPC_LINK`. The integration uses the `connectionId` property to identify the VpcLink used.
</div>
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the VPC link.
-
#id ⇒ String
The identifier of the VpcLink.
-
#name ⇒ String
The name used to label and identify the VPC link.
-
#status ⇒ String
The status of the VPC link.
-
#status_message ⇒ String
A description about the VPC link status.
-
#target_arns ⇒ Array<String>
The ARNs of network load balancers of the VPC targeted by the VPC link.
Instance Attribute Details
#description ⇒ String
The description of the VPC link.
7658 7659 7660 7661 7662 7663 7664 7665 7666 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7658 class VpcLink < Struct.new( :id, :name, :description, :target_arns, :status, :status_message) include Aws::Structure end |
#id ⇒ String
The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
7658 7659 7660 7661 7662 7663 7664 7665 7666 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7658 class VpcLink < Struct.new( :id, :name, :description, :target_arns, :status, :status_message) include Aws::Structure end |
#name ⇒ String
The name used to label and identify the VPC link.
7658 7659 7660 7661 7662 7663 7664 7665 7666 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7658 class VpcLink < Struct.new( :id, :name, :description, :target_arns, :status, :status_message) include Aws::Structure end |
#status ⇒ String
The status of the VPC link. The valid values are ‘AVAILABLE`, `PENDING`, `DELETING`, or `FAILED`. Deploying an API will wait if the status is `PENDING` and will fail if the status is `DELETING`.
7658 7659 7660 7661 7662 7663 7664 7665 7666 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7658 class VpcLink < Struct.new( :id, :name, :description, :target_arns, :status, :status_message) include Aws::Structure end |
#status_message ⇒ String
A description about the VPC link status.
7658 7659 7660 7661 7662 7663 7664 7665 7666 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7658 class VpcLink < Struct.new( :id, :name, :description, :target_arns, :status, :status_message) include Aws::Structure end |
#target_arns ⇒ Array<String>
The ARNs of network load balancers of the VPC targeted by the VPC link. The network load balancers must be owned by the same AWS account of the API owner.
7658 7659 7660 7661 7662 7663 7664 7665 7666 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7658 class VpcLink < Struct.new( :id, :name, :description, :target_arns, :status, :status_message) include Aws::Structure end |