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

software.amazon.awssdk.services.devopsguru.model.CloudFormationHealth Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Dev Ops Guru module holds the client classes that are used for communicating with Dev Ops Guru.

There is a newer version: 2.29.39
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.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 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 getter(Function g) { return obj -> g.apply((CloudFormationHealth) 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 CloudFormation stack. *

* * @param stackName * The name of the CloudFormation stack. * @return Returns a reference to this object so that method calls can be chained together. */ Builder stackName(String 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. *

* * @param insight * 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 Returns a reference to this object so that method calls can be chained together. */ Builder insight(InsightHealth insight); /** *

* 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. *

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

* When the {@link Consumer} completes, {@link InsightHealth.Builder#build()} is called immediately and its * result is passed to {@link #insight(InsightHealth)}. * * @param insight * a consumer that will call methods on {@link InsightHealth.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #insight(InsightHealth) */ default Builder insight(Consumer insight) { return insight(InsightHealth.builder().applyMutation(insight).build()); } /** *

* Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web * Services CloudFormation stack. *

* * @param analyzedResourceCount * Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web * Services CloudFormation stack. * @return Returns a reference to this object so that method calls can be chained together. */ Builder analyzedResourceCount(Long analyzedResourceCount); } static final class BuilderImpl implements Builder { private String stackName; private InsightHealth insight; private Long analyzedResourceCount; private BuilderImpl() { } private BuilderImpl(CloudFormationHealth model) { stackName(model.stackName); insight(model.insight); analyzedResourceCount(model.analyzedResourceCount); } public final String getStackName() { return stackName; } public final void setStackName(String stackName) { this.stackName = stackName; } @Override public final Builder stackName(String stackName) { this.stackName = stackName; return this; } public final InsightHealth.Builder getInsight() { return insight != null ? insight.toBuilder() : null; } public final void setInsight(InsightHealth.BuilderImpl insight) { this.insight = insight != null ? insight.build() : null; } @Override public final Builder insight(InsightHealth insight) { this.insight = insight; return this; } public final Long getAnalyzedResourceCount() { return analyzedResourceCount; } public final void setAnalyzedResourceCount(Long analyzedResourceCount) { this.analyzedResourceCount = analyzedResourceCount; } @Override public final Builder analyzedResourceCount(Long analyzedResourceCount) { this.analyzedResourceCount = analyzedResourceCount; return this; } @Override public CloudFormationHealth build() { return new CloudFormationHealth(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy