Interface StreamConfigurationSessionStorage.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StreamConfigurationSessionStorage.Builder,StreamConfigurationSessionStorage>,SdkBuilder<StreamConfigurationSessionStorage.Builder,StreamConfigurationSessionStorage>,SdkPojo
- Enclosing class:
- StreamConfigurationSessionStorage
public static interface StreamConfigurationSessionStorage.Builder extends SdkPojo, CopyableBuilder<StreamConfigurationSessionStorage.Builder,StreamConfigurationSessionStorage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StreamConfigurationSessionStorage.Buildermode(Collection<StreamingSessionStorageMode> mode)Allows artists to upload files to their workstations.StreamConfigurationSessionStorage.Buildermode(StreamingSessionStorageMode... mode)Allows artists to upload files to their workstations.StreamConfigurationSessionStorage.BuildermodeWithStrings(String... mode)Allows artists to upload files to their workstations.StreamConfigurationSessionStorage.BuildermodeWithStrings(Collection<String> mode)Allows artists to upload files to their workstations.default StreamConfigurationSessionStorage.Builderroot(Consumer<StreamingSessionStorageRoot.Builder> root)The configuration for the upload storage root of the streaming session.StreamConfigurationSessionStorage.Builderroot(StreamingSessionStorageRoot root)The configuration for the upload storage root of the streaming session.-
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
-
modeWithStrings
StreamConfigurationSessionStorage.Builder modeWithStrings(Collection<String> mode)
Allows artists to upload files to their workstations. The only valid option is
UPLOAD.- Parameters:
mode- Allows artists to upload files to their workstations. The only valid option isUPLOAD.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modeWithStrings
StreamConfigurationSessionStorage.Builder modeWithStrings(String... mode)
Allows artists to upload files to their workstations. The only valid option is
UPLOAD.- Parameters:
mode- Allows artists to upload files to their workstations. The only valid option isUPLOAD.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mode
StreamConfigurationSessionStorage.Builder mode(Collection<StreamingSessionStorageMode> mode)
Allows artists to upload files to their workstations. The only valid option is
UPLOAD.- Parameters:
mode- Allows artists to upload files to their workstations. The only valid option isUPLOAD.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mode
StreamConfigurationSessionStorage.Builder mode(StreamingSessionStorageMode... mode)
Allows artists to upload files to their workstations. The only valid option is
UPLOAD.- Parameters:
mode- Allows artists to upload files to their workstations. The only valid option isUPLOAD.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
root
StreamConfigurationSessionStorage.Builder root(StreamingSessionStorageRoot root)
The configuration for the upload storage root of the streaming session.
- Parameters:
root- The configuration for the upload storage root of the streaming session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
root
default StreamConfigurationSessionStorage.Builder root(Consumer<StreamingSessionStorageRoot.Builder> root)
The configuration for the upload storage root of the streaming session.
This is a convenience method that creates an instance of theStreamingSessionStorageRoot.Builderavoiding the need to create one manually viaStreamingSessionStorageRoot.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toroot(StreamingSessionStorageRoot).- Parameters:
root- a consumer that will call methods onStreamingSessionStorageRoot.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
root(StreamingSessionStorageRoot)
-
-