Interface LogDeliveryConfigurationType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LogDeliveryConfigurationType.Builder,LogDeliveryConfigurationType>,SdkBuilder<LogDeliveryConfigurationType.Builder,LogDeliveryConfigurationType>,SdkPojo
- Enclosing class:
- LogDeliveryConfigurationType
public static interface LogDeliveryConfigurationType.Builder extends SdkPojo, CopyableBuilder<LogDeliveryConfigurationType.Builder,LogDeliveryConfigurationType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LogDeliveryConfigurationType.BuilderlogConfigurations(Collection<LogConfigurationType> logConfigurations)A logging destination of a user pool.LogDeliveryConfigurationType.BuilderlogConfigurations(Consumer<LogConfigurationType.Builder>... logConfigurations)A logging destination of a user pool.LogDeliveryConfigurationType.BuilderlogConfigurations(LogConfigurationType... logConfigurations)A logging destination of a user pool.LogDeliveryConfigurationType.BuilderuserPoolId(String userPoolId)The ID of the user pool where you configured logging.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
userPoolId
LogDeliveryConfigurationType.Builder userPoolId(String userPoolId)
The ID of the user pool where you configured logging.
- Parameters:
userPoolId- The ID of the user pool where you configured logging.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logConfigurations
LogDeliveryConfigurationType.Builder logConfigurations(Collection<LogConfigurationType> logConfigurations)
A logging destination of a user pool. User pools can have multiple logging destinations for message-delivery and user-activity logs.
- Parameters:
logConfigurations- A logging destination of a user pool. User pools can have multiple logging destinations for message-delivery and user-activity logs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logConfigurations
LogDeliveryConfigurationType.Builder logConfigurations(LogConfigurationType... logConfigurations)
A logging destination of a user pool. User pools can have multiple logging destinations for message-delivery and user-activity logs.
- Parameters:
logConfigurations- A logging destination of a user pool. User pools can have multiple logging destinations for message-delivery and user-activity logs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logConfigurations
LogDeliveryConfigurationType.Builder logConfigurations(Consumer<LogConfigurationType.Builder>... logConfigurations)
A logging destination of a user pool. User pools can have multiple logging destinations for message-delivery and user-activity logs.
This is a convenience method that creates an instance of theLogConfigurationType.Builderavoiding the need to create one manually viaLogConfigurationType.builder().When the
Consumercompletes,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)
-
-