All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.apprunner.model.CreateServiceRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS App Runner module holds the client classes that are used for communicating with AWS App Runner Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.apprunner.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateServiceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* A name for the App Runner service. It must be unique across all the running App Runner services in your Amazon * Web Services account in the Amazon Web Services Region. *

*/ private String serviceName; /** *

* The source to deploy to the App Runner service. It can be a code or an image repository. *

*/ private SourceConfiguration sourceConfiguration; /** *

* The runtime configuration of instances (scaling units) of your service. *

*/ private InstanceConfiguration instanceConfiguration; /** *

* An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. *

*/ private java.util.List tags; /** *

* An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that it * maintains and your service logs. By default, App Runner uses an Amazon Web Services managed key. *

*/ private EncryptionConfiguration encryptionConfiguration; /** *

* The settings for the health check that App Runner performs to monitor the health of the App Runner service. *

*/ private HealthCheckConfiguration healthCheckConfiguration; /** *

* The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to * associate with your service. If not provided, App Runner associates the latest revision of a default auto scaling * configuration. *

*

* Specify an ARN with a name and a revision number to associate that revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3 *

*

* Specify just the name to associate the latest revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability *

*/ private String autoScalingConfigurationArn; /** *

* Configuration settings related to network traffic of the web application that the App Runner service runs. *

*/ private NetworkConfiguration networkConfiguration; /** *

* The observability configuration of your service. *

*/ private ServiceObservabilityConfiguration observabilityConfiguration; /** *

* A name for the App Runner service. It must be unique across all the running App Runner services in your Amazon * Web Services account in the Amazon Web Services Region. *

* * @param serviceName * A name for the App Runner service. It must be unique across all the running App Runner services in your * Amazon Web Services account in the Amazon Web Services Region. */ public void setServiceName(String serviceName) { this.serviceName = serviceName; } /** *

* A name for the App Runner service. It must be unique across all the running App Runner services in your Amazon * Web Services account in the Amazon Web Services Region. *

* * @return A name for the App Runner service. It must be unique across all the running App Runner services in your * Amazon Web Services account in the Amazon Web Services Region. */ public String getServiceName() { return this.serviceName; } /** *

* A name for the App Runner service. It must be unique across all the running App Runner services in your Amazon * Web Services account in the Amazon Web Services Region. *

* * @param serviceName * A name for the App Runner service. It must be unique across all the running App Runner services in your * Amazon Web Services account in the Amazon Web Services Region. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withServiceName(String serviceName) { setServiceName(serviceName); return this; } /** *

* The source to deploy to the App Runner service. It can be a code or an image repository. *

* * @param sourceConfiguration * The source to deploy to the App Runner service. It can be a code or an image repository. */ public void setSourceConfiguration(SourceConfiguration sourceConfiguration) { this.sourceConfiguration = sourceConfiguration; } /** *

* The source to deploy to the App Runner service. It can be a code or an image repository. *

* * @return The source to deploy to the App Runner service. It can be a code or an image repository. */ public SourceConfiguration getSourceConfiguration() { return this.sourceConfiguration; } /** *

* The source to deploy to the App Runner service. It can be a code or an image repository. *

* * @param sourceConfiguration * The source to deploy to the App Runner service. It can be a code or an image repository. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withSourceConfiguration(SourceConfiguration sourceConfiguration) { setSourceConfiguration(sourceConfiguration); return this; } /** *

* The runtime configuration of instances (scaling units) of your service. *

* * @param instanceConfiguration * The runtime configuration of instances (scaling units) of your service. */ public void setInstanceConfiguration(InstanceConfiguration instanceConfiguration) { this.instanceConfiguration = instanceConfiguration; } /** *

* The runtime configuration of instances (scaling units) of your service. *

* * @return The runtime configuration of instances (scaling units) of your service. */ public InstanceConfiguration getInstanceConfiguration() { return this.instanceConfiguration; } /** *

* The runtime configuration of instances (scaling units) of your service. *

* * @param instanceConfiguration * The runtime configuration of instances (scaling units) of your service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withInstanceConfiguration(InstanceConfiguration instanceConfiguration) { setInstanceConfiguration(instanceConfiguration); return this; } /** *

* An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. *

* * @return An optional list of metadata items that you can associate with the App Runner service resource. A tag is * a key-value pair. */ public java.util.List getTags() { return tags; } /** *

* An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. *

* * @param tags * An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. *

* * @param tags * An optional list of metadata items that you can associate with the App Runner service resource. A tag is a * key-value pair. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

* An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that it * maintains and your service logs. By default, App Runner uses an Amazon Web Services managed key. *

* * @param encryptionConfiguration * An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that * it maintains and your service logs. By default, App Runner uses an Amazon Web Services managed key. */ public void setEncryptionConfiguration(EncryptionConfiguration encryptionConfiguration) { this.encryptionConfiguration = encryptionConfiguration; } /** *

* An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that it * maintains and your service logs. By default, App Runner uses an Amazon Web Services managed key. *

* * @return An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that * it maintains and your service logs. By default, App Runner uses an Amazon Web Services managed key. */ public EncryptionConfiguration getEncryptionConfiguration() { return this.encryptionConfiguration; } /** *

* An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that it * maintains and your service logs. By default, App Runner uses an Amazon Web Services managed key. *

* * @param encryptionConfiguration * An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that * it maintains and your service logs. By default, App Runner uses an Amazon Web Services managed key. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withEncryptionConfiguration(EncryptionConfiguration encryptionConfiguration) { setEncryptionConfiguration(encryptionConfiguration); return this; } /** *

* The settings for the health check that App Runner performs to monitor the health of the App Runner service. *

* * @param healthCheckConfiguration * The settings for the health check that App Runner performs to monitor the health of the App Runner * service. */ public void setHealthCheckConfiguration(HealthCheckConfiguration healthCheckConfiguration) { this.healthCheckConfiguration = healthCheckConfiguration; } /** *

* The settings for the health check that App Runner performs to monitor the health of the App Runner service. *

* * @return The settings for the health check that App Runner performs to monitor the health of the App Runner * service. */ public HealthCheckConfiguration getHealthCheckConfiguration() { return this.healthCheckConfiguration; } /** *

* The settings for the health check that App Runner performs to monitor the health of the App Runner service. *

* * @param healthCheckConfiguration * The settings for the health check that App Runner performs to monitor the health of the App Runner * service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withHealthCheckConfiguration(HealthCheckConfiguration healthCheckConfiguration) { setHealthCheckConfiguration(healthCheckConfiguration); return this; } /** *

* The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to * associate with your service. If not provided, App Runner associates the latest revision of a default auto scaling * configuration. *

*

* Specify an ARN with a name and a revision number to associate that revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3 *

*

* Specify just the name to associate the latest revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability *

* * @param autoScalingConfigurationArn * The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to * associate with your service. If not provided, App Runner associates the latest revision of a default auto * scaling configuration.

*

* Specify an ARN with a name and a revision number to associate that revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3 *

*

* Specify just the name to associate the latest revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability */ public void setAutoScalingConfigurationArn(String autoScalingConfigurationArn) { this.autoScalingConfigurationArn = autoScalingConfigurationArn; } /** *

* The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to * associate with your service. If not provided, App Runner associates the latest revision of a default auto scaling * configuration. *

*

* Specify an ARN with a name and a revision number to associate that revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3 *

*

* Specify just the name to associate the latest revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability *

* * @return The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to * associate with your service. If not provided, App Runner associates the latest revision of a default auto * scaling configuration.

*

* Specify an ARN with a name and a revision number to associate that revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3 *

*

* Specify just the name to associate the latest revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability */ public String getAutoScalingConfigurationArn() { return this.autoScalingConfigurationArn; } /** *

* The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to * associate with your service. If not provided, App Runner associates the latest revision of a default auto scaling * configuration. *

*

* Specify an ARN with a name and a revision number to associate that revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3 *

*

* Specify just the name to associate the latest revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability *

* * @param autoScalingConfigurationArn * The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to * associate with your service. If not provided, App Runner associates the latest revision of a default auto * scaling configuration.

*

* Specify an ARN with a name and a revision number to associate that revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3 *

*

* Specify just the name to associate the latest revision. For example: * arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withAutoScalingConfigurationArn(String autoScalingConfigurationArn) { setAutoScalingConfigurationArn(autoScalingConfigurationArn); return this; } /** *

* Configuration settings related to network traffic of the web application that the App Runner service runs. *

* * @param networkConfiguration * Configuration settings related to network traffic of the web application that the App Runner service runs. */ public void setNetworkConfiguration(NetworkConfiguration networkConfiguration) { this.networkConfiguration = networkConfiguration; } /** *

* Configuration settings related to network traffic of the web application that the App Runner service runs. *

* * @return Configuration settings related to network traffic of the web application that the App Runner service * runs. */ public NetworkConfiguration getNetworkConfiguration() { return this.networkConfiguration; } /** *

* Configuration settings related to network traffic of the web application that the App Runner service runs. *

* * @param networkConfiguration * Configuration settings related to network traffic of the web application that the App Runner service runs. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withNetworkConfiguration(NetworkConfiguration networkConfiguration) { setNetworkConfiguration(networkConfiguration); return this; } /** *

* The observability configuration of your service. *

* * @param observabilityConfiguration * The observability configuration of your service. */ public void setObservabilityConfiguration(ServiceObservabilityConfiguration observabilityConfiguration) { this.observabilityConfiguration = observabilityConfiguration; } /** *

* The observability configuration of your service. *

* * @return The observability configuration of your service. */ public ServiceObservabilityConfiguration getObservabilityConfiguration() { return this.observabilityConfiguration; } /** *

* The observability configuration of your service. *

* * @param observabilityConfiguration * The observability configuration of your service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateServiceRequest withObservabilityConfiguration(ServiceObservabilityConfiguration observabilityConfiguration) { setObservabilityConfiguration(observabilityConfiguration); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getServiceName() != null) sb.append("ServiceName: ").append(getServiceName()).append(","); if (getSourceConfiguration() != null) sb.append("SourceConfiguration: ").append(getSourceConfiguration()).append(","); if (getInstanceConfiguration() != null) sb.append("InstanceConfiguration: ").append(getInstanceConfiguration()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getEncryptionConfiguration() != null) sb.append("EncryptionConfiguration: ").append(getEncryptionConfiguration()).append(","); if (getHealthCheckConfiguration() != null) sb.append("HealthCheckConfiguration: ").append(getHealthCheckConfiguration()).append(","); if (getAutoScalingConfigurationArn() != null) sb.append("AutoScalingConfigurationArn: ").append(getAutoScalingConfigurationArn()).append(","); if (getNetworkConfiguration() != null) sb.append("NetworkConfiguration: ").append(getNetworkConfiguration()).append(","); if (getObservabilityConfiguration() != null) sb.append("ObservabilityConfiguration: ").append(getObservabilityConfiguration()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateServiceRequest == false) return false; CreateServiceRequest other = (CreateServiceRequest) obj; if (other.getServiceName() == null ^ this.getServiceName() == null) return false; if (other.getServiceName() != null && other.getServiceName().equals(this.getServiceName()) == false) return false; if (other.getSourceConfiguration() == null ^ this.getSourceConfiguration() == null) return false; if (other.getSourceConfiguration() != null && other.getSourceConfiguration().equals(this.getSourceConfiguration()) == false) return false; if (other.getInstanceConfiguration() == null ^ this.getInstanceConfiguration() == null) return false; if (other.getInstanceConfiguration() != null && other.getInstanceConfiguration().equals(this.getInstanceConfiguration()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getEncryptionConfiguration() == null ^ this.getEncryptionConfiguration() == null) return false; if (other.getEncryptionConfiguration() != null && other.getEncryptionConfiguration().equals(this.getEncryptionConfiguration()) == false) return false; if (other.getHealthCheckConfiguration() == null ^ this.getHealthCheckConfiguration() == null) return false; if (other.getHealthCheckConfiguration() != null && other.getHealthCheckConfiguration().equals(this.getHealthCheckConfiguration()) == false) return false; if (other.getAutoScalingConfigurationArn() == null ^ this.getAutoScalingConfigurationArn() == null) return false; if (other.getAutoScalingConfigurationArn() != null && other.getAutoScalingConfigurationArn().equals(this.getAutoScalingConfigurationArn()) == false) return false; if (other.getNetworkConfiguration() == null ^ this.getNetworkConfiguration() == null) return false; if (other.getNetworkConfiguration() != null && other.getNetworkConfiguration().equals(this.getNetworkConfiguration()) == false) return false; if (other.getObservabilityConfiguration() == null ^ this.getObservabilityConfiguration() == null) return false; if (other.getObservabilityConfiguration() != null && other.getObservabilityConfiguration().equals(this.getObservabilityConfiguration()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServiceName() == null) ? 0 : getServiceName().hashCode()); hashCode = prime * hashCode + ((getSourceConfiguration() == null) ? 0 : getSourceConfiguration().hashCode()); hashCode = prime * hashCode + ((getInstanceConfiguration() == null) ? 0 : getInstanceConfiguration().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getEncryptionConfiguration() == null) ? 0 : getEncryptionConfiguration().hashCode()); hashCode = prime * hashCode + ((getHealthCheckConfiguration() == null) ? 0 : getHealthCheckConfiguration().hashCode()); hashCode = prime * hashCode + ((getAutoScalingConfigurationArn() == null) ? 0 : getAutoScalingConfigurationArn().hashCode()); hashCode = prime * hashCode + ((getNetworkConfiguration() == null) ? 0 : getNetworkConfiguration().hashCode()); hashCode = prime * hashCode + ((getObservabilityConfiguration() == null) ? 0 : getObservabilityConfiguration().hashCode()); return hashCode; } @Override public CreateServiceRequest clone() { return (CreateServiceRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy