Class: Aws::CloudDirectory::Types::BatchListObjectParents
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudDirectory::Types::BatchListObjectParents
- Defined in:
- gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb
Overview
Note:
When making an API call, you may pass BatchListObjectParents data as a hash:
{
object_reference: { # required
selector: "SelectorObjectReference",
},
next_token: "NextToken",
max_results: 1,
}
Lists parent objects that are associated with a given object in pagination fashion.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of items to be retrieved in a single call.
-
#next_token ⇒ String
The pagination token.
-
#object_reference ⇒ Types::ObjectReference
The reference that identifies an object.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of items to be retrieved in a single call. This is an approximate number.
1741 1742 1743 1744 1745 1746 1747 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 1741 class BatchListObjectParents < Struct.new( :object_reference, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token.
1741 1742 1743 1744 1745 1746 1747 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 1741 class BatchListObjectParents < Struct.new( :object_reference, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#object_reference ⇒ Types::ObjectReference
The reference that identifies an object.
1741 1742 1743 1744 1745 1746 1747 |
# File 'gems/aws-sdk-clouddirectory/lib/aws-sdk-clouddirectory/types.rb', line 1741 class BatchListObjectParents < Struct.new( :object_reference, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |