Interface SnapshotUserConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SnapshotUserConfiguration.Builder,SnapshotUserConfiguration>,SdkBuilder<SnapshotUserConfiguration.Builder,SnapshotUserConfiguration>,SdkPojo
- Enclosing class:
- SnapshotUserConfiguration
public static interface SnapshotUserConfiguration.Builder extends SdkPojo, CopyableBuilder<SnapshotUserConfiguration.Builder,SnapshotUserConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SnapshotUserConfiguration.BuilderanonymousUsers(Collection<SnapshotAnonymousUser> anonymousUsers)An array of records that describe the anonymous users that the dashboard snapshot is generated for.SnapshotUserConfiguration.BuilderanonymousUsers(Consumer<SnapshotAnonymousUser.Builder>... anonymousUsers)An array of records that describe the anonymous users that the dashboard snapshot is generated for.SnapshotUserConfiguration.BuilderanonymousUsers(SnapshotAnonymousUser... anonymousUsers)An array of records that describe the anonymous users that the dashboard snapshot is generated for.-
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
-
anonymousUsers
SnapshotUserConfiguration.Builder anonymousUsers(Collection<SnapshotAnonymousUser> anonymousUsers)
An array of records that describe the anonymous users that the dashboard snapshot is generated for.
- Parameters:
anonymousUsers- An array of records that describe the anonymous users that the dashboard snapshot is generated for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
anonymousUsers
SnapshotUserConfiguration.Builder anonymousUsers(SnapshotAnonymousUser... anonymousUsers)
An array of records that describe the anonymous users that the dashboard snapshot is generated for.
- Parameters:
anonymousUsers- An array of records that describe the anonymous users that the dashboard snapshot is generated for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
anonymousUsers
SnapshotUserConfiguration.Builder anonymousUsers(Consumer<SnapshotAnonymousUser.Builder>... anonymousUsers)
An array of records that describe the anonymous users that the dashboard snapshot is generated for.
This is a convenience method that creates an instance of theSnapshotAnonymousUser.Builderavoiding the need to create one manually viaSnapshotAnonymousUser.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#anonymousUsers(List.) - Parameters:
anonymousUsers- a consumer that will call methods onSnapshotAnonymousUser.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#anonymousUsers(java.util.Collection)
-
-