software.amazon.awssdk.services.devopsguru.model.CloudFormationHealth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devopsguru Show documentation
Show all versions of devopsguru Show documentation
The AWS Java SDK for Dev Ops Guru module holds the client classes that are used for
communicating with Dev Ops Guru.
/*
* 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.devopsguru.model;
import java.io.Serializable;
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.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;
/**
*
* Information about the health of Amazon Web Services resources in your account that are specified by an Amazon Web
* Services CloudFormation stack.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class CloudFormationHealth implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField STACK_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("StackName").getter(getter(CloudFormationHealth::stackName)).setter(setter(Builder::stackName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StackName").build()).build();
private static final SdkField INSIGHT_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.memberName("Insight").getter(getter(CloudFormationHealth::insight)).setter(setter(Builder::insight))
.constructor(InsightHealth::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Insight").build()).build();
private static final SdkField ANALYZED_RESOURCE_COUNT_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("AnalyzedResourceCount").getter(getter(CloudFormationHealth::analyzedResourceCount))
.setter(setter(Builder::analyzedResourceCount))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("AnalyzedResourceCount").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STACK_NAME_FIELD,
INSIGHT_FIELD, ANALYZED_RESOURCE_COUNT_FIELD));
private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();
private static final long serialVersionUID = 1L;
private final String stackName;
private final InsightHealth insight;
private final Long analyzedResourceCount;
private CloudFormationHealth(BuilderImpl builder) {
this.stackName = builder.stackName;
this.insight = builder.insight;
this.analyzedResourceCount = builder.analyzedResourceCount;
}
/**
*
* The name of the CloudFormation stack.
*
*
* @return The name of the CloudFormation stack.
*/
public final String stackName() {
return stackName;
}
/**
*
* Information about the health of the Amazon Web Services resources in your account that are specified by an Amazon
* Web Services CloudFormation stack, including the number of open proactive, open reactive insights, and the Mean
* Time to Recover (MTTR) of closed insights.
*
*
* @return Information about the health of the Amazon Web Services resources in your account that are specified by
* an Amazon Web Services CloudFormation stack, including the number of open proactive, open reactive
* insights, and the Mean Time to Recover (MTTR) of closed insights.
*/
public final InsightHealth insight() {
return insight;
}
/**
*
* Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web Services
* CloudFormation stack.
*
*
* @return Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web
* Services CloudFormation stack.
*/
public final Long analyzedResourceCount() {
return analyzedResourceCount;
}
@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 + Objects.hashCode(stackName());
hashCode = 31 * hashCode + Objects.hashCode(insight());
hashCode = 31 * hashCode + Objects.hashCode(analyzedResourceCount());
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 CloudFormationHealth)) {
return false;
}
CloudFormationHealth other = (CloudFormationHealth) obj;
return Objects.equals(stackName(), other.stackName()) && Objects.equals(insight(), other.insight())
&& Objects.equals(analyzedResourceCount(), other.analyzedResourceCount());
}
/**
* 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("CloudFormationHealth").add("StackName", stackName()).add("Insight", insight())
.add("AnalyzedResourceCount", analyzedResourceCount()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "StackName":
return Optional.ofNullable(clazz.cast(stackName()));
case "Insight":
return Optional.ofNullable(clazz.cast(insight()));
case "AnalyzedResourceCount":
return Optional.ofNullable(clazz.cast(analyzedResourceCount()));
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("StackName", STACK_NAME_FIELD);
map.put("Insight", INSIGHT_FIELD);
map.put("AnalyzedResourceCount", ANALYZED_RESOURCE_COUNT_FIELD);
return Collections.unmodifiableMap(map);
}
private static Function
© 2015 - 2024 Weber Informatics LLC | Privacy Policy