Interface GetApplicationResponse.Builder

    • Method Detail

      • applicationArn

        GetApplicationResponse.Builder applicationArn​(String applicationArn)

        The Amazon Resource Name (ARN) of the application.

        Parameters:
        applicationArn - The Amazon Resource Name (ARN) of the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • applicationId

        GetApplicationResponse.Builder applicationId​(String applicationId)

        The identifier of the application.

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

        GetApplicationResponse.Builder creationTime​(Instant creationTime)

        The timestamp when this application was created.

        Parameters:
        creationTime - The timestamp when this application was created.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • deployedVersion

        GetApplicationResponse.Builder deployedVersion​(DeployedVersionSummary deployedVersion)

        The version of the application that is deployed.

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

        GetApplicationResponse.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.
      • engineType

        GetApplicationResponse.Builder engineType​(String engineType)

        The type of the target platform for the application.

        Parameters:
        engineType - The type of the target platform for the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        EngineType, EngineType
      • engineType

        GetApplicationResponse.Builder engineType​(EngineType engineType)

        The type of the target platform for the application.

        Parameters:
        engineType - The type of the target platform for the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        EngineType, EngineType
      • environmentId

        GetApplicationResponse.Builder environmentId​(String environmentId)

        The identifier of the runtime environment where you want to deploy the application.

        Parameters:
        environmentId - The identifier of the runtime environment where you want to deploy the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • kmsKeyId

        GetApplicationResponse.Builder kmsKeyId​(String kmsKeyId)

        The identifier of a customer managed key.

        Parameters:
        kmsKeyId - The identifier of a customer managed key.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lastStartTime

        GetApplicationResponse.Builder lastStartTime​(Instant lastStartTime)

        The timestamp when you last started the application. Null until the application runs for the first time.

        Parameters:
        lastStartTime - The timestamp when you last started the application. Null until the application runs for the first time.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • latestVersion

        GetApplicationResponse.Builder latestVersion​(ApplicationVersionSummary latestVersion)

        The latest version of the application.

        Parameters:
        latestVersion - The latest version of the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • listenerArns

        GetApplicationResponse.Builder listenerArns​(Collection<String> listenerArns)

        The Amazon Resource Name (ARN) for the network load balancer listener created in your Amazon Web Services account. Amazon Web Services Mainframe Modernization creates this listener for you the first time you deploy an application.

        Parameters:
        listenerArns - The Amazon Resource Name (ARN) for the network load balancer listener created in your Amazon Web Services account. Amazon Web Services Mainframe Modernization creates this listener for you the first time you deploy an application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • listenerArns

        GetApplicationResponse.Builder listenerArns​(String... listenerArns)

        The Amazon Resource Name (ARN) for the network load balancer listener created in your Amazon Web Services account. Amazon Web Services Mainframe Modernization creates this listener for you the first time you deploy an application.

        Parameters:
        listenerArns - The Amazon Resource Name (ARN) for the network load balancer listener created in your Amazon Web Services account. Amazon Web Services Mainframe Modernization creates this listener for you the first time you deploy an application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • listenerPorts

        GetApplicationResponse.Builder listenerPorts​(Collection<Integer> listenerPorts)

        The port associated with the network load balancer listener created in your Amazon Web Services account.

        Parameters:
        listenerPorts - The port associated with the network load balancer listener created in your Amazon Web Services account.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • listenerPorts

        GetApplicationResponse.Builder listenerPorts​(Integer... listenerPorts)

        The port associated with the network load balancer listener created in your Amazon Web Services account.

        Parameters:
        listenerPorts - The port associated with the network load balancer listener created in your Amazon Web Services account.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • loadBalancerDnsName

        GetApplicationResponse.Builder loadBalancerDnsName​(String loadBalancerDnsName)

        The public DNS name of the load balancer created in your Amazon Web Services account.

        Parameters:
        loadBalancerDnsName - The public DNS name of the load balancer created in your Amazon Web Services account.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • logGroups

        GetApplicationResponse.Builder logGroups​(Collection<LogGroupSummary> logGroups)

        The list of log summaries. Each log summary includes the log type as well as the log group identifier. These are CloudWatch logs. Amazon Web Services Mainframe Modernization pushes the application log to CloudWatch under the customer's account.

        Parameters:
        logGroups - The list of log summaries. Each log summary includes the log type as well as the log group identifier. These are CloudWatch logs. Amazon Web Services Mainframe Modernization pushes the application log to CloudWatch under the customer's account.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • logGroups

        GetApplicationResponse.Builder logGroups​(LogGroupSummary... logGroups)

        The list of log summaries. Each log summary includes the log type as well as the log group identifier. These are CloudWatch logs. Amazon Web Services Mainframe Modernization pushes the application log to CloudWatch under the customer's account.

        Parameters:
        logGroups - The list of log summaries. Each log summary includes the log type as well as the log group identifier. These are CloudWatch logs. Amazon Web Services Mainframe Modernization pushes the application log to CloudWatch under the customer's account.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • logGroups

        GetApplicationResponse.Builder logGroups​(Consumer<LogGroupSummary.Builder>... logGroups)

        The list of log summaries. Each log summary includes the log type as well as the log group identifier. These are CloudWatch logs. Amazon Web Services Mainframe Modernization pushes the application log to CloudWatch under the customer's account.

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

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #logGroups(List).

        Parameters:
        logGroups - a consumer that will call methods on LogGroupSummary.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #logGroups(java.util.Collection)
      • name

        GetApplicationResponse.Builder name​(String name)

        The unique identifier of the application.

        Parameters:
        name - The unique identifier of the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • roleArn

        GetApplicationResponse.Builder roleArn​(String roleArn)

        The Amazon Resource Name (ARN) of the role associated with the application.

        Parameters:
        roleArn - The Amazon Resource Name (ARN) of the role associated with the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • statusReason

        GetApplicationResponse.Builder statusReason​(String statusReason)

        The reason for the reported status.

        Parameters:
        statusReason - The reason for the reported status.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        GetApplicationResponse.Builder tags​(Map<String,​String> tags)

        A list of tags associated with the application.

        Parameters:
        tags - A list of tags associated with the application.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • targetGroupArns

        GetApplicationResponse.Builder targetGroupArns​(Collection<String> targetGroupArns)

        Returns the Amazon Resource Names (ARNs) of the target groups that are attached to the network load balancer.

        Parameters:
        targetGroupArns - Returns the Amazon Resource Names (ARNs) of the target groups that are attached to the network load balancer.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • targetGroupArns

        GetApplicationResponse.Builder targetGroupArns​(String... targetGroupArns)

        Returns the Amazon Resource Names (ARNs) of the target groups that are attached to the network load balancer.

        Parameters:
        targetGroupArns - Returns the Amazon Resource Names (ARNs) of the target groups that are attached to the network load balancer.
        Returns:
        Returns a reference to this object so that method calls can be chained together.