public static interface Stack.Builder extends SdkPojo, CopyableBuilder<Stack.Builder,Stack>
Modifier and Type | Method and Description |
---|---|
Stack.Builder |
applicationSettings(ApplicationSettingsResponse applicationSettings)
The persistent application settings for users of the stack.
|
default Stack.Builder |
applicationSettings(Consumer<ApplicationSettingsResponse.Builder> applicationSettings)
The persistent application settings for users of the stack.
|
Stack.Builder |
arn(String arn)
The ARN of the stack.
|
Stack.Builder |
createdTime(Instant createdTime)
The time the stack was created.
|
Stack.Builder |
description(String description)
The description for display.
|
Stack.Builder |
displayName(String displayName)
The stack name for display.
|
Stack.Builder |
feedbackURL(String feedbackURL)
The URL that users are redirected to after they click the Send Feedback link.
|
Stack.Builder |
name(String name)
The name of the stack.
|
Stack.Builder |
redirectURL(String redirectURL)
The URL that users are redirected to after their streaming session ends.
|
Stack.Builder |
stackErrors(Collection<StackError> stackErrors)
The errors for the stack.
|
Stack.Builder |
stackErrors(Consumer<StackError.Builder>... stackErrors)
The errors for the stack.
|
Stack.Builder |
stackErrors(StackError... stackErrors)
The errors for the stack.
|
Stack.Builder |
storageConnectors(Collection<StorageConnector> storageConnectors)
The storage connectors to enable.
|
Stack.Builder |
storageConnectors(Consumer<StorageConnector.Builder>... storageConnectors)
The storage connectors to enable.
|
Stack.Builder |
storageConnectors(StorageConnector... storageConnectors)
The storage connectors to enable.
|
Stack.Builder |
userSettings(Collection<UserSetting> userSettings)
The actions that are enabled or disabled for users during their streaming sessions.
|
Stack.Builder |
userSettings(Consumer<UserSetting.Builder>... userSettings)
The actions that are enabled or disabled for users during their streaming sessions.
|
Stack.Builder |
userSettings(UserSetting... userSettings)
The actions that are enabled or disabled for users during their streaming sessions.
|
copy
applyMutation, build
Stack.Builder arn(String arn)
The ARN of the stack.
arn
- The ARN of the stack.Stack.Builder name(String name)
The name of the stack.
name
- The name of the stack.Stack.Builder description(String description)
The description for display.
description
- The description for display.Stack.Builder displayName(String displayName)
The stack name for display.
displayName
- The stack name for display.Stack.Builder createdTime(Instant createdTime)
The time the stack was created.
createdTime
- The time the stack was created.Stack.Builder storageConnectors(Collection<StorageConnector> storageConnectors)
The storage connectors to enable.
storageConnectors
- The storage connectors to enable.Stack.Builder storageConnectors(StorageConnector... storageConnectors)
The storage connectors to enable.
storageConnectors
- The storage connectors to enable.Stack.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)
Stack.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.Stack.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.Stack.Builder stackErrors(Collection<StackError> stackErrors)
The errors for the stack.
stackErrors
- The errors for the stack.Stack.Builder stackErrors(StackError... stackErrors)
The errors for the stack.
stackErrors
- The errors for the stack.Stack.Builder stackErrors(Consumer<StackError.Builder>... stackErrors)
The errors for the stack.
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 #stackErrors(List)
.stackErrors
- a consumer that will call methods on List.Builder
#stackErrors(List)
Stack.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.Stack.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.Stack.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)
Stack.Builder applicationSettings(ApplicationSettingsResponse applicationSettings)
The persistent application settings for users of the stack.
applicationSettings
- The persistent application settings for users of the stack.default Stack.Builder applicationSettings(Consumer<ApplicationSettingsResponse.Builder> applicationSettings)
The persistent application settings for users of the stack.
This is a convenience that creates an instance of theApplicationSettingsResponse.Builder
avoiding
the need to create one manually via ApplicationSettingsResponse.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called
immediately and its result is passed to applicationSettings(ApplicationSettingsResponse)
.applicationSettings
- a consumer that will call methods on ApplicationSettingsResponse.Builder
applicationSettings(ApplicationSettingsResponse)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.