software.amazon.awssdk.services.redshift.model.DataShareAssociation Maven / Gradle / Ivy
Show all versions of redshift Show documentation
/*
* Copyright 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 software.amazon.awssdk.services.redshift.model;
import java.io.Serializable;
import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* The association of a datashare from a producer account with a data consumer.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class DataShareAssociation implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField CONSUMER_IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ConsumerIdentifier").getter(getter(DataShareAssociation::consumerIdentifier))
.setter(setter(Builder::consumerIdentifier))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ConsumerIdentifier").build())
.build();
private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Status")
.getter(getter(DataShareAssociation::statusAsString)).setter(setter(Builder::status))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Status").build()).build();
private static final SdkField CONSUMER_REGION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ConsumerRegion").getter(getter(DataShareAssociation::consumerRegion))
.setter(setter(Builder::consumerRegion))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ConsumerRegion").build()).build();
private static final SdkField CREATED_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("CreatedDate").getter(getter(DataShareAssociation::createdDate)).setter(setter(Builder::createdDate))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreatedDate").build()).build();
private static final SdkField STATUS_CHANGE_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("StatusChangeDate").getter(getter(DataShareAssociation::statusChangeDate))
.setter(setter(Builder::statusChangeDate))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StatusChangeDate").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CONSUMER_IDENTIFIER_FIELD,
STATUS_FIELD, CONSUMER_REGION_FIELD, CREATED_DATE_FIELD, STATUS_CHANGE_DATE_FIELD));
private static final long serialVersionUID = 1L;
private final String consumerIdentifier;
private final String status;
private final String consumerRegion;
private final Instant createdDate;
private final Instant statusChangeDate;
private DataShareAssociation(BuilderImpl builder) {
this.consumerIdentifier = builder.consumerIdentifier;
this.status = builder.status;
this.consumerRegion = builder.consumerRegion;
this.createdDate = builder.createdDate;
this.statusChangeDate = builder.statusChangeDate;
}
/**
*
* The name of the consumer accounts that have an association with a producer datashare.
*
*
* @return The name of the consumer accounts that have an association with a producer datashare.
*/
public final String consumerIdentifier() {
return consumerIdentifier;
}
/**
*
* The status of the datashare that is associated.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link DataShareStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statusAsString}.
*
*
* @return The status of the datashare that is associated.
* @see DataShareStatus
*/
public final DataShareStatus status() {
return DataShareStatus.fromValue(status);
}
/**
*
* The status of the datashare that is associated.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link DataShareStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #statusAsString}.
*
*
* @return The status of the datashare that is associated.
* @see DataShareStatus
*/
public final String statusAsString() {
return status;
}
/**
*
* The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare.
*
*
* @return The Amazon Web Services Region of the consumer accounts that have an association with a producer
* datashare.
*/
public final String consumerRegion() {
return consumerRegion;
}
/**
*
* The creation date of the datashare that is associated.
*
*
* @return The creation date of the datashare that is associated.
*/
public final Instant createdDate() {
return createdDate;
}
/**
*
* The status change data of the datashare that is associated.
*
*
* @return The status change data of the datashare that is associated.
*/
public final Instant statusChangeDate() {
return statusChangeDate;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(consumerIdentifier());
hashCode = 31 * hashCode + Objects.hashCode(statusAsString());
hashCode = 31 * hashCode + Objects.hashCode(consumerRegion());
hashCode = 31 * hashCode + Objects.hashCode(createdDate());
hashCode = 31 * hashCode + Objects.hashCode(statusChangeDate());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof DataShareAssociation)) {
return false;
}
DataShareAssociation other = (DataShareAssociation) obj;
return Objects.equals(consumerIdentifier(), other.consumerIdentifier())
&& Objects.equals(statusAsString(), other.statusAsString())
&& Objects.equals(consumerRegion(), other.consumerRegion()) && Objects.equals(createdDate(), other.createdDate())
&& Objects.equals(statusChangeDate(), other.statusChangeDate());
}
/**
* 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.
*/
@Override
public final String toString() {
return ToString.builder("DataShareAssociation").add("ConsumerIdentifier", consumerIdentifier())
.add("Status", statusAsString()).add("ConsumerRegion", consumerRegion()).add("CreatedDate", createdDate())
.add("StatusChangeDate", statusChangeDate()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "ConsumerIdentifier":
return Optional.ofNullable(clazz.cast(consumerIdentifier()));
case "Status":
return Optional.ofNullable(clazz.cast(statusAsString()));
case "ConsumerRegion":
return Optional.ofNullable(clazz.cast(consumerRegion()));
case "CreatedDate":
return Optional.ofNullable(clazz.cast(createdDate()));
case "StatusChangeDate":
return Optional.ofNullable(clazz.cast(statusChangeDate()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function