public static interface UpdateStackRequest.Builder extends AppStreamRequest.Builder, SdkPojo, CopyableBuilder<UpdateStackRequest.Builder,UpdateStackRequest>
Modifier and Type | Method and Description |
---|---|
UpdateStackRequest.Builder |
applicationSettings(ApplicationSettings applicationSettings)
The persistent application settings for users of a stack.
|
default UpdateStackRequest.Builder |
applicationSettings(Consumer<ApplicationSettings.Builder> applicationSettings)
The persistent application settings for users of a stack.
|
UpdateStackRequest.Builder |
attributesToDelete(Collection<StackAttribute> attributesToDelete)
The stack attributes to delete.
|
UpdateStackRequest.Builder |
attributesToDelete(StackAttribute... attributesToDelete)
The stack attributes to delete.
|
UpdateStackRequest.Builder |
attributesToDeleteWithStrings(Collection<String> attributesToDelete)
The stack attributes to delete.
|
UpdateStackRequest.Builder |
attributesToDeleteWithStrings(String... attributesToDelete)
The stack attributes to delete.
|
UpdateStackRequest.Builder |
deleteStorageConnectors(Boolean deleteStorageConnectors)
Deletes the storage connectors currently enabled for the stack.
|
UpdateStackRequest.Builder |
description(String description)
The description for display.
|
UpdateStackRequest.Builder |
displayName(String displayName)
The stack name for display.
|
UpdateStackRequest.Builder |
feedbackURL(String feedbackURL)
The URL that users are redirected to after they click the Send Feedback link.
|
UpdateStackRequest.Builder |
name(String name)
The name of the stack.
|
UpdateStackRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
UpdateStackRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
UpdateStackRequest.Builder |
redirectURL(String redirectURL)
The URL that users are redirected to after their streaming session ends.
|
UpdateStackRequest.Builder |
storageConnectors(Collection<StorageConnector> storageConnectors)
The storage connectors to enable.
|
UpdateStackRequest.Builder |
storageConnectors(Consumer<StorageConnector.Builder>... storageConnectors)
The storage connectors to enable.
|
UpdateStackRequest.Builder |
storageConnectors(StorageConnector... storageConnectors)
The storage connectors to enable.
|
UpdateStackRequest.Builder |
userSettings(Collection<UserSetting> userSettings)
The actions that are enabled or disabled for users during their streaming sessions.
|
UpdateStackRequest.Builder |
userSettings(Consumer<UserSetting.Builder>... userSettings)
The actions that are enabled or disabled for users during their streaming sessions.
|
UpdateStackRequest.Builder |
userSettings(UserSetting... userSettings)
The actions that are enabled or disabled for users during their streaming sessions.
|
build
overrideConfiguration
copy
applyMutation, build
UpdateStackRequest.Builder displayName(String displayName)
The stack name for display.
displayName
- The stack name for display.UpdateStackRequest.Builder description(String description)
The description for display.
description
- The description for display.UpdateStackRequest.Builder name(String name)
The name of the stack.
name
- The name of the stack.UpdateStackRequest.Builder storageConnectors(Collection<StorageConnector> storageConnectors)
The storage connectors to enable.
storageConnectors
- The storage connectors to enable.UpdateStackRequest.Builder storageConnectors(StorageConnector... storageConnectors)
The storage connectors to enable.
storageConnectors
- The storage connectors to enable.UpdateStackRequest.Builder storageConnectors(Consumer<StorageConnector.Builder>... storageConnectors)
The storage connectors to enable.
This is a convenience that creates an instance of theList.Builder
avoiding the
need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #storageConnectors(List)
.storageConnectors
- a consumer that will call methods on List.Builder
#storageConnectors(List)
UpdateStackRequest.Builder deleteStorageConnectors(Boolean deleteStorageConnectors)
Deletes the storage connectors currently enabled for the stack.
deleteStorageConnectors
- Deletes the storage connectors currently enabled for the stack.UpdateStackRequest.Builder redirectURL(String redirectURL)
The URL that users are redirected to after their streaming session ends.
redirectURL
- The URL that users are redirected to after their streaming session ends.UpdateStackRequest.Builder feedbackURL(String feedbackURL)
The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.
feedbackURL
- The URL that users are redirected to after they click the Send Feedback link. If no URL is specified,
no Send Feedback link is displayed.UpdateStackRequest.Builder attributesToDeleteWithStrings(Collection<String> attributesToDelete)
The stack attributes to delete.
attributesToDelete
- The stack attributes to delete.UpdateStackRequest.Builder attributesToDeleteWithStrings(String... attributesToDelete)
The stack attributes to delete.
attributesToDelete
- The stack attributes to delete.UpdateStackRequest.Builder attributesToDelete(Collection<StackAttribute> attributesToDelete)
The stack attributes to delete.
attributesToDelete
- The stack attributes to delete.UpdateStackRequest.Builder attributesToDelete(StackAttribute... attributesToDelete)
The stack attributes to delete.
attributesToDelete
- The stack attributes to delete.UpdateStackRequest.Builder userSettings(Collection<UserSetting> userSettings)
The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.
userSettings
- The actions that are enabled or disabled for users during their streaming sessions. By default, these
actions are enabled.UpdateStackRequest.Builder userSettings(UserSetting... userSettings)
The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.
userSettings
- The actions that are enabled or disabled for users during their streaming sessions. By default, these
actions are enabled.UpdateStackRequest.Builder userSettings(Consumer<UserSetting.Builder>... userSettings)
The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #userSettings(List)
.userSettings
- a consumer that will call methods on List.Builder
#userSettings(List)
UpdateStackRequest.Builder applicationSettings(ApplicationSettings applicationSettings)
The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.
applicationSettings
- The persistent application settings for users of a stack. When these settings are enabled, changes
that users make to applications and Windows settings are automatically saved after each session and
applied to the next session.default UpdateStackRequest.Builder applicationSettings(Consumer<ApplicationSettings.Builder> applicationSettings)
The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.
This is a convenience that creates an instance of theApplicationSettings.Builder
avoiding the need
to create one manually via ApplicationSettings.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to applicationSettings(ApplicationSettings)
.applicationSettings
- a consumer that will call methods on ApplicationSettings.Builder
applicationSettings(ApplicationSettings)
UpdateStackRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.UpdateStackRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.