com.amazonaws.services.appflow.model.ConnectorEntityField Maven / Gradle / Ivy
Show all versions of aws-java-sdk-appflow Show documentation
/*
* 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.appflow.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Describes the data model of a connector field. For example, for an account entity, the fields would be
* account name, account ID, and so on.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ConnectorEntityField implements Serializable, Cloneable, StructuredPojo {
/**
*
* The unique identifier of the connector field.
*
*/
private String identifier;
/**
*
* The parent identifier of the connector field.
*
*/
private String parentIdentifier;
/**
*
* The label applied to a connector entity field.
*
*/
private String label;
/**
*
* Booelan value that indicates whether this field can be used as a primary key.
*
*/
private Boolean isPrimaryKey;
/**
*
* Default value that can be assigned to this field.
*
*/
private String defaultValue;
/**
*
* Booelan value that indicates whether this field is deprecated or not.
*
*/
private Boolean isDeprecated;
/**
*
* Contains details regarding the supported FieldType
, including the corresponding
* filterOperators
and supportedValues
.
*
*/
private SupportedFieldTypeDetails supportedFieldTypeDetails;
/**
*
* A description of the connector entity field.
*
*/
private String description;
/**
*
* The properties that can be applied to a field when the connector is being used as a source.
*
*/
private SourceFieldProperties sourceProperties;
/**
*
* The properties applied to a field when the connector is being used as a destination.
*
*/
private DestinationFieldProperties destinationProperties;
/**
*
* A map that has specific properties related to the ConnectorEntityField.
*
*/
private java.util.Map customProperties;
/**
*
* The unique identifier of the connector field.
*
*
* @param identifier
* The unique identifier of the connector field.
*/
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
/**
*
* The unique identifier of the connector field.
*
*
* @return The unique identifier of the connector field.
*/
public String getIdentifier() {
return this.identifier;
}
/**
*
* The unique identifier of the connector field.
*
*
* @param identifier
* The unique identifier of the connector field.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withIdentifier(String identifier) {
setIdentifier(identifier);
return this;
}
/**
*
* The parent identifier of the connector field.
*
*
* @param parentIdentifier
* The parent identifier of the connector field.
*/
public void setParentIdentifier(String parentIdentifier) {
this.parentIdentifier = parentIdentifier;
}
/**
*
* The parent identifier of the connector field.
*
*
* @return The parent identifier of the connector field.
*/
public String getParentIdentifier() {
return this.parentIdentifier;
}
/**
*
* The parent identifier of the connector field.
*
*
* @param parentIdentifier
* The parent identifier of the connector field.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withParentIdentifier(String parentIdentifier) {
setParentIdentifier(parentIdentifier);
return this;
}
/**
*
* The label applied to a connector entity field.
*
*
* @param label
* The label applied to a connector entity field.
*/
public void setLabel(String label) {
this.label = label;
}
/**
*
* The label applied to a connector entity field.
*
*
* @return The label applied to a connector entity field.
*/
public String getLabel() {
return this.label;
}
/**
*
* The label applied to a connector entity field.
*
*
* @param label
* The label applied to a connector entity field.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withLabel(String label) {
setLabel(label);
return this;
}
/**
*
* Booelan value that indicates whether this field can be used as a primary key.
*
*
* @param isPrimaryKey
* Booelan value that indicates whether this field can be used as a primary key.
*/
public void setIsPrimaryKey(Boolean isPrimaryKey) {
this.isPrimaryKey = isPrimaryKey;
}
/**
*
* Booelan value that indicates whether this field can be used as a primary key.
*
*
* @return Booelan value that indicates whether this field can be used as a primary key.
*/
public Boolean getIsPrimaryKey() {
return this.isPrimaryKey;
}
/**
*
* Booelan value that indicates whether this field can be used as a primary key.
*
*
* @param isPrimaryKey
* Booelan value that indicates whether this field can be used as a primary key.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withIsPrimaryKey(Boolean isPrimaryKey) {
setIsPrimaryKey(isPrimaryKey);
return this;
}
/**
*
* Booelan value that indicates whether this field can be used as a primary key.
*
*
* @return Booelan value that indicates whether this field can be used as a primary key.
*/
public Boolean isPrimaryKey() {
return this.isPrimaryKey;
}
/**
*
* Default value that can be assigned to this field.
*
*
* @param defaultValue
* Default value that can be assigned to this field.
*/
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
/**
*
* Default value that can be assigned to this field.
*
*
* @return Default value that can be assigned to this field.
*/
public String getDefaultValue() {
return this.defaultValue;
}
/**
*
* Default value that can be assigned to this field.
*
*
* @param defaultValue
* Default value that can be assigned to this field.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withDefaultValue(String defaultValue) {
setDefaultValue(defaultValue);
return this;
}
/**
*
* Booelan value that indicates whether this field is deprecated or not.
*
*
* @param isDeprecated
* Booelan value that indicates whether this field is deprecated or not.
*/
public void setIsDeprecated(Boolean isDeprecated) {
this.isDeprecated = isDeprecated;
}
/**
*
* Booelan value that indicates whether this field is deprecated or not.
*
*
* @return Booelan value that indicates whether this field is deprecated or not.
*/
public Boolean getIsDeprecated() {
return this.isDeprecated;
}
/**
*
* Booelan value that indicates whether this field is deprecated or not.
*
*
* @param isDeprecated
* Booelan value that indicates whether this field is deprecated or not.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withIsDeprecated(Boolean isDeprecated) {
setIsDeprecated(isDeprecated);
return this;
}
/**
*
* Booelan value that indicates whether this field is deprecated or not.
*
*
* @return Booelan value that indicates whether this field is deprecated or not.
*/
public Boolean isDeprecated() {
return this.isDeprecated;
}
/**
*
* Contains details regarding the supported FieldType
, including the corresponding
* filterOperators
and supportedValues
.
*
*
* @param supportedFieldTypeDetails
* Contains details regarding the supported FieldType
, including the corresponding
* filterOperators
and supportedValues
.
*/
public void setSupportedFieldTypeDetails(SupportedFieldTypeDetails supportedFieldTypeDetails) {
this.supportedFieldTypeDetails = supportedFieldTypeDetails;
}
/**
*
* Contains details regarding the supported FieldType
, including the corresponding
* filterOperators
and supportedValues
.
*
*
* @return Contains details regarding the supported FieldType
, including the corresponding
* filterOperators
and supportedValues
.
*/
public SupportedFieldTypeDetails getSupportedFieldTypeDetails() {
return this.supportedFieldTypeDetails;
}
/**
*
* Contains details regarding the supported FieldType
, including the corresponding
* filterOperators
and supportedValues
.
*
*
* @param supportedFieldTypeDetails
* Contains details regarding the supported FieldType
, including the corresponding
* filterOperators
and supportedValues
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withSupportedFieldTypeDetails(SupportedFieldTypeDetails supportedFieldTypeDetails) {
setSupportedFieldTypeDetails(supportedFieldTypeDetails);
return this;
}
/**
*
* A description of the connector entity field.
*
*
* @param description
* A description of the connector entity field.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* A description of the connector entity field.
*
*
* @return A description of the connector entity field.
*/
public String getDescription() {
return this.description;
}
/**
*
* A description of the connector entity field.
*
*
* @param description
* A description of the connector entity field.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The properties that can be applied to a field when the connector is being used as a source.
*
*
* @param sourceProperties
* The properties that can be applied to a field when the connector is being used as a source.
*/
public void setSourceProperties(SourceFieldProperties sourceProperties) {
this.sourceProperties = sourceProperties;
}
/**
*
* The properties that can be applied to a field when the connector is being used as a source.
*
*
* @return The properties that can be applied to a field when the connector is being used as a source.
*/
public SourceFieldProperties getSourceProperties() {
return this.sourceProperties;
}
/**
*
* The properties that can be applied to a field when the connector is being used as a source.
*
*
* @param sourceProperties
* The properties that can be applied to a field when the connector is being used as a source.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withSourceProperties(SourceFieldProperties sourceProperties) {
setSourceProperties(sourceProperties);
return this;
}
/**
*
* The properties applied to a field when the connector is being used as a destination.
*
*
* @param destinationProperties
* The properties applied to a field when the connector is being used as a destination.
*/
public void setDestinationProperties(DestinationFieldProperties destinationProperties) {
this.destinationProperties = destinationProperties;
}
/**
*
* The properties applied to a field when the connector is being used as a destination.
*
*
* @return The properties applied to a field when the connector is being used as a destination.
*/
public DestinationFieldProperties getDestinationProperties() {
return this.destinationProperties;
}
/**
*
* The properties applied to a field when the connector is being used as a destination.
*
*
* @param destinationProperties
* The properties applied to a field when the connector is being used as a destination.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withDestinationProperties(DestinationFieldProperties destinationProperties) {
setDestinationProperties(destinationProperties);
return this;
}
/**
*
* A map that has specific properties related to the ConnectorEntityField.
*
*
* @return A map that has specific properties related to the ConnectorEntityField.
*/
public java.util.Map getCustomProperties() {
return customProperties;
}
/**
*
* A map that has specific properties related to the ConnectorEntityField.
*
*
* @param customProperties
* A map that has specific properties related to the ConnectorEntityField.
*/
public void setCustomProperties(java.util.Map customProperties) {
this.customProperties = customProperties;
}
/**
*
* A map that has specific properties related to the ConnectorEntityField.
*
*
* @param customProperties
* A map that has specific properties related to the ConnectorEntityField.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField withCustomProperties(java.util.Map customProperties) {
setCustomProperties(customProperties);
return this;
}
/**
* Add a single CustomProperties entry
*
* @see ConnectorEntityField#withCustomProperties
* @returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField addCustomPropertiesEntry(String key, String value) {
if (null == this.customProperties) {
this.customProperties = new java.util.HashMap();
}
if (this.customProperties.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.customProperties.put(key, value);
return this;
}
/**
* Removes all the entries added into CustomProperties.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConnectorEntityField clearCustomPropertiesEntries() {
this.customProperties = null;
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 (getIdentifier() != null)
sb.append("Identifier: ").append(getIdentifier()).append(",");
if (getParentIdentifier() != null)
sb.append("ParentIdentifier: ").append(getParentIdentifier()).append(",");
if (getLabel() != null)
sb.append("Label: ").append(getLabel()).append(",");
if (getIsPrimaryKey() != null)
sb.append("IsPrimaryKey: ").append(getIsPrimaryKey()).append(",");
if (getDefaultValue() != null)
sb.append("DefaultValue: ").append(getDefaultValue()).append(",");
if (getIsDeprecated() != null)
sb.append("IsDeprecated: ").append(getIsDeprecated()).append(",");
if (getSupportedFieldTypeDetails() != null)
sb.append("SupportedFieldTypeDetails: ").append(getSupportedFieldTypeDetails()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getSourceProperties() != null)
sb.append("SourceProperties: ").append(getSourceProperties()).append(",");
if (getDestinationProperties() != null)
sb.append("DestinationProperties: ").append(getDestinationProperties()).append(",");
if (getCustomProperties() != null)
sb.append("CustomProperties: ").append(getCustomProperties());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ConnectorEntityField == false)
return false;
ConnectorEntityField other = (ConnectorEntityField) obj;
if (other.getIdentifier() == null ^ this.getIdentifier() == null)
return false;
if (other.getIdentifier() != null && other.getIdentifier().equals(this.getIdentifier()) == false)
return false;
if (other.getParentIdentifier() == null ^ this.getParentIdentifier() == null)
return false;
if (other.getParentIdentifier() != null && other.getParentIdentifier().equals(this.getParentIdentifier()) == false)
return false;
if (other.getLabel() == null ^ this.getLabel() == null)
return false;
if (other.getLabel() != null && other.getLabel().equals(this.getLabel()) == false)
return false;
if (other.getIsPrimaryKey() == null ^ this.getIsPrimaryKey() == null)
return false;
if (other.getIsPrimaryKey() != null && other.getIsPrimaryKey().equals(this.getIsPrimaryKey()) == false)
return false;
if (other.getDefaultValue() == null ^ this.getDefaultValue() == null)
return false;
if (other.getDefaultValue() != null && other.getDefaultValue().equals(this.getDefaultValue()) == false)
return false;
if (other.getIsDeprecated() == null ^ this.getIsDeprecated() == null)
return false;
if (other.getIsDeprecated() != null && other.getIsDeprecated().equals(this.getIsDeprecated()) == false)
return false;
if (other.getSupportedFieldTypeDetails() == null ^ this.getSupportedFieldTypeDetails() == null)
return false;
if (other.getSupportedFieldTypeDetails() != null && other.getSupportedFieldTypeDetails().equals(this.getSupportedFieldTypeDetails()) == 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.getSourceProperties() == null ^ this.getSourceProperties() == null)
return false;
if (other.getSourceProperties() != null && other.getSourceProperties().equals(this.getSourceProperties()) == false)
return false;
if (other.getDestinationProperties() == null ^ this.getDestinationProperties() == null)
return false;
if (other.getDestinationProperties() != null && other.getDestinationProperties().equals(this.getDestinationProperties()) == false)
return false;
if (other.getCustomProperties() == null ^ this.getCustomProperties() == null)
return false;
if (other.getCustomProperties() != null && other.getCustomProperties().equals(this.getCustomProperties()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getIdentifier() == null) ? 0 : getIdentifier().hashCode());
hashCode = prime * hashCode + ((getParentIdentifier() == null) ? 0 : getParentIdentifier().hashCode());
hashCode = prime * hashCode + ((getLabel() == null) ? 0 : getLabel().hashCode());
hashCode = prime * hashCode + ((getIsPrimaryKey() == null) ? 0 : getIsPrimaryKey().hashCode());
hashCode = prime * hashCode + ((getDefaultValue() == null) ? 0 : getDefaultValue().hashCode());
hashCode = prime * hashCode + ((getIsDeprecated() == null) ? 0 : getIsDeprecated().hashCode());
hashCode = prime * hashCode + ((getSupportedFieldTypeDetails() == null) ? 0 : getSupportedFieldTypeDetails().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getSourceProperties() == null) ? 0 : getSourceProperties().hashCode());
hashCode = prime * hashCode + ((getDestinationProperties() == null) ? 0 : getDestinationProperties().hashCode());
hashCode = prime * hashCode + ((getCustomProperties() == null) ? 0 : getCustomProperties().hashCode());
return hashCode;
}
@Override
public ConnectorEntityField clone() {
try {
return (ConnectorEntityField) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.appflow.model.transform.ConnectorEntityFieldMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}