
software.amazon.awssdk.services.elasticloadbalancing.model.AccessLog Maven / Gradle / Ivy
/*
* 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.elasticloadbalancing.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.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Information about the AccessLog
attribute.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class AccessLog implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField ENABLED_FIELD = SdkField. builder(MarshallingType.BOOLEAN)
.memberName("Enabled").getter(getter(AccessLog::enabled)).setter(setter(Builder::enabled))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Enabled").build()).build();
private static final SdkField S3_BUCKET_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("S3BucketName").getter(getter(AccessLog::s3BucketName)).setter(setter(Builder::s3BucketName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("S3BucketName").build()).build();
private static final SdkField EMIT_INTERVAL_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("EmitInterval").getter(getter(AccessLog::emitInterval)).setter(setter(Builder::emitInterval))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EmitInterval").build()).build();
private static final SdkField S3_BUCKET_PREFIX_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("S3BucketPrefix").getter(getter(AccessLog::s3BucketPrefix)).setter(setter(Builder::s3BucketPrefix))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("S3BucketPrefix").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ENABLED_FIELD,
S3_BUCKET_NAME_FIELD, EMIT_INTERVAL_FIELD, S3_BUCKET_PREFIX_FIELD));
private static final long serialVersionUID = 1L;
private final Boolean enabled;
private final String s3BucketName;
private final Integer emitInterval;
private final String s3BucketPrefix;
private AccessLog(BuilderImpl builder) {
this.enabled = builder.enabled;
this.s3BucketName = builder.s3BucketName;
this.emitInterval = builder.emitInterval;
this.s3BucketPrefix = builder.s3BucketPrefix;
}
/**
*
* Specifies whether access logs are enabled for the load balancer.
*
*
* @return Specifies whether access logs are enabled for the load balancer.
*/
public final Boolean enabled() {
return enabled;
}
/**
*
* The name of the Amazon S3 bucket where the access logs are stored.
*
*
* @return The name of the Amazon S3 bucket where the access logs are stored.
*/
public final String s3BucketName() {
return s3BucketName;
}
/**
*
* The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.
*
*
* Default: 60 minutes
*
*
* @return The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60
* minutes.
*
* Default: 60 minutes
*/
public final Integer emitInterval() {
return emitInterval;
}
/**
*
* The logical hierarchy you created for your Amazon S3 bucket, for example my-bucket-prefix/prod
. If
* the prefix is not provided, the log is placed at the root level of the bucket.
*
*
* @return The logical hierarchy you created for your Amazon S3 bucket, for example
* my-bucket-prefix/prod
. If the prefix is not provided, the log is placed at the root level of
* the bucket.
*/
public final String s3BucketPrefix() {
return s3BucketPrefix;
}
@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(enabled());
hashCode = 31 * hashCode + Objects.hashCode(s3BucketName());
hashCode = 31 * hashCode + Objects.hashCode(emitInterval());
hashCode = 31 * hashCode + Objects.hashCode(s3BucketPrefix());
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 AccessLog)) {
return false;
}
AccessLog other = (AccessLog) obj;
return Objects.equals(enabled(), other.enabled()) && Objects.equals(s3BucketName(), other.s3BucketName())
&& Objects.equals(emitInterval(), other.emitInterval())
&& Objects.equals(s3BucketPrefix(), other.s3BucketPrefix());
}
/**
* 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("AccessLog").add("Enabled", enabled()).add("S3BucketName", s3BucketName())
.add("EmitInterval", emitInterval()).add("S3BucketPrefix", s3BucketPrefix()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Enabled":
return Optional.ofNullable(clazz.cast(enabled()));
case "S3BucketName":
return Optional.ofNullable(clazz.cast(s3BucketName()));
case "EmitInterval":
return Optional.ofNullable(clazz.cast(emitInterval()));
case "S3BucketPrefix":
return Optional.ofNullable(clazz.cast(s3BucketPrefix()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy