Interface ListObjectChildrenRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CloudDirectoryRequest.Builder,CopyableBuilder<ListObjectChildrenRequest.Builder,ListObjectChildrenRequest>,SdkBuilder<ListObjectChildrenRequest.Builder,ListObjectChildrenRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListObjectChildrenRequest
public static interface ListObjectChildrenRequest.Builder extends CloudDirectoryRequest.Builder, SdkPojo, CopyableBuilder<ListObjectChildrenRequest.Builder,ListObjectChildrenRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ListObjectChildrenRequest.BuilderconsistencyLevel(String consistencyLevel)Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.ListObjectChildrenRequest.BuilderconsistencyLevel(ConsistencyLevel consistencyLevel)Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.ListObjectChildrenRequest.BuilderdirectoryArn(String directoryArn)The Amazon Resource Name (ARN) that is associated with the Directory where the object resides.ListObjectChildrenRequest.BuildermaxResults(Integer maxResults)The maximum number of items to be retrieved in a single call.ListObjectChildrenRequest.BuildernextToken(String nextToken)The pagination token.default ListObjectChildrenRequest.BuilderobjectReference(Consumer<ObjectReference.Builder> objectReference)The reference that identifies the object for which child objects are being listed.ListObjectChildrenRequest.BuilderobjectReference(ObjectReference objectReference)The reference that identifies the object for which child objects are being listed.ListObjectChildrenRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListObjectChildrenRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.clouddirectory.model.CloudDirectoryRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
directoryArn
ListObjectChildrenRequest.Builder directoryArn(String directoryArn)
-
objectReference
ListObjectChildrenRequest.Builder objectReference(ObjectReference objectReference)
The reference that identifies the object for which child objects are being listed.
- Parameters:
objectReference- The reference that identifies the object for which child objects are being listed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectReference
default ListObjectChildrenRequest.Builder objectReference(Consumer<ObjectReference.Builder> objectReference)
The reference that identifies the object for which child objects are being listed.
This is a convenience method that creates an instance of theObjectReference.Builderavoiding the need to create one manually viaObjectReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toobjectReference(ObjectReference).- Parameters:
objectReference- a consumer that will call methods onObjectReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
objectReference(ObjectReference)
-
nextToken
ListObjectChildrenRequest.Builder nextToken(String nextToken)
The pagination token.
- Parameters:
nextToken- The pagination token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListObjectChildrenRequest.Builder maxResults(Integer maxResults)
The maximum number of items to be retrieved in a single call. This is an approximate number.
- Parameters:
maxResults- The maximum number of items to be retrieved in a single call. This is an approximate number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consistencyLevel
ListObjectChildrenRequest.Builder consistencyLevel(String consistencyLevel)
Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
- Parameters:
consistencyLevel- Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConsistencyLevel,ConsistencyLevel
-
consistencyLevel
ListObjectChildrenRequest.Builder consistencyLevel(ConsistencyLevel consistencyLevel)
Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
- Parameters:
consistencyLevel- Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConsistencyLevel,ConsistencyLevel
-
overrideConfiguration
ListObjectChildrenRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListObjectChildrenRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-