Interface ListV2LoggingLevelsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListV2LoggingLevelsResponse.Builder,ListV2LoggingLevelsResponse>
,IotResponse.Builder
,SdkBuilder<ListV2LoggingLevelsResponse.Builder,ListV2LoggingLevelsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListV2LoggingLevelsResponse
public static interface ListV2LoggingLevelsResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListV2LoggingLevelsResponse.Builder,ListV2LoggingLevelsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListV2LoggingLevelsResponse.Builder
logTargetConfigurations(Collection<LogTargetConfiguration> logTargetConfigurations)
The logging configuration for a target.ListV2LoggingLevelsResponse.Builder
logTargetConfigurations(Consumer<LogTargetConfiguration.Builder>... logTargetConfigurations)
The logging configuration for a target.ListV2LoggingLevelsResponse.Builder
logTargetConfigurations(LogTargetConfiguration... logTargetConfigurations)
The logging configuration for a target.ListV2LoggingLevelsResponse.Builder
nextToken(String nextToken)
The token to use to get the next set of results, or null if there are no additional results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
logTargetConfigurations
ListV2LoggingLevelsResponse.Builder logTargetConfigurations(Collection<LogTargetConfiguration> logTargetConfigurations)
The logging configuration for a target.
- Parameters:
logTargetConfigurations
- The logging configuration for a target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logTargetConfigurations
ListV2LoggingLevelsResponse.Builder logTargetConfigurations(LogTargetConfiguration... logTargetConfigurations)
The logging configuration for a target.
- Parameters:
logTargetConfigurations
- The logging configuration for a target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logTargetConfigurations
ListV2LoggingLevelsResponse.Builder logTargetConfigurations(Consumer<LogTargetConfiguration.Builder>... logTargetConfigurations)
The logging configuration for a target.
This is a convenience method that creates an instance of theLogTargetConfiguration.Builder
avoiding the need to create one manually viaLogTargetConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#logTargetConfigurations(List
.) - Parameters:
logTargetConfigurations
- a consumer that will call methods onLogTargetConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#logTargetConfigurations(java.util.Collection
)
-
nextToken
ListV2LoggingLevelsResponse.Builder nextToken(String nextToken)
The token to use to get the next set of results, or null if there are no additional results.
- Parameters:
nextToken
- The token to use to get the next set of results, or null if there are no additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-