Class: Aws::APIGateway::Types::Deployments
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::Deployments
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Represents a collection resource that contains zero or more references to your existing deployments, and links that guide you on how to interact with your collection. The collection offers a paginated view of the contained deployments.
<div class=“remarks” markdown=“1”> To create a new deployment of a RestApi, make a ‘POST` request against this resource. To view, update, or delete an existing deployment, make a `GET`, `PATCH`, or `DELETE` request, respectively, on a specified Deployment resource. </div>
<div class=“seeAlso” markdown=“1”>
- Deploying an API], [AWS CLI], [AWS SDKs][3
-
</div>
[1]: docs.aws.amazon.com/apigateway/latest/developerguide/how-to-deploy-api.html [2]: docs.aws.amazon.com/cli/latest/reference/apigateway/get-deployment.html [3]: aws.amazon.com/tools/
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<Types::Deployment>
The current page of elements from this collection.
- #position ⇒ String
Instance Attribute Details
#items ⇒ Array<Types::Deployment>
The current page of elements from this collection.
2279 2280 2281 2282 2283 2284 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2279 class Deployments < Struct.new( :position, :items) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
2279 2280 2281 2282 2283 2284 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2279 class Deployments < Struct.new( :position, :items) SENSITIVE = [] include Aws::Structure end |