Class: Aws::OpenSearchServerless::Types::ListVpcEndpointsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchServerless::Types::ListVpcEndpointsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
An optional parameter that specifies the maximum number of results to return.
-
#next_token ⇒ String
If your initial ‘ListVpcEndpoints` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListVpcEndpoints` operations, which returns results in the next page.
-
#vpc_endpoint_filters ⇒ Types::VpcEndpointFilters
Filter the results according to the current status of the VPC endpoint.
Instance Attribute Details
#max_results ⇒ Integer
An optional parameter that specifies the maximum number of results to return. You can use ‘nextToken` to get the next page of results. The default is 20.
1868 1869 1870 1871 1872 1873 1874 |
# File 'lib/aws-sdk-opensearchserverless/types.rb', line 1868 class ListVpcEndpointsRequest < Struct.new( :max_results, :next_token, :vpc_endpoint_filters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If your initial ‘ListVpcEndpoints` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListVpcEndpoints` operations, which returns results in the next page.
1868 1869 1870 1871 1872 1873 1874 |
# File 'lib/aws-sdk-opensearchserverless/types.rb', line 1868 class ListVpcEndpointsRequest < Struct.new( :max_results, :next_token, :vpc_endpoint_filters) SENSITIVE = [] include Aws::Structure end |
#vpc_endpoint_filters ⇒ Types::VpcEndpointFilters
Filter the results according to the current status of the VPC endpoint. Possible statuses are ‘CREATING`, `DELETING`, `UPDATING`, `ACTIVE`, and `FAILED`.
1868 1869 1870 1871 1872 1873 1874 |
# File 'lib/aws-sdk-opensearchserverless/types.rb', line 1868 class ListVpcEndpointsRequest < Struct.new( :max_results, :next_token, :vpc_endpoint_filters) SENSITIVE = [] include Aws::Structure end |