
software.amazon.awssdk.services.detective.model.StartInvestigationRequest 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.detective.model;
import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
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.core.traits.TimestampFormatTrait;
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 StartInvestigationRequest extends DetectiveRequest implements
ToCopyableBuilder {
private static final SdkField GRAPH_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("GraphArn").getter(getter(StartInvestigationRequest::graphArn)).setter(setter(Builder::graphArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("GraphArn").build()).build();
private static final SdkField ENTITY_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("EntityArn").getter(getter(StartInvestigationRequest::entityArn)).setter(setter(Builder::entityArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EntityArn").build()).build();
private static final SdkField SCOPE_START_TIME_FIELD = SdkField
. builder(MarshallingType.INSTANT)
.memberName("ScopeStartTime")
.getter(getter(StartInvestigationRequest::scopeStartTime))
.setter(setter(Builder::scopeStartTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ScopeStartTime").build(),
TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();
private static final SdkField SCOPE_END_TIME_FIELD = SdkField
. builder(MarshallingType.INSTANT)
.memberName("ScopeEndTime")
.getter(getter(StartInvestigationRequest::scopeEndTime))
.setter(setter(Builder::scopeEndTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ScopeEndTime").build(),
TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(GRAPH_ARN_FIELD,
ENTITY_ARN_FIELD, SCOPE_START_TIME_FIELD, SCOPE_END_TIME_FIELD));
private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();
private final String graphArn;
private final String entityArn;
private final Instant scopeStartTime;
private final Instant scopeEndTime;
private StartInvestigationRequest(BuilderImpl builder) {
super(builder);
this.graphArn = builder.graphArn;
this.entityArn = builder.entityArn;
this.scopeStartTime = builder.scopeStartTime;
this.scopeEndTime = builder.scopeEndTime;
}
/**
*
* The Amazon Resource Name (ARN) of the behavior graph.
*
*
* @return The Amazon Resource Name (ARN) of the behavior graph.
*/
public final String graphArn() {
return graphArn;
}
/**
*
* The unique Amazon Resource Name (ARN) of the IAM user and IAM role.
*
*
* @return The unique Amazon Resource Name (ARN) of the IAM user and IAM role.
*/
public final String entityArn() {
return entityArn;
}
/**
*
* The data and time when the investigation began. The value is an UTC ISO8601 formatted string. For example,
* 2021-08-18T16:35:56.284Z
.
*
*
* @return The data and time when the investigation began. The value is an UTC ISO8601 formatted string. For
* example, 2021-08-18T16:35:56.284Z
.
*/
public final Instant scopeStartTime() {
return scopeStartTime;
}
/**
*
* The data and time when the investigation ended. The value is an UTC ISO8601 formatted string. For example,
* 2021-08-18T16:35:56.284Z
.
*
*
* @return The data and time when the investigation ended. The value is an UTC ISO8601 formatted string. For
* example, 2021-08-18T16:35:56.284Z
.
*/
public final Instant scopeEndTime() {
return scopeEndTime;
}
@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(graphArn());
hashCode = 31 * hashCode + Objects.hashCode(entityArn());
hashCode = 31 * hashCode + Objects.hashCode(scopeStartTime());
hashCode = 31 * hashCode + Objects.hashCode(scopeEndTime());
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 StartInvestigationRequest)) {
return false;
}
StartInvestigationRequest other = (StartInvestigationRequest) obj;
return Objects.equals(graphArn(), other.graphArn()) && Objects.equals(entityArn(), other.entityArn())
&& Objects.equals(scopeStartTime(), other.scopeStartTime())
&& Objects.equals(scopeEndTime(), other.scopeEndTime());
}
/**
* 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("StartInvestigationRequest").add("GraphArn", graphArn()).add("EntityArn", entityArn())
.add("ScopeStartTime", scopeStartTime()).add("ScopeEndTime", scopeEndTime()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "GraphArn":
return Optional.ofNullable(clazz.cast(graphArn()));
case "EntityArn":
return Optional.ofNullable(clazz.cast(entityArn()));
case "ScopeStartTime":
return Optional.ofNullable(clazz.cast(scopeStartTime()));
case "ScopeEndTime":
return Optional.ofNullable(clazz.cast(scopeEndTime()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Map> memberNameToFieldInitializer() {
Map> map = new HashMap<>();
map.put("GraphArn", GRAPH_ARN_FIELD);
map.put("EntityArn", ENTITY_ARN_FIELD);
map.put("ScopeStartTime", SCOPE_START_TIME_FIELD);
map.put("ScopeEndTime", SCOPE_END_TIME_FIELD);
return Collections.unmodifiableMap(map);
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy