Interface UpdateApplicationRequest.Builder

  • Method Details

    • name

      The name of the application. This name is visible to users when display name is not specified.

      Parameters:
      name - The name of the application. This name is visible to users when display name is not specified.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • displayName

      UpdateApplicationRequest.Builder displayName(String displayName)

      The display name of the application. This name is visible to users in the application catalog.

      Parameters:
      displayName - The display name of the application. This name is visible to users in the application catalog.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • description

      UpdateApplicationRequest.Builder description(String description)

      The description of the application.

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

      UpdateApplicationRequest.Builder iconS3Location(S3Location iconS3Location)

      The icon S3 location of the application.

      Parameters:
      iconS3Location - The icon S3 location of the application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • iconS3Location

      default UpdateApplicationRequest.Builder iconS3Location(Consumer<S3Location.Builder> iconS3Location)

      The icon S3 location of the application.

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

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

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

      UpdateApplicationRequest.Builder launchPath(String launchPath)

      The launch path of the application.

      Parameters:
      launchPath - The launch path of the application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • workingDirectory

      UpdateApplicationRequest.Builder workingDirectory(String workingDirectory)

      The working directory of the application.

      Parameters:
      workingDirectory - The working directory of the application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • launchParameters

      UpdateApplicationRequest.Builder launchParameters(String launchParameters)

      The launch parameters of the application.

      Parameters:
      launchParameters - The launch parameters of the application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • appBlockArn

      UpdateApplicationRequest.Builder appBlockArn(String appBlockArn)

      The ARN of the app block.

      Parameters:
      appBlockArn - The ARN of the app block.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • attributesToDeleteWithStrings

      UpdateApplicationRequest.Builder attributesToDeleteWithStrings(Collection<String> attributesToDelete)

      The attributes to delete for an application.

      Parameters:
      attributesToDelete - The attributes to delete for an application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • attributesToDeleteWithStrings

      UpdateApplicationRequest.Builder attributesToDeleteWithStrings(String... attributesToDelete)

      The attributes to delete for an application.

      Parameters:
      attributesToDelete - The attributes to delete for an application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • attributesToDelete

      UpdateApplicationRequest.Builder attributesToDelete(Collection<ApplicationAttribute> attributesToDelete)

      The attributes to delete for an application.

      Parameters:
      attributesToDelete - The attributes to delete for an application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • attributesToDelete

      UpdateApplicationRequest.Builder attributesToDelete(ApplicationAttribute... attributesToDelete)

      The attributes to delete for an application.

      Parameters:
      attributesToDelete - The attributes to delete for an application.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • overrideConfiguration

      UpdateApplicationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.