
software.amazon.awssdk.services.ssm.model.LoggingInfo 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.ssm.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 an S3 bucket to write instance-level logs to.
*
*
*
* LoggingInfo
has been deprecated. To specify an S3 bucket to contain logs, instead use the
* OutputS3BucketName
and OutputS3KeyPrefix
options in the
* TaskInvocationParameters
structure. For information about how Systems Manager handles these options for
* the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters.
*
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class LoggingInfo implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField S3_BUCKET_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(LoggingInfo::s3BucketName)).setter(setter(Builder::s3BucketName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("S3BucketName").build()).build();
private static final SdkField S3_KEY_PREFIX_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(LoggingInfo::s3KeyPrefix)).setter(setter(Builder::s3KeyPrefix))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("S3KeyPrefix").build()).build();
private static final SdkField S3_REGION_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(LoggingInfo::s3Region)).setter(setter(Builder::s3Region))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("S3Region").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(S3_BUCKET_NAME_FIELD,
S3_KEY_PREFIX_FIELD, S3_REGION_FIELD));
private static final long serialVersionUID = 1L;
private final String s3BucketName;
private final String s3KeyPrefix;
private final String s3Region;
private LoggingInfo(BuilderImpl builder) {
this.s3BucketName = builder.s3BucketName;
this.s3KeyPrefix = builder.s3KeyPrefix;
this.s3Region = builder.s3Region;
}
/**
*
* The name of an S3 bucket where execution logs are stored .
*
*
* @return The name of an S3 bucket where execution logs are stored .
*/
public String s3BucketName() {
return s3BucketName;
}
/**
*
* (Optional) The S3 bucket subfolder.
*
*
* @return (Optional) The S3 bucket subfolder.
*/
public String s3KeyPrefix() {
return s3KeyPrefix;
}
/**
*
* The Region where the S3 bucket is located.
*
*
* @return The Region where the S3 bucket is located.
*/
public String s3Region() {
return s3Region;
}
@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 int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(s3BucketName());
hashCode = 31 * hashCode + Objects.hashCode(s3KeyPrefix());
hashCode = 31 * hashCode + Objects.hashCode(s3Region());
return hashCode;
}
@Override
public boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof LoggingInfo)) {
return false;
}
LoggingInfo other = (LoggingInfo) obj;
return Objects.equals(s3BucketName(), other.s3BucketName()) && Objects.equals(s3KeyPrefix(), other.s3KeyPrefix())
&& Objects.equals(s3Region(), other.s3Region());
}
/**
* 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 String toString() {
return ToString.builder("LoggingInfo").add("S3BucketName", s3BucketName()).add("S3KeyPrefix", s3KeyPrefix())
.add("S3Region", s3Region()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "S3BucketName":
return Optional.ofNullable(clazz.cast(s3BucketName()));
case "S3KeyPrefix":
return Optional.ofNullable(clazz.cast(s3KeyPrefix()));
case "S3Region":
return Optional.ofNullable(clazz.cast(s3Region()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy