Interface Stack.Builder

All Superinterfaces:
Buildable, CopyableBuilder<Stack.Builder,Stack>, SdkBuilder<Stack.Builder,Stack>, SdkPojo
Enclosing class:
Stack

public static interface Stack.Builder extends SdkPojo, CopyableBuilder<Stack.Builder,Stack>
  • Method Details

    • arn

      The ARN of the stack.

      Parameters:
      arn - The ARN of the stack.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • name

      Stack.Builder name(String name)

      The name of the stack.

      Parameters:
      name - The name of the stack.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • description

      Stack.Builder description(String description)

      The description to display.

      Parameters:
      description - The description to display.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • displayName

      Stack.Builder displayName(String displayName)

      The stack name to display.

      Parameters:
      displayName - The stack name to display.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • createdTime

      Stack.Builder createdTime(Instant createdTime)

      The time the stack was created.

      Parameters:
      createdTime - The time the stack was created.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • storageConnectors

      Stack.Builder storageConnectors(Collection<StorageConnector> storageConnectors)

      The storage connectors to enable.

      Parameters:
      storageConnectors - The storage connectors to enable.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • storageConnectors

      Stack.Builder storageConnectors(StorageConnector... storageConnectors)

      The storage connectors to enable.

      Parameters:
      storageConnectors - The storage connectors to enable.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • storageConnectors

      Stack.Builder storageConnectors(Consumer<StorageConnector.Builder>... storageConnectors)

      The storage connectors to enable.

      This is a convenience method that creates an instance of the StorageConnector.Builder avoiding the need to create one manually via StorageConnector.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to storageConnectors(List<StorageConnector>).

      Parameters:
      storageConnectors - a consumer that will call methods on StorageConnector.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • redirectURL

      Stack.Builder redirectURL(String redirectURL)

      The URL that users are redirected to after their streaming session ends.

      Parameters:
      redirectURL - The URL that users are redirected to after their streaming session ends.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • feedbackURL

      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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • stackErrors

      Stack.Builder stackErrors(Collection<StackError> stackErrors)

      The errors for the stack.

      Parameters:
      stackErrors - The errors for the stack.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • stackErrors

      Stack.Builder stackErrors(StackError... stackErrors)

      The errors for the stack.

      Parameters:
      stackErrors - The errors for the stack.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • stackErrors

      Stack.Builder stackErrors(Consumer<StackError.Builder>... stackErrors)

      The errors for the stack.

      This is a convenience method that creates an instance of the StackError.Builder avoiding the need to create one manually via StackError.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to stackErrors(List<StackError>).

      Parameters:
      stackErrors - a consumer that will call methods on StackError.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • userSettings

      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.

      Parameters:
      userSettings - The actions that are enabled or disabled for users during their streaming sessions. By default these actions are enabled.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • userSettings

      Stack.Builder userSettings(UserSetting... userSettings)

      The actions that are enabled or disabled for users during their streaming sessions. By default these actions are enabled.

      Parameters:
      userSettings - The actions that are enabled or disabled for users during their streaming sessions. By default these actions are enabled.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • userSettings

      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 method that creates an instance of the UserSetting.Builder avoiding the need to create one manually via UserSetting.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to userSettings(List<UserSetting>).

      Parameters:
      userSettings - a consumer that will call methods on UserSetting.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • applicationSettings

      Stack.Builder applicationSettings(ApplicationSettingsResponse applicationSettings)

      The persistent application settings for users of the stack.

      Parameters:
      applicationSettings - The persistent application settings for users of the stack.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • applicationSettings

      default Stack.Builder applicationSettings(Consumer<ApplicationSettingsResponse.Builder> applicationSettings)

      The persistent application settings for users of the stack.

      This is a convenience method that creates an instance of the ApplicationSettingsResponse.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).

      Parameters:
      applicationSettings - a consumer that will call methods on ApplicationSettingsResponse.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • accessEndpoints

      Stack.Builder accessEndpoints(Collection<AccessEndpoint> accessEndpoints)

      The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.

      Parameters:
      accessEndpoints - The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • accessEndpoints

      Stack.Builder accessEndpoints(AccessEndpoint... accessEndpoints)

      The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.

      Parameters:
      accessEndpoints - The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • accessEndpoints

      Stack.Builder accessEndpoints(Consumer<AccessEndpoint.Builder>... accessEndpoints)

      The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.

      This is a convenience method that creates an instance of the AccessEndpoint.Builder avoiding the need to create one manually via AccessEndpoint.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to accessEndpoints(List<AccessEndpoint>).

      Parameters:
      accessEndpoints - a consumer that will call methods on AccessEndpoint.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • embedHostDomains

      Stack.Builder embedHostDomains(Collection<String> embedHostDomains)

      The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.

      Parameters:
      embedHostDomains - The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • embedHostDomains

      Stack.Builder embedHostDomains(String... embedHostDomains)

      The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.

      Parameters:
      embedHostDomains - The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • streamingExperienceSettings

      Stack.Builder streamingExperienceSettings(StreamingExperienceSettings streamingExperienceSettings)

      The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.

      Parameters:
      streamingExperienceSettings - The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • streamingExperienceSettings

      default Stack.Builder streamingExperienceSettings(Consumer<StreamingExperienceSettings.Builder> streamingExperienceSettings)

      The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.

      This is a convenience method that creates an instance of the StreamingExperienceSettings.Builder avoiding the need to create one manually via StreamingExperienceSettings.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to streamingExperienceSettings(StreamingExperienceSettings).

      Parameters:
      streamingExperienceSettings - a consumer that will call methods on StreamingExperienceSettings.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: