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

software.amazon.awssdk.services.inspector.model.Subscription Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Inspector Service module holds the client classes that are used for communicating with Amazon Inspector Service

There is a newer version: 2.29.15
Show 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.inspector.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
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.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
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.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* This data type is used as a response element in the ListEventSubscriptions action. *

*/ @Generated("software.amazon.awssdk:codegen") public final class Subscription implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField RESOURCE_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("resourceArn").getter(getter(Subscription::resourceArn)).setter(setter(Builder::resourceArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("resourceArn").build()).build(); private static final SdkField TOPIC_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("topicArn").getter(getter(Subscription::topicArn)).setter(setter(Builder::topicArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("topicArn").build()).build(); private static final SdkField> EVENT_SUBSCRIPTIONS_FIELD = SdkField .> builder(MarshallingType.LIST) .memberName("eventSubscriptions") .getter(getter(Subscription::eventSubscriptions)) .setter(setter(Builder::eventSubscriptions)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("eventSubscriptions").build(), ListTrait .builder() .memberLocationName(null) .memberFieldInfo( SdkField. builder(MarshallingType.SDK_POJO) .constructor(EventSubscription::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) .locationName("member").build()).build()).build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(RESOURCE_ARN_FIELD, TOPIC_ARN_FIELD, EVENT_SUBSCRIPTIONS_FIELD)); private static final long serialVersionUID = 1L; private final String resourceArn; private final String topicArn; private final List eventSubscriptions; private Subscription(BuilderImpl builder) { this.resourceArn = builder.resourceArn; this.topicArn = builder.topicArn; this.eventSubscriptions = builder.eventSubscriptions; } /** *

* The ARN of the assessment template that is used during the event for which the SNS notification is sent. *

* * @return The ARN of the assessment template that is used during the event for which the SNS notification is sent. */ public final String resourceArn() { return resourceArn; } /** *

* The ARN of the Amazon Simple Notification Service (SNS) topic to which the SNS notifications are sent. *

* * @return The ARN of the Amazon Simple Notification Service (SNS) topic to which the SNS notifications are sent. */ public final String topicArn() { return topicArn; } /** * For responses, this returns true if the service returned a value for the EventSubscriptions property. This DOES * NOT check that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). * This is useful because the SDK will never return a null collection or map, but you may need to differentiate * between the service returning nothing (or null) and the service returning an empty collection or map. For * requests, this returns true if a value for the property was specified in the request builder, and false if a * value was not specified. */ public final boolean hasEventSubscriptions() { return eventSubscriptions != null && !(eventSubscriptions instanceof SdkAutoConstructList); } /** *

* The list of existing event subscriptions. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasEventSubscriptions} method. *

* * @return The list of existing event subscriptions. */ public final List eventSubscriptions() { return eventSubscriptions; } @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(resourceArn()); hashCode = 31 * hashCode + Objects.hashCode(topicArn()); hashCode = 31 * hashCode + Objects.hashCode(hasEventSubscriptions() ? eventSubscriptions() : null); 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 Subscription)) { return false; } Subscription other = (Subscription) obj; return Objects.equals(resourceArn(), other.resourceArn()) && Objects.equals(topicArn(), other.topicArn()) && hasEventSubscriptions() == other.hasEventSubscriptions() && Objects.equals(eventSubscriptions(), other.eventSubscriptions()); } /** * 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("Subscription").add("ResourceArn", resourceArn()).add("TopicArn", topicArn()) .add("EventSubscriptions", hasEventSubscriptions() ? eventSubscriptions() : null).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "resourceArn": return Optional.ofNullable(clazz.cast(resourceArn())); case "topicArn": return Optional.ofNullable(clazz.cast(topicArn())); case "eventSubscriptions": return Optional.ofNullable(clazz.cast(eventSubscriptions())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((Subscription) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The ARN of the assessment template that is used during the event for which the SNS notification is sent. *

* * @param resourceArn * The ARN of the assessment template that is used during the event for which the SNS notification is * sent. * @return Returns a reference to this object so that method calls can be chained together. */ Builder resourceArn(String resourceArn); /** *

* The ARN of the Amazon Simple Notification Service (SNS) topic to which the SNS notifications are sent. *

* * @param topicArn * The ARN of the Amazon Simple Notification Service (SNS) topic to which the SNS notifications are sent. * @return Returns a reference to this object so that method calls can be chained together. */ Builder topicArn(String topicArn); /** *

* The list of existing event subscriptions. *

* * @param eventSubscriptions * The list of existing event subscriptions. * @return Returns a reference to this object so that method calls can be chained together. */ Builder eventSubscriptions(Collection eventSubscriptions); /** *

* The list of existing event subscriptions. *

* * @param eventSubscriptions * The list of existing event subscriptions. * @return Returns a reference to this object so that method calls can be chained together. */ Builder eventSubscriptions(EventSubscription... eventSubscriptions); /** *

* The list of existing event subscriptions. *

* This is a convenience method that creates an instance of the * {@link software.amazon.awssdk.services.inspector.model.EventSubscription.Builder} avoiding the need to create * one manually via {@link software.amazon.awssdk.services.inspector.model.EventSubscription#builder()}. * *

* When the {@link Consumer} completes, * {@link software.amazon.awssdk.services.inspector.model.EventSubscription.Builder#build()} is called * immediately and its result is passed to {@link #eventSubscriptions(List)}. * * @param eventSubscriptions * a consumer that will call methods on * {@link software.amazon.awssdk.services.inspector.model.EventSubscription.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #eventSubscriptions(java.util.Collection) */ Builder eventSubscriptions(Consumer... eventSubscriptions); } static final class BuilderImpl implements Builder { private String resourceArn; private String topicArn; private List eventSubscriptions = DefaultSdkAutoConstructList.getInstance(); private BuilderImpl() { } private BuilderImpl(Subscription model) { resourceArn(model.resourceArn); topicArn(model.topicArn); eventSubscriptions(model.eventSubscriptions); } public final String getResourceArn() { return resourceArn; } public final void setResourceArn(String resourceArn) { this.resourceArn = resourceArn; } @Override public final Builder resourceArn(String resourceArn) { this.resourceArn = resourceArn; return this; } public final String getTopicArn() { return topicArn; } public final void setTopicArn(String topicArn) { this.topicArn = topicArn; } @Override public final Builder topicArn(String topicArn) { this.topicArn = topicArn; return this; } public final List getEventSubscriptions() { List result = EventSubscriptionListCopier.copyToBuilder(this.eventSubscriptions); if (result instanceof SdkAutoConstructList) { return null; } return result; } public final void setEventSubscriptions(Collection eventSubscriptions) { this.eventSubscriptions = EventSubscriptionListCopier.copyFromBuilder(eventSubscriptions); } @Override public final Builder eventSubscriptions(Collection eventSubscriptions) { this.eventSubscriptions = EventSubscriptionListCopier.copy(eventSubscriptions); return this; } @Override @SafeVarargs public final Builder eventSubscriptions(EventSubscription... eventSubscriptions) { eventSubscriptions(Arrays.asList(eventSubscriptions)); return this; } @Override @SafeVarargs public final Builder eventSubscriptions(Consumer... eventSubscriptions) { eventSubscriptions(Stream.of(eventSubscriptions).map(c -> EventSubscription.builder().applyMutation(c).build()) .collect(Collectors.toList())); return this; } @Override public Subscription build() { return new Subscription(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy