
com.amazonaws.services.organizations.model.CreatePolicyRequest Maven / Gradle / Ivy
/*
* Copyright 2012-2017 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 CreatePolicyRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The policy content to add to the new policy. For example, if you create a service control
* policy (SCP), this string must be JSON text that specifies the permissions that admins in attached accounts
* can delegate to their users, groups, and roles. For more information about the SCP syntax, see Service Control
* Policy Syntax in the AWS Organizations User Guide.
*
*/
private String content;
/**
*
* An optional description to assign to the policy.
*
*/
private String description;
/**
*
* The friendly name to assign to 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;
/**
*
* The type of policy to create.
*
*
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
*
*/
private String type;
/**
*
* The policy content to add to the new policy. For example, if you create a service control
* policy (SCP), this string must be JSON text that specifies the permissions that admins in attached accounts
* can delegate to their users, groups, and roles. For more information about the SCP syntax, see Service Control
* Policy Syntax in the AWS Organizations User Guide.
*
*
* @param content
* The policy content to add to the new policy. For example, if you create a service
* control policy (SCP), this string must be JSON text that specifies the permissions that admins in
* attached accounts can delegate to their users, groups, and roles. For more information about the SCP
* syntax, see Service
* Control Policy Syntax in the AWS Organizations User Guide.
*/
public void setContent(String content) {
this.content = content;
}
/**
*
* The policy content to add to the new policy. For example, if you create a service control
* policy (SCP), this string must be JSON text that specifies the permissions that admins in attached accounts
* can delegate to their users, groups, and roles. For more information about the SCP syntax, see Service Control
* Policy Syntax in the AWS Organizations User Guide.
*
*
* @return The policy content to add to the new policy. For example, if you create a service
* control policy (SCP), this string must be JSON text that specifies the permissions that admins in
* attached accounts can delegate to their users, groups, and roles. For more information about the SCP
* syntax, see Service
* Control Policy Syntax in the AWS Organizations User Guide.
*/
public String getContent() {
return this.content;
}
/**
*
* The policy content to add to the new policy. For example, if you create a service control
* policy (SCP), this string must be JSON text that specifies the permissions that admins in attached accounts
* can delegate to their users, groups, and roles. For more information about the SCP syntax, see Service Control
* Policy Syntax in the AWS Organizations User Guide.
*
*
* @param content
* The policy content to add to the new policy. For example, if you create a service
* control policy (SCP), this string must be JSON text that specifies the permissions that admins in
* attached accounts can delegate to their users, groups, and roles. For more information about the SCP
* syntax, see Service
* Control Policy Syntax in the AWS Organizations User Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePolicyRequest withContent(String content) {
setContent(content);
return this;
}
/**
*
* An optional description to assign to the policy.
*
*
* @param description
* An optional description to assign to the policy.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* An optional description to assign to the policy.
*
*
* @return An optional description to assign to the policy.
*/
public String getDescription() {
return this.description;
}
/**
*
* An optional description to assign to the policy.
*
*
* @param description
* An optional description to assign to the policy.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreatePolicyRequest withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The friendly name to assign to 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
* The friendly name to assign to 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;
}
/**
*
* The friendly name to assign to 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 The friendly name to assign to 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;
}
/**
*
* The friendly name to assign to 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
* The friendly name to assign to 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 CreatePolicyRequest withName(String name) {
setName(name);
return this;
}
/**
*
* The type of policy to create.
*
*
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
*
*
* @param type
* The type of policy to create.
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
* @see PolicyType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of policy to create.
*
*
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
*
*
* @return The type of policy to create.
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
* @see PolicyType
*/
public String getType() {
return this.type;
}
/**
*
* The type of policy to create.
*
*
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
*
*
* @param type
* The type of policy to create.
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see PolicyType
*/
public CreatePolicyRequest withType(String type) {
setType(type);
return this;
}
/**
*
* The type of policy to create.
*
*
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
*
*
* @param type
* The type of policy to create.
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
* @see PolicyType
*/
public void setType(PolicyType type) {
withType(type);
}
/**
*
* The type of policy to create.
*
*
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
*
*
* @param type
* The type of policy to create.
*
* In the current release, the only type of policy that you can create is a service control policy (SCP).
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see PolicyType
*/
public CreatePolicyRequest withType(PolicyType type) {
this.type = type.toString();
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getContent() != null)
sb.append("Content: ").append(getContent()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).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 CreatePolicyRequest == false)
return false;
CreatePolicyRequest other = (CreatePolicyRequest) obj;
if (other.getContent() == null ^ this.getContent() == null)
return false;
if (other.getContent() != null && other.getContent().equals(this.getContent()) == 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.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == 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 + ((getContent() == null) ? 0 : getContent().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
return hashCode;
}
@Override
public CreatePolicyRequest clone() {
return (CreatePolicyRequest) super.clone();
}
}