All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.securitylake.model.AwsLogSourceResource Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Security Lake module holds the client classes that are used for communicating with Security Lake.

The newest version!
/*
 * 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.securitylake.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;

/**
 * 

* Amazon Security Lake can collect logs and events from natively-supported Amazon Web Services services. *

*/ @Generated("software.amazon.awssdk:codegen") public final class AwsLogSourceResource implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField SOURCE_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("sourceName").getter(getter(AwsLogSourceResource::sourceNameAsString)) .setter(setter(Builder::sourceName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("sourceName").build()).build(); private static final SdkField SOURCE_VERSION_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("sourceVersion").getter(getter(AwsLogSourceResource::sourceVersion)) .setter(setter(Builder::sourceVersion)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("sourceVersion").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(SOURCE_NAME_FIELD, SOURCE_VERSION_FIELD)); private static final long serialVersionUID = 1L; private final String sourceName; private final String sourceVersion; private AwsLogSourceResource(BuilderImpl builder) { this.sourceName = builder.sourceName; this.sourceVersion = builder.sourceVersion; } /** *

* The name for a Amazon Web Services source. This must be a Regionally unique value. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #sourceName} will * return {@link AwsLogSourceName#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #sourceNameAsString}. *

* * @return The name for a Amazon Web Services source. This must be a Regionally unique value. * @see AwsLogSourceName */ public final AwsLogSourceName sourceName() { return AwsLogSourceName.fromValue(sourceName); } /** *

* The name for a Amazon Web Services source. This must be a Regionally unique value. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #sourceName} will * return {@link AwsLogSourceName#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #sourceNameAsString}. *

* * @return The name for a Amazon Web Services source. This must be a Regionally unique value. * @see AwsLogSourceName */ public final String sourceNameAsString() { return sourceName; } /** *

* The version for a Amazon Web Services source. This must be a Regionally unique value. *

* * @return The version for a Amazon Web Services source. This must be a Regionally unique value. */ public final String sourceVersion() { return sourceVersion; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(sourceNameAsString()); hashCode = 31 * hashCode + Objects.hashCode(sourceVersion()); 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 AwsLogSourceResource)) { return false; } AwsLogSourceResource other = (AwsLogSourceResource) obj; return Objects.equals(sourceNameAsString(), other.sourceNameAsString()) && Objects.equals(sourceVersion(), other.sourceVersion()); } /** * 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("AwsLogSourceResource").add("SourceName", sourceNameAsString()) .add("SourceVersion", sourceVersion()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "sourceName": return Optional.ofNullable(clazz.cast(sourceNameAsString())); case "sourceVersion": return Optional.ofNullable(clazz.cast(sourceVersion())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((AwsLogSourceResource) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The name for a Amazon Web Services source. This must be a Regionally unique value. *

* * @param sourceName * The name for a Amazon Web Services source. This must be a Regionally unique value. * @see AwsLogSourceName * @return Returns a reference to this object so that method calls can be chained together. * @see AwsLogSourceName */ Builder sourceName(String sourceName); /** *

* The name for a Amazon Web Services source. This must be a Regionally unique value. *

* * @param sourceName * The name for a Amazon Web Services source. This must be a Regionally unique value. * @see AwsLogSourceName * @return Returns a reference to this object so that method calls can be chained together. * @see AwsLogSourceName */ Builder sourceName(AwsLogSourceName sourceName); /** *

* The version for a Amazon Web Services source. This must be a Regionally unique value. *

* * @param sourceVersion * The version for a Amazon Web Services source. This must be a Regionally unique value. * @return Returns a reference to this object so that method calls can be chained together. */ Builder sourceVersion(String sourceVersion); } static final class BuilderImpl implements Builder { private String sourceName; private String sourceVersion; private BuilderImpl() { } private BuilderImpl(AwsLogSourceResource model) { sourceName(model.sourceName); sourceVersion(model.sourceVersion); } public final String getSourceName() { return sourceName; } public final void setSourceName(String sourceName) { this.sourceName = sourceName; } @Override public final Builder sourceName(String sourceName) { this.sourceName = sourceName; return this; } @Override public final Builder sourceName(AwsLogSourceName sourceName) { this.sourceName(sourceName == null ? null : sourceName.toString()); return this; } public final String getSourceVersion() { return sourceVersion; } public final void setSourceVersion(String sourceVersion) { this.sourceVersion = sourceVersion; } @Override public final Builder sourceVersion(String sourceVersion) { this.sourceVersion = sourceVersion; return this; } @Override public AwsLogSourceResource build() { return new AwsLogSourceResource(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy