/*
* Copyright 2018-2023 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.appconfig.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateConfigurationProfileResult extends com.amazonaws.AmazonWebServiceResult
* The application ID.
*
* The configuration profile ID.
*
* The name of the configuration profile.
*
* The configuration profile description.
*
* The URI location of the configuration.
*
* The ARN of an IAM role with permission to access the configuration at the specified
* A list of methods for validating the configuration.
*
* The type of configurations contained in the profile. AppConfig supports
*
*
* The application ID.
*
* The application ID.
*
* The application ID.
*
* The configuration profile ID.
*
* The configuration profile ID.
*
* The configuration profile ID.
*
* The name of the configuration profile.
*
* The name of the configuration profile.
*
* The name of the configuration profile.
*
* The configuration profile description.
*
* The configuration profile description.
*
* The configuration profile description.
*
* The URI location of the configuration.
*
* The URI location of the configuration.
*
* The URI location of the configuration.
*
* The ARN of an IAM role with permission to access the configuration at the specified
* The ARN of an IAM role with permission to access the configuration at the specified
* The ARN of an IAM role with permission to access the configuration at the specified
* A list of methods for validating the configuration.
*
* A list of methods for validating the configuration.
*
* A list of methods for validating the configuration.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setValidators(java.util.Collection)} or {@link #withValidators(java.util.Collection)} if you want to
* override the existing values.
*
* A list of methods for validating the configuration.
*
* The type of configurations contained in the profile. AppConfig supports
*
* LocationUri
.
* feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
* AWS.AppConfig.FeatureFlags
* AWS.Freeform
* LocationUri
.
* LocationUri
.
*/
public void setRetrievalRoleArn(String retrievalRoleArn) {
this.retrievalRoleArn = retrievalRoleArn;
}
/**
* LocationUri
.
* LocationUri
.
*/
public String getRetrievalRoleArn() {
return this.retrievalRoleArn;
}
/**
* LocationUri
.
* LocationUri
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateConfigurationProfileResult withRetrievalRoleArn(String retrievalRoleArn) {
setRetrievalRoleArn(retrievalRoleArn);
return this;
}
/**
* feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
* AWS.AppConfig.FeatureFlags
* AWS.Freeform
* feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or
* disable new features and freeform configurations to distribute configurations to an application. When
* calling this API, enter one of the following values for Type
:
* AWS.AppConfig.FeatureFlags
*
* AWS.Freeform
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
*
* AWS.AppConfig.FeatureFlags
*
* AWS.Freeform
*
feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or
* disable new features and freeform configurations to distribute configurations to an application. When
* calling this API, enter one of the following values for Type
:
*
* AWS.AppConfig.FeatureFlags
*
* AWS.Freeform
*/
public String getType() {
return this.type;
}
/**
*
* The type of configurations contained in the profile. AppConfig supports feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or disable
* new features and freeform configurations to distribute configurations to an application. When calling this API,
* enter one of the following values for Type
:
*
* AWS.AppConfig.FeatureFlags
*
* AWS.Freeform
*
feature flags
and
* freeform
configurations. We recommend you create feature flag configurations to enable or
* disable new features and freeform configurations to distribute configurations to an application. When
* calling this API, enter one of the following values for Type
:
*
* AWS.AppConfig.FeatureFlags
*
* AWS.Freeform
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateConfigurationProfileResult withType(String type) {
setType(type);
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 (getApplicationId() != null)
sb.append("ApplicationId: ").append(getApplicationId()).append(",");
if (getId() != null)
sb.append("Id: ").append(getId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getLocationUri() != null)
sb.append("LocationUri: ").append(getLocationUri()).append(",");
if (getRetrievalRoleArn() != null)
sb.append("RetrievalRoleArn: ").append(getRetrievalRoleArn()).append(",");
if (getValidators() != null)
sb.append("Validators: ").append(getValidators()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateConfigurationProfileResult == false)
return false;
CreateConfigurationProfileResult other = (CreateConfigurationProfileResult) obj;
if (other.getApplicationId() == null ^ this.getApplicationId() == null)
return false;
if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false)
return false;
if (other.getId() == null ^ this.getId() == null)
return false;
if (other.getId() != null && other.getId().equals(this.getId()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getLocationUri() == null ^ this.getLocationUri() == null)
return false;
if (other.getLocationUri() != null && other.getLocationUri().equals(this.getLocationUri()) == false)
return false;
if (other.getRetrievalRoleArn() == null ^ this.getRetrievalRoleArn() == null)
return false;
if (other.getRetrievalRoleArn() != null && other.getRetrievalRoleArn().equals(this.getRetrievalRoleArn()) == false)
return false;
if (other.getValidators() == null ^ this.getValidators() == null)
return false;
if (other.getValidators() != null && other.getValidators().equals(this.getValidators()) == false)
return false;
if (other.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApplicationId() == null) ? 0 : getApplicationId().hashCode());
hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getLocationUri() == null) ? 0 : getLocationUri().hashCode());
hashCode = prime * hashCode + ((getRetrievalRoleArn() == null) ? 0 : getRetrievalRoleArn().hashCode());
hashCode = prime * hashCode + ((getValidators() == null) ? 0 : getValidators().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
return hashCode;
}
@Override
public CreateConfigurationProfileResult clone() {
try {
return (CreateConfigurationProfileResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}