Interface DescribeAutomationExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeAutomationExecutionsResponse.Builder,DescribeAutomationExecutionsResponse>
,SdkBuilder<DescribeAutomationExecutionsResponse.Builder,DescribeAutomationExecutionsResponse>
,SdkPojo
,SdkResponse.Builder
,SsmResponse.Builder
- Enclosing class:
- DescribeAutomationExecutionsResponse
public static interface DescribeAutomationExecutionsResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<DescribeAutomationExecutionsResponse.Builder,DescribeAutomationExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeAutomationExecutionsResponse.Builder
automationExecutionMetadataList(Collection<AutomationExecutionMetadata> automationExecutionMetadataList)
The list of details about each automation execution which has occurred which matches the filter specification, if any.DescribeAutomationExecutionsResponse.Builder
automationExecutionMetadataList(Consumer<AutomationExecutionMetadata.Builder>... automationExecutionMetadataList)
The list of details about each automation execution which has occurred which matches the filter specification, if any.DescribeAutomationExecutionsResponse.Builder
automationExecutionMetadataList(AutomationExecutionMetadata... automationExecutionMetadataList)
The list of details about each automation execution which has occurred which matches the filter specification, if any.DescribeAutomationExecutionsResponse.Builder
nextToken(String nextToken)
The token to use when requesting the next set of items.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
automationExecutionMetadataList
DescribeAutomationExecutionsResponse.Builder automationExecutionMetadataList(Collection<AutomationExecutionMetadata> automationExecutionMetadataList)
The list of details about each automation execution which has occurred which matches the filter specification, if any.
- Parameters:
automationExecutionMetadataList
- The list of details about each automation execution which has occurred which matches the filter specification, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
automationExecutionMetadataList
DescribeAutomationExecutionsResponse.Builder automationExecutionMetadataList(AutomationExecutionMetadata... automationExecutionMetadataList)
The list of details about each automation execution which has occurred which matches the filter specification, if any.
- Parameters:
automationExecutionMetadataList
- The list of details about each automation execution which has occurred which matches the filter specification, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
automationExecutionMetadataList
DescribeAutomationExecutionsResponse.Builder automationExecutionMetadataList(Consumer<AutomationExecutionMetadata.Builder>... automationExecutionMetadataList)
The list of details about each automation execution which has occurred which matches the filter specification, if any.
This is a convenience method that creates an instance of theAutomationExecutionMetadata.Builder
avoiding the need to create one manually viaAutomationExecutionMetadata.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#automationExecutionMetadataList(List
.) - Parameters:
automationExecutionMetadataList
- a consumer that will call methods onAutomationExecutionMetadata.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#automationExecutionMetadataList(java.util.Collection
)
-
nextToken
DescribeAutomationExecutionsResponse.Builder nextToken(String nextToken)
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
- Parameters:
nextToken
- The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-