Interface SetLogDeliveryConfigurationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CognitoIdentityProviderRequest.Builder
,CopyableBuilder<SetLogDeliveryConfigurationRequest.Builder,SetLogDeliveryConfigurationRequest>
,SdkBuilder<SetLogDeliveryConfigurationRequest.Builder,SetLogDeliveryConfigurationRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- SetLogDeliveryConfigurationRequest
public static interface SetLogDeliveryConfigurationRequest.Builder extends CognitoIdentityProviderRequest.Builder, SdkPojo, CopyableBuilder<SetLogDeliveryConfigurationRequest.Builder,SetLogDeliveryConfigurationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SetLogDeliveryConfigurationRequest.Builder
logConfigurations(Collection<LogConfigurationType> logConfigurations)
A collection of the logging configurations for a user pool.SetLogDeliveryConfigurationRequest.Builder
logConfigurations(Consumer<LogConfigurationType.Builder>... logConfigurations)
A collection of the logging configurations for a user pool.SetLogDeliveryConfigurationRequest.Builder
logConfigurations(LogConfigurationType... logConfigurations)
A collection of the logging configurations for a user pool.SetLogDeliveryConfigurationRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
SetLogDeliveryConfigurationRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
SetLogDeliveryConfigurationRequest.Builder
userPoolId(String userPoolId)
The ID of the user pool where you want to configure logging.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cognitoidentityprovider.model.CognitoIdentityProviderRequest.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
-
userPoolId
SetLogDeliveryConfigurationRequest.Builder userPoolId(String userPoolId)
The ID of the user pool where you want to configure logging.
- Parameters:
userPoolId
- The ID of the user pool where you want to configure logging.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logConfigurations
SetLogDeliveryConfigurationRequest.Builder logConfigurations(Collection<LogConfigurationType> logConfigurations)
A collection of the logging configurations for a user pool.
- Parameters:
logConfigurations
- A collection of the logging configurations for a user pool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logConfigurations
SetLogDeliveryConfigurationRequest.Builder logConfigurations(LogConfigurationType... logConfigurations)
A collection of the logging configurations for a user pool.
- Parameters:
logConfigurations
- A collection of the logging configurations for a user pool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logConfigurations
SetLogDeliveryConfigurationRequest.Builder logConfigurations(Consumer<LogConfigurationType.Builder>... logConfigurations)
A collection of the logging configurations for a user pool.
This is a convenience method that creates an instance of theLogConfigurationType.Builder
avoiding the need to create one manually viaLogConfigurationType.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#logConfigurations(List
.) - Parameters:
logConfigurations
- a consumer that will call methods onLogConfigurationType.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#logConfigurations(java.util.Collection
)
-
overrideConfiguration
SetLogDeliveryConfigurationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
SetLogDeliveryConfigurationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-