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

software.amazon.awssdk.services.iotevents.model.IotEventsAction Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.28.4
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.iotevents.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.Consumer;
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;

/**
 * 

* Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered * the action. *

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

* The name of the AWS IoT Events input where the data is sent. *

* * @return The name of the AWS IoT Events input where the data is sent. */ public final String inputName() { return inputName; } /** *

* You can configure the action payload when you send a message to an AWS IoT Events input. *

* * @return You can configure the action payload when you send a message to an AWS IoT Events input. */ public final Payload payload() { return payload; } @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(inputName()); hashCode = 31 * hashCode + Objects.hashCode(payload()); 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 IotEventsAction)) { return false; } IotEventsAction other = (IotEventsAction) obj; return Objects.equals(inputName(), other.inputName()) && Objects.equals(payload(), other.payload()); } /** * 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("IotEventsAction").add("InputName", inputName()).add("Payload", payload()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "inputName": return Optional.ofNullable(clazz.cast(inputName())); case "payload": return Optional.ofNullable(clazz.cast(payload())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((IotEventsAction) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The name of the AWS IoT Events input where the data is sent. *

* * @param inputName * The name of the AWS IoT Events input where the data is sent. * @return Returns a reference to this object so that method calls can be chained together. */ Builder inputName(String inputName); /** *

* You can configure the action payload when you send a message to an AWS IoT Events input. *

* * @param payload * You can configure the action payload when you send a message to an AWS IoT Events input. * @return Returns a reference to this object so that method calls can be chained together. */ Builder payload(Payload payload); /** *

* You can configure the action payload when you send a message to an AWS IoT Events input. *

* This is a convenience method that creates an instance of the {@link Payload.Builder} avoiding the need to * create one manually via {@link Payload#builder()}. * *

* When the {@link Consumer} completes, {@link Payload.Builder#build()} is called immediately and its result is * passed to {@link #payload(Payload)}. * * @param payload * a consumer that will call methods on {@link Payload.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #payload(Payload) */ default Builder payload(Consumer payload) { return payload(Payload.builder().applyMutation(payload).build()); } } static final class BuilderImpl implements Builder { private String inputName; private Payload payload; private BuilderImpl() { } private BuilderImpl(IotEventsAction model) { inputName(model.inputName); payload(model.payload); } public final String getInputName() { return inputName; } public final void setInputName(String inputName) { this.inputName = inputName; } @Override public final Builder inputName(String inputName) { this.inputName = inputName; return this; } public final Payload.Builder getPayload() { return payload != null ? payload.toBuilder() : null; } public final void setPayload(Payload.BuilderImpl payload) { this.payload = payload != null ? payload.build() : null; } @Override public final Builder payload(Payload payload) { this.payload = payload; return this; } @Override public IotEventsAction build() { return new IotEventsAction(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy