Interface GetChangeLogsResponse.Builder
-
- All Superinterfaces:
AuditManagerResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetChangeLogsResponse.Builder,GetChangeLogsResponse>,SdkBuilder<GetChangeLogsResponse.Builder,GetChangeLogsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetChangeLogsResponse
public static interface GetChangeLogsResponse.Builder extends AuditManagerResponse.Builder, SdkPojo, CopyableBuilder<GetChangeLogsResponse.Builder,GetChangeLogsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetChangeLogsResponse.BuilderchangeLogs(Collection<ChangeLog> changeLogs)The list of user activity for the control.GetChangeLogsResponse.BuilderchangeLogs(Consumer<ChangeLog.Builder>... changeLogs)The list of user activity for the control.GetChangeLogsResponse.BuilderchangeLogs(ChangeLog... changeLogs)The list of user activity for the control.GetChangeLogsResponse.BuildernextToken(String nextToken)The pagination token that's used to fetch the next set of results.-
Methods inherited from interface software.amazon.awssdk.services.auditmanager.model.AuditManagerResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
changeLogs
GetChangeLogsResponse.Builder changeLogs(Collection<ChangeLog> changeLogs)
The list of user activity for the control.
- Parameters:
changeLogs- The list of user activity for the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
changeLogs
GetChangeLogsResponse.Builder changeLogs(ChangeLog... changeLogs)
The list of user activity for the control.
- Parameters:
changeLogs- The list of user activity for the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
changeLogs
GetChangeLogsResponse.Builder changeLogs(Consumer<ChangeLog.Builder>... changeLogs)
The list of user activity for the control.
This is a convenience method that creates an instance of theChangeLog.Builderavoiding the need to create one manually viaChangeLog.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#changeLogs(List.) - Parameters:
changeLogs- a consumer that will call methods onChangeLog.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#changeLogs(java.util.Collection)
-
nextToken
GetChangeLogsResponse.Builder nextToken(String nextToken)
The pagination token that's used to fetch the next set of results.
- Parameters:
nextToken- The pagination token that's used to fetch the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-