software.amazon.awssdk.services.guardduty.model.UpdatePublishingDestinationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guardduty Show documentation
Show all versions of guardduty Show documentation
The AWS Java SDK for Amazon GuardDuty module holds the client classes that are used for communicating
with Amazon GuardDuty Service
/*
* 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.guardduty.model;
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.awscore.AwsRequestOverrideConfiguration;
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;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class UpdatePublishingDestinationRequest extends GuardDutyRequest implements
ToCopyableBuilder {
private static final SdkField DETECTOR_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("DetectorId").getter(getter(UpdatePublishingDestinationRequest::detectorId))
.setter(setter(Builder::detectorId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("detectorId").build()).build();
private static final SdkField DESTINATION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("DestinationId").getter(getter(UpdatePublishingDestinationRequest::destinationId))
.setter(setter(Builder::destinationId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("destinationId").build()).build();
private static final SdkField DESTINATION_PROPERTIES_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("DestinationProperties")
.getter(getter(UpdatePublishingDestinationRequest::destinationProperties))
.setter(setter(Builder::destinationProperties)).constructor(DestinationProperties::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("destinationProperties").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DETECTOR_ID_FIELD,
DESTINATION_ID_FIELD, DESTINATION_PROPERTIES_FIELD));
private final String detectorId;
private final String destinationId;
private final DestinationProperties destinationProperties;
private UpdatePublishingDestinationRequest(BuilderImpl builder) {
super(builder);
this.detectorId = builder.detectorId;
this.destinationId = builder.destinationId;
this.destinationProperties = builder.destinationProperties;
}
/**
*
* The ID of the detector associated with the publishing destinations to update.
*
*
* @return The ID of the detector associated with the publishing destinations to update.
*/
public final String detectorId() {
return detectorId;
}
/**
*
* The ID of the publishing destination to update.
*
*
* @return The ID of the publishing destination to update.
*/
public final String destinationId() {
return destinationId;
}
/**
*
* A DestinationProperties
object that includes the DestinationArn
and
* KmsKeyArn
of the publishing destination.
*
*
* @return A DestinationProperties
object that includes the DestinationArn
and
* KmsKeyArn
of the publishing destination.
*/
public final DestinationProperties destinationProperties() {
return destinationProperties;
}
@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 + super.hashCode();
hashCode = 31 * hashCode + Objects.hashCode(detectorId());
hashCode = 31 * hashCode + Objects.hashCode(destinationId());
hashCode = 31 * hashCode + Objects.hashCode(destinationProperties());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return super.equals(obj) && equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof UpdatePublishingDestinationRequest)) {
return false;
}
UpdatePublishingDestinationRequest other = (UpdatePublishingDestinationRequest) obj;
return Objects.equals(detectorId(), other.detectorId()) && Objects.equals(destinationId(), other.destinationId())
&& Objects.equals(destinationProperties(), other.destinationProperties());
}
/**
* 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("UpdatePublishingDestinationRequest").add("DetectorId", detectorId())
.add("DestinationId", destinationId()).add("DestinationProperties", destinationProperties()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "DetectorId":
return Optional.ofNullable(clazz.cast(detectorId()));
case "DestinationId":
return Optional.ofNullable(clazz.cast(destinationId()));
case "DestinationProperties":
return Optional.ofNullable(clazz.cast(destinationProperties()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy