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

com.amazonaws.services.datazone.model.CreateSubscriptionTargetResult Maven / Gradle / Ivy

Go to download

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

The 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.datazone.model;

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

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

    /**
     * 

* The asset types that can be included in the subscription target. *

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

* The authorised principals of the subscription target. *

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

* The timestamp of when the subscription target was created. *

*/ private java.util.Date createdAt; /** *

* The Amazon DataZone user who created the subscription target. *

*/ private String createdBy; /** *

* The ID of the Amazon DataZone domain in which the subscription target was created. *

*/ private String domainId; /** *

* The ID of the environment in which the subscription target was created. *

*/ private String environmentId; /** *

* The ID of the subscription target. *

*/ private String id; /** *

* The manage access role with which the subscription target was created. *

*/ private String manageAccessRole; /** *

* The name of the subscription target. *

*/ private String name; /** *

* ??? *

*/ private String projectId; /** *

* The provider of the subscription target. *

*/ private String provider; /** *

* The configuration of the subscription target. *

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

* The type of the subscription target. *

*/ private String type; /** *

* The timestamp of when the subscription target was updated. *

*/ private java.util.Date updatedAt; /** *

* The Amazon DataZone user who updated the subscription target. *

*/ private String updatedBy; /** *

* The asset types that can be included in the subscription target. *

* * @return The asset types that can be included in the subscription target. */ public java.util.List getApplicableAssetTypes() { return applicableAssetTypes; } /** *

* The asset types that can be included in the subscription target. *

* * @param applicableAssetTypes * The asset types that can be included in the subscription target. */ public void setApplicableAssetTypes(java.util.Collection applicableAssetTypes) { if (applicableAssetTypes == null) { this.applicableAssetTypes = null; return; } this.applicableAssetTypes = new java.util.ArrayList(applicableAssetTypes); } /** *

* The asset types that can be included in the subscription target. *

*

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

* * @param applicableAssetTypes * The asset types that can be included in the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withApplicableAssetTypes(String... applicableAssetTypes) { if (this.applicableAssetTypes == null) { setApplicableAssetTypes(new java.util.ArrayList(applicableAssetTypes.length)); } for (String ele : applicableAssetTypes) { this.applicableAssetTypes.add(ele); } return this; } /** *

* The asset types that can be included in the subscription target. *

* * @param applicableAssetTypes * The asset types that can be included in the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withApplicableAssetTypes(java.util.Collection applicableAssetTypes) { setApplicableAssetTypes(applicableAssetTypes); return this; } /** *

* The authorised principals of the subscription target. *

* * @return The authorised principals of the subscription target. */ public java.util.List getAuthorizedPrincipals() { return authorizedPrincipals; } /** *

* The authorised principals of the subscription target. *

* * @param authorizedPrincipals * The authorised principals of the subscription target. */ public void setAuthorizedPrincipals(java.util.Collection authorizedPrincipals) { if (authorizedPrincipals == null) { this.authorizedPrincipals = null; return; } this.authorizedPrincipals = new java.util.ArrayList(authorizedPrincipals); } /** *

* The authorised principals of the subscription target. *

*

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

* * @param authorizedPrincipals * The authorised principals of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withAuthorizedPrincipals(String... authorizedPrincipals) { if (this.authorizedPrincipals == null) { setAuthorizedPrincipals(new java.util.ArrayList(authorizedPrincipals.length)); } for (String ele : authorizedPrincipals) { this.authorizedPrincipals.add(ele); } return this; } /** *

* The authorised principals of the subscription target. *

* * @param authorizedPrincipals * The authorised principals of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withAuthorizedPrincipals(java.util.Collection authorizedPrincipals) { setAuthorizedPrincipals(authorizedPrincipals); return this; } /** *

* The timestamp of when the subscription target was created. *

* * @param createdAt * The timestamp of when the subscription target was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The timestamp of when the subscription target was created. *

* * @return The timestamp of when the subscription target was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The timestamp of when the subscription target was created. *

* * @param createdAt * The timestamp of when the subscription target was created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The Amazon DataZone user who created the subscription target. *

* * @param createdBy * The Amazon DataZone user who created the subscription target. */ public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } /** *

* The Amazon DataZone user who created the subscription target. *

* * @return The Amazon DataZone user who created the subscription target. */ public String getCreatedBy() { return this.createdBy; } /** *

* The Amazon DataZone user who created the subscription target. *

* * @param createdBy * The Amazon DataZone user who created the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withCreatedBy(String createdBy) { setCreatedBy(createdBy); return this; } /** *

* The ID of the Amazon DataZone domain in which the subscription target was created. *

* * @param domainId * The ID of the Amazon DataZone domain in which the subscription target was created. */ public void setDomainId(String domainId) { this.domainId = domainId; } /** *

* The ID of the Amazon DataZone domain in which the subscription target was created. *

* * @return The ID of the Amazon DataZone domain in which the subscription target was created. */ public String getDomainId() { return this.domainId; } /** *

* The ID of the Amazon DataZone domain in which the subscription target was created. *

* * @param domainId * The ID of the Amazon DataZone domain in which the subscription target was created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withDomainId(String domainId) { setDomainId(domainId); return this; } /** *

* The ID of the environment in which the subscription target was created. *

* * @param environmentId * The ID of the environment in which the subscription target was created. */ public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; } /** *

* The ID of the environment in which the subscription target was created. *

* * @return The ID of the environment in which the subscription target was created. */ public String getEnvironmentId() { return this.environmentId; } /** *

* The ID of the environment in which the subscription target was created. *

* * @param environmentId * The ID of the environment in which the subscription target was created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withEnvironmentId(String environmentId) { setEnvironmentId(environmentId); return this; } /** *

* The ID of the subscription target. *

* * @param id * The ID of the subscription target. */ public void setId(String id) { this.id = id; } /** *

* The ID of the subscription target. *

* * @return The ID of the subscription target. */ public String getId() { return this.id; } /** *

* The ID of the subscription target. *

* * @param id * The ID of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withId(String id) { setId(id); return this; } /** *

* The manage access role with which the subscription target was created. *

* * @param manageAccessRole * The manage access role with which the subscription target was created. */ public void setManageAccessRole(String manageAccessRole) { this.manageAccessRole = manageAccessRole; } /** *

* The manage access role with which the subscription target was created. *

* * @return The manage access role with which the subscription target was created. */ public String getManageAccessRole() { return this.manageAccessRole; } /** *

* The manage access role with which the subscription target was created. *

* * @param manageAccessRole * The manage access role with which the subscription target was created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withManageAccessRole(String manageAccessRole) { setManageAccessRole(manageAccessRole); return this; } /** *

* The name of the subscription target. *

* * @param name * The name of the subscription target. */ public void setName(String name) { this.name = name; } /** *

* The name of the subscription target. *

* * @return The name of the subscription target. */ public String getName() { return this.name; } /** *

* The name of the subscription target. *

* * @param name * The name of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withName(String name) { setName(name); return this; } /** *

* ??? *

* * @param projectId * ??? */ public void setProjectId(String projectId) { this.projectId = projectId; } /** *

* ??? *

* * @return ??? */ public String getProjectId() { return this.projectId; } /** *

* ??? *

* * @param projectId * ??? * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withProjectId(String projectId) { setProjectId(projectId); return this; } /** *

* The provider of the subscription target. *

* * @param provider * The provider of the subscription target. */ public void setProvider(String provider) { this.provider = provider; } /** *

* The provider of the subscription target. *

* * @return The provider of the subscription target. */ public String getProvider() { return this.provider; } /** *

* The provider of the subscription target. *

* * @param provider * The provider of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withProvider(String provider) { setProvider(provider); return this; } /** *

* The configuration of the subscription target. *

* * @return The configuration of the subscription target. */ public java.util.List getSubscriptionTargetConfig() { return subscriptionTargetConfig; } /** *

* The configuration of the subscription target. *

* * @param subscriptionTargetConfig * The configuration of the subscription target. */ public void setSubscriptionTargetConfig(java.util.Collection subscriptionTargetConfig) { if (subscriptionTargetConfig == null) { this.subscriptionTargetConfig = null; return; } this.subscriptionTargetConfig = new java.util.ArrayList(subscriptionTargetConfig); } /** *

* The configuration of the subscription target. *

*

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

* * @param subscriptionTargetConfig * The configuration of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withSubscriptionTargetConfig(SubscriptionTargetForm... subscriptionTargetConfig) { if (this.subscriptionTargetConfig == null) { setSubscriptionTargetConfig(new java.util.ArrayList(subscriptionTargetConfig.length)); } for (SubscriptionTargetForm ele : subscriptionTargetConfig) { this.subscriptionTargetConfig.add(ele); } return this; } /** *

* The configuration of the subscription target. *

* * @param subscriptionTargetConfig * The configuration of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withSubscriptionTargetConfig(java.util.Collection subscriptionTargetConfig) { setSubscriptionTargetConfig(subscriptionTargetConfig); return this; } /** *

* The type of the subscription target. *

* * @param type * The type of the subscription target. */ public void setType(String type) { this.type = type; } /** *

* The type of the subscription target. *

* * @return The type of the subscription target. */ public String getType() { return this.type; } /** *

* The type of the subscription target. *

* * @param type * The type of the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withType(String type) { setType(type); return this; } /** *

* The timestamp of when the subscription target was updated. *

* * @param updatedAt * The timestamp of when the subscription target was updated. */ public void setUpdatedAt(java.util.Date updatedAt) { this.updatedAt = updatedAt; } /** *

* The timestamp of when the subscription target was updated. *

* * @return The timestamp of when the subscription target was updated. */ public java.util.Date getUpdatedAt() { return this.updatedAt; } /** *

* The timestamp of when the subscription target was updated. *

* * @param updatedAt * The timestamp of when the subscription target was updated. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withUpdatedAt(java.util.Date updatedAt) { setUpdatedAt(updatedAt); return this; } /** *

* The Amazon DataZone user who updated the subscription target. *

* * @param updatedBy * The Amazon DataZone user who updated the subscription target. */ public void setUpdatedBy(String updatedBy) { this.updatedBy = updatedBy; } /** *

* The Amazon DataZone user who updated the subscription target. *

* * @return The Amazon DataZone user who updated the subscription target. */ public String getUpdatedBy() { return this.updatedBy; } /** *

* The Amazon DataZone user who updated the subscription target. *

* * @param updatedBy * The Amazon DataZone user who updated the subscription target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSubscriptionTargetResult withUpdatedBy(String updatedBy) { setUpdatedBy(updatedBy); 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 (getApplicableAssetTypes() != null) sb.append("ApplicableAssetTypes: ").append(getApplicableAssetTypes()).append(","); if (getAuthorizedPrincipals() != null) sb.append("AuthorizedPrincipals: ").append(getAuthorizedPrincipals()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getCreatedBy() != null) sb.append("CreatedBy: ").append(getCreatedBy()).append(","); if (getDomainId() != null) sb.append("DomainId: ").append(getDomainId()).append(","); if (getEnvironmentId() != null) sb.append("EnvironmentId: ").append(getEnvironmentId()).append(","); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getManageAccessRole() != null) sb.append("ManageAccessRole: ").append(getManageAccessRole()).append(","); if (getName() != null) sb.append("Name: ").append("***Sensitive Data Redacted***").append(","); if (getProjectId() != null) sb.append("ProjectId: ").append(getProjectId()).append(","); if (getProvider() != null) sb.append("Provider: ").append(getProvider()).append(","); if (getSubscriptionTargetConfig() != null) sb.append("SubscriptionTargetConfig: ").append(getSubscriptionTargetConfig()).append(","); if (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getUpdatedAt() != null) sb.append("UpdatedAt: ").append(getUpdatedAt()).append(","); if (getUpdatedBy() != null) sb.append("UpdatedBy: ").append(getUpdatedBy()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateSubscriptionTargetResult == false) return false; CreateSubscriptionTargetResult other = (CreateSubscriptionTargetResult) obj; if (other.getApplicableAssetTypes() == null ^ this.getApplicableAssetTypes() == null) return false; if (other.getApplicableAssetTypes() != null && other.getApplicableAssetTypes().equals(this.getApplicableAssetTypes()) == false) return false; if (other.getAuthorizedPrincipals() == null ^ this.getAuthorizedPrincipals() == null) return false; if (other.getAuthorizedPrincipals() != null && other.getAuthorizedPrincipals().equals(this.getAuthorizedPrincipals()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getCreatedBy() == null ^ this.getCreatedBy() == null) return false; if (other.getCreatedBy() != null && other.getCreatedBy().equals(this.getCreatedBy()) == false) return false; if (other.getDomainId() == null ^ this.getDomainId() == null) return false; if (other.getDomainId() != null && other.getDomainId().equals(this.getDomainId()) == false) return false; if (other.getEnvironmentId() == null ^ this.getEnvironmentId() == null) return false; if (other.getEnvironmentId() != null && other.getEnvironmentId().equals(this.getEnvironmentId()) == 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.getManageAccessRole() == null ^ this.getManageAccessRole() == null) return false; if (other.getManageAccessRole() != null && other.getManageAccessRole().equals(this.getManageAccessRole()) == 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.getProjectId() == null ^ this.getProjectId() == null) return false; if (other.getProjectId() != null && other.getProjectId().equals(this.getProjectId()) == false) return false; if (other.getProvider() == null ^ this.getProvider() == null) return false; if (other.getProvider() != null && other.getProvider().equals(this.getProvider()) == false) return false; if (other.getSubscriptionTargetConfig() == null ^ this.getSubscriptionTargetConfig() == null) return false; if (other.getSubscriptionTargetConfig() != null && other.getSubscriptionTargetConfig().equals(this.getSubscriptionTargetConfig()) == false) return false; if (other.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getUpdatedAt() == null ^ this.getUpdatedAt() == null) return false; if (other.getUpdatedAt() != null && other.getUpdatedAt().equals(this.getUpdatedAt()) == false) return false; if (other.getUpdatedBy() == null ^ this.getUpdatedBy() == null) return false; if (other.getUpdatedBy() != null && other.getUpdatedBy().equals(this.getUpdatedBy()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getApplicableAssetTypes() == null) ? 0 : getApplicableAssetTypes().hashCode()); hashCode = prime * hashCode + ((getAuthorizedPrincipals() == null) ? 0 : getAuthorizedPrincipals().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getCreatedBy() == null) ? 0 : getCreatedBy().hashCode()); hashCode = prime * hashCode + ((getDomainId() == null) ? 0 : getDomainId().hashCode()); hashCode = prime * hashCode + ((getEnvironmentId() == null) ? 0 : getEnvironmentId().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getManageAccessRole() == null) ? 0 : getManageAccessRole().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getProjectId() == null) ? 0 : getProjectId().hashCode()); hashCode = prime * hashCode + ((getProvider() == null) ? 0 : getProvider().hashCode()); hashCode = prime * hashCode + ((getSubscriptionTargetConfig() == null) ? 0 : getSubscriptionTargetConfig().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode()); hashCode = prime * hashCode + ((getUpdatedBy() == null) ? 0 : getUpdatedBy().hashCode()); return hashCode; } @Override public CreateSubscriptionTargetResult clone() { try { return (CreateSubscriptionTargetResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy