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

com.amazonaws.services.organizations.model.UpdatePolicyRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Organizations module holds the client classes that are used for communicating with AWS Organizations.

There is a newer version: 1.12.778
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.organizations.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 UpdatePolicyRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The unique identifier (ID) of the policy that you want to update. *

*

* The regex pattern for a policy ID string requires "p-" followed by * from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_). *

*/ private String policyId; /** *

* If provided, the new name for the policy. *

*

* The regex pattern that is used to validate this parameter is a * string of any of the characters in the ASCII character range. *

*/ private String name; /** *

* If provided, the new description for the policy. *

*/ private String description; /** *

* If provided, the new content for the policy. The text must be correctly formatted JSON that complies with the * syntax for the policy's type. For more information, see SCP * syntax in the Organizations User Guide. *

*

* The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide. *

*/ private String content; /** *

* The unique identifier (ID) of the policy that you want to update. *

*

* The regex pattern for a policy ID string requires "p-" followed by * from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_). *

* * @param policyId * The unique identifier (ID) of the policy that you want to update.

*

* The regex pattern for a policy ID string requires "p-" * followed by from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_). */ public void setPolicyId(String policyId) { this.policyId = policyId; } /** *

* The unique identifier (ID) of the policy that you want to update. *

*

* The regex pattern for a policy ID string requires "p-" followed by * from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_). *

* * @return The unique identifier (ID) of the policy that you want to update.

*

* The regex pattern for a policy ID string requires "p-" * followed by from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_). */ public String getPolicyId() { return this.policyId; } /** *

* The unique identifier (ID) of the policy that you want to update. *

*

* The regex pattern for a policy ID string requires "p-" followed by * from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_). *

* * @param policyId * The unique identifier (ID) of the policy that you want to update.

*

* The regex pattern for a policy ID string requires "p-" * followed by from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_). * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePolicyRequest withPolicyId(String policyId) { setPolicyId(policyId); return this; } /** *

* If provided, the new name for the policy. *

*

* The regex pattern that is used to validate this parameter is a * string of any of the characters in the ASCII character range. *

* * @param name * If provided, the new name for the policy.

*

* The regex pattern that is used to validate this parameter is * a string of any of the characters in the ASCII character range. */ public void setName(String name) { this.name = name; } /** *

* If provided, the new name for the policy. *

*

* The regex pattern that is used to validate this parameter is a * string of any of the characters in the ASCII character range. *

* * @return If provided, the new name for the policy.

*

* The regex pattern that is used to validate this parameter * is a string of any of the characters in the ASCII character range. */ public String getName() { return this.name; } /** *

* If provided, the new name for the policy. *

*

* The regex pattern that is used to validate this parameter is a * string of any of the characters in the ASCII character range. *

* * @param name * If provided, the new name for the policy.

*

* The regex pattern that is used to validate this parameter is * a string of any of the characters in the ASCII character range. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePolicyRequest withName(String name) { setName(name); return this; } /** *

* If provided, the new description for the policy. *

* * @param description * If provided, the new description for the policy. */ public void setDescription(String description) { this.description = description; } /** *

* If provided, the new description for the policy. *

* * @return If provided, the new description for the policy. */ public String getDescription() { return this.description; } /** *

* If provided, the new description for the policy. *

* * @param description * If provided, the new description for the policy. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePolicyRequest withDescription(String description) { setDescription(description); return this; } /** *

* If provided, the new content for the policy. The text must be correctly formatted JSON that complies with the * syntax for the policy's type. For more information, see SCP * syntax in the Organizations User Guide. *

*

* The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide. *

* * @param content * If provided, the new content for the policy. The text must be correctly formatted JSON that complies with * the syntax for the policy's type. For more information, see SCP syntax in the Organizations User Guide.

*

* The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide. */ public void setContent(String content) { this.content = content; } /** *

* If provided, the new content for the policy. The text must be correctly formatted JSON that complies with the * syntax for the policy's type. For more information, see SCP * syntax in the Organizations User Guide. *

*

* The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide. *

* * @return If provided, the new content for the policy. The text must be correctly formatted JSON that complies with * the syntax for the policy's type. For more information, see SCP syntax in the Organizations User Guide.

*

* The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide. */ public String getContent() { return this.content; } /** *

* If provided, the new content for the policy. The text must be correctly formatted JSON that complies with the * syntax for the policy's type. For more information, see SCP * syntax in the Organizations User Guide. *

*

* The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide. *

* * @param content * If provided, the new content for the policy. The text must be correctly formatted JSON that complies with * the syntax for the policy's type. For more information, see SCP syntax in the Organizations User Guide.

*

* The maximum size of a policy document depends on the policy's type. For more information, see Maximum and minimum values in the Organizations User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdatePolicyRequest withContent(String content) { setContent(content); 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 (getPolicyId() != null) sb.append("PolicyId: ").append(getPolicyId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getContent() != null) sb.append("Content: ").append(getContent()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdatePolicyRequest == false) return false; UpdatePolicyRequest other = (UpdatePolicyRequest) obj; if (other.getPolicyId() == null ^ this.getPolicyId() == null) return false; if (other.getPolicyId() != null && other.getPolicyId().equals(this.getPolicyId()) == 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.getContent() == null ^ this.getContent() == null) return false; if (other.getContent() != null && other.getContent().equals(this.getContent()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPolicyId() == null) ? 0 : getPolicyId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getContent() == null) ? 0 : getContent().hashCode()); return hashCode; } @Override public UpdatePolicyRequest clone() { return (UpdatePolicyRequest) super.clone(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy