software.amazon.awssdk.services.s3.model.AnalyticsS3BucketDestination Maven / Gradle / Ivy
Show all versions of s3 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.s3.model;
import java.io.Serializable;
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.core.traits.RequiredTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Contains information about where to publish the analytics results.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class AnalyticsS3BucketDestination implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField FORMAT_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("Format")
.getter(getter(AnalyticsS3BucketDestination::formatAsString))
.setter(setter(Builder::format))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Format")
.unmarshallLocationName("Format").build(), RequiredTrait.create()).build();
private static final SdkField BUCKET_ACCOUNT_ID_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("BucketAccountId")
.getter(getter(AnalyticsS3BucketDestination::bucketAccountId))
.setter(setter(Builder::bucketAccountId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BucketAccountId")
.unmarshallLocationName("BucketAccountId").build()).build();
private static final SdkField BUCKET_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("Bucket")
.getter(getter(AnalyticsS3BucketDestination::bucket))
.setter(setter(Builder::bucket))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Bucket")
.unmarshallLocationName("Bucket").build(), RequiredTrait.create()).build();
private static final SdkField PREFIX_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("Prefix")
.getter(getter(AnalyticsS3BucketDestination::prefix))
.setter(setter(Builder::prefix))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Prefix")
.unmarshallLocationName("Prefix").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(FORMAT_FIELD,
BUCKET_ACCOUNT_ID_FIELD, BUCKET_FIELD, PREFIX_FIELD));
private static final long serialVersionUID = 1L;
private final String format;
private final String bucketAccountId;
private final String bucket;
private final String prefix;
private AnalyticsS3BucketDestination(BuilderImpl builder) {
this.format = builder.format;
this.bucketAccountId = builder.bucketAccountId;
this.bucket = builder.bucket;
this.prefix = builder.prefix;
}
/**
*
* Specifies the file format used when exporting data to Amazon S3.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #format} will
* return {@link AnalyticsS3ExportFileFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is
* available from {@link #formatAsString}.
*
*
* @return Specifies the file format used when exporting data to Amazon S3.
* @see AnalyticsS3ExportFileFormat
*/
public final AnalyticsS3ExportFileFormat format() {
return AnalyticsS3ExportFileFormat.fromValue(format);
}
/**
*
* Specifies the file format used when exporting data to Amazon S3.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #format} will
* return {@link AnalyticsS3ExportFileFormat#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is
* available from {@link #formatAsString}.
*
*
* @return Specifies the file format used when exporting data to Amazon S3.
* @see AnalyticsS3ExportFileFormat
*/
public final String formatAsString() {
return format;
}
/**
*
* The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated
* before exporting data.
*
*
*
* Although this value is optional, we strongly recommend that you set it to help prevent problems if the
* destination bucket ownership changes.
*
*
*
* @return The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not
* validated before exporting data.
*
* Although this value is optional, we strongly recommend that you set it to help prevent problems if the
* destination bucket ownership changes.
*
*/
public final String bucketAccountId() {
return bucketAccountId;
}
/**
*
* The Amazon Resource Name (ARN) of the bucket to which data is exported.
*
*
* @return The Amazon Resource Name (ARN) of the bucket to which data is exported.
*/
public final String bucket() {
return bucket;
}
/**
*
* The prefix to use when exporting data. The prefix is prepended to all results.
*
*
* @return The prefix to use when exporting data. The prefix is prepended to all results.
*/
public final String prefix() {
return prefix;
}
@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(formatAsString());
hashCode = 31 * hashCode + Objects.hashCode(bucketAccountId());
hashCode = 31 * hashCode + Objects.hashCode(bucket());
hashCode = 31 * hashCode + Objects.hashCode(prefix());
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 AnalyticsS3BucketDestination)) {
return false;
}
AnalyticsS3BucketDestination other = (AnalyticsS3BucketDestination) obj;
return Objects.equals(formatAsString(), other.formatAsString())
&& Objects.equals(bucketAccountId(), other.bucketAccountId()) && Objects.equals(bucket(), other.bucket())
&& Objects.equals(prefix(), other.prefix());
}
/**
* 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("AnalyticsS3BucketDestination").add("Format", formatAsString())
.add("BucketAccountId", bucketAccountId()).add("Bucket", bucket()).add("Prefix", prefix()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Format":
return Optional.ofNullable(clazz.cast(formatAsString()));
case "BucketAccountId":
return Optional.ofNullable(clazz.cast(bucketAccountId()));
case "Bucket":
return Optional.ofNullable(clazz.cast(bucket()));
case "Prefix":
return Optional.ofNullable(clazz.cast(prefix()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function