Class: Aws::FSx::Types::DescribeDataRepositoryAssociationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DescribeDataRepositoryAssociationsRequest
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
When making an API call, you may pass DescribeDataRepositoryAssociationsRequest data as a hash:
{
association_ids: ["DataRepositoryAssociationId"],
filters: [
{
name: "file-system-id", # accepts file-system-id, backup-type, file-system-type, volume-id, data-repository-type
values: ["FilterValue"],
},
],
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#association_ids ⇒ Array<String>
IDs of the data repository associations whose descriptions you want to retrieve (String).
-
#filters ⇒ Array<Types::Filter>
A list of
Filter
elements. -
#max_results ⇒ Integer
The maximum number of resources to return in the response.
-
#next_token ⇒ String
(Optional) Opaque pagination token returned from a previous operation (String).
Instance Attribute Details
#association_ids ⇒ Array<String>
IDs of the data repository associations whose descriptions you want to retrieve (String).
4568 4569 4570 4571 4572 4573 4574 4575 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4568 class DescribeDataRepositoryAssociationsRequest < Struct.new( :association_ids, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::Filter>
A list of Filter
elements.
4568 4569 4570 4571 4572 4573 4574 4575 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4568 class DescribeDataRepositoryAssociationsRequest < Struct.new( :association_ids, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of resources to return in the response. This value must be an integer greater than zero.
4568 4569 4570 4571 4572 4573 4574 4575 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4568 class DescribeDataRepositoryAssociationsRequest < Struct.new( :association_ids, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
(Optional) Opaque pagination token returned from a previous
operation (String). If present, this token indicates from what point
you can continue processing the request, where the previous
NextToken
value left off.
4568 4569 4570 4571 4572 4573 4574 4575 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4568 class DescribeDataRepositoryAssociationsRequest < Struct.new( :association_ids, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |