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

software.amazon.awssdk.services.redshift.model.DeleteClusterRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Redshift module holds the client classes that are used for communicating with Amazon Redshift Service

There is a newer version: 2.29.15
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.redshift.model;

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.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

*/ @Generated("software.amazon.awssdk:codegen") public final class DeleteClusterRequest extends RedshiftRequest implements ToCopyableBuilder { private static final SdkField CLUSTER_IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("ClusterIdentifier").getter(getter(DeleteClusterRequest::clusterIdentifier)) .setter(setter(Builder::clusterIdentifier)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ClusterIdentifier").build()).build(); private static final SdkField SKIP_FINAL_CLUSTER_SNAPSHOT_FIELD = SdkField . builder(MarshallingType.BOOLEAN).memberName("SkipFinalClusterSnapshot") .getter(getter(DeleteClusterRequest::skipFinalClusterSnapshot)).setter(setter(Builder::skipFinalClusterSnapshot)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SkipFinalClusterSnapshot").build()) .build(); private static final SdkField FINAL_CLUSTER_SNAPSHOT_IDENTIFIER_FIELD = SdkField . builder(MarshallingType.STRING) .memberName("FinalClusterSnapshotIdentifier") .getter(getter(DeleteClusterRequest::finalClusterSnapshotIdentifier)) .setter(setter(Builder::finalClusterSnapshotIdentifier)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FinalClusterSnapshotIdentifier") .build()).build(); private static final SdkField FINAL_CLUSTER_SNAPSHOT_RETENTION_PERIOD_FIELD = SdkField . builder(MarshallingType.INTEGER) .memberName("FinalClusterSnapshotRetentionPeriod") .getter(getter(DeleteClusterRequest::finalClusterSnapshotRetentionPeriod)) .setter(setter(Builder::finalClusterSnapshotRetentionPeriod)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) .locationName("FinalClusterSnapshotRetentionPeriod").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CLUSTER_IDENTIFIER_FIELD, SKIP_FINAL_CLUSTER_SNAPSHOT_FIELD, FINAL_CLUSTER_SNAPSHOT_IDENTIFIER_FIELD, FINAL_CLUSTER_SNAPSHOT_RETENTION_PERIOD_FIELD)); private static final Map> SDK_NAME_TO_FIELD = Collections .unmodifiableMap(new HashMap>() { { put("ClusterIdentifier", CLUSTER_IDENTIFIER_FIELD); put("SkipFinalClusterSnapshot", SKIP_FINAL_CLUSTER_SNAPSHOT_FIELD); put("FinalClusterSnapshotIdentifier", FINAL_CLUSTER_SNAPSHOT_IDENTIFIER_FIELD); put("FinalClusterSnapshotRetentionPeriod", FINAL_CLUSTER_SNAPSHOT_RETENTION_PERIOD_FIELD); } }); private final String clusterIdentifier; private final Boolean skipFinalClusterSnapshot; private final String finalClusterSnapshotIdentifier; private final Integer finalClusterSnapshotRetentionPeriod; private DeleteClusterRequest(BuilderImpl builder) { super(builder); this.clusterIdentifier = builder.clusterIdentifier; this.skipFinalClusterSnapshot = builder.skipFinalClusterSnapshot; this.finalClusterSnapshotIdentifier = builder.finalClusterSnapshotIdentifier; this.finalClusterSnapshotRetentionPeriod = builder.finalClusterSnapshotRetentionPeriod; } /** *

* The identifier of the cluster to be deleted. *

*

* Constraints: *

*
    *
  • *

    * Must contain lowercase characters. *

    *
  • *
  • *

    * Must contain from 1 to 63 alphanumeric characters or hyphens. *

    *
  • *
  • *

    * First character must be a letter. *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens. *

    *
  • *
* * @return The identifier of the cluster to be deleted.

*

* Constraints: *

*
    *
  • *

    * Must contain lowercase characters. *

    *
  • *
  • *

    * Must contain from 1 to 63 alphanumeric characters or hyphens. *

    *
  • *
  • *

    * First character must be a letter. *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens. *

    *
  • */ public final String clusterIdentifier() { return clusterIdentifier; } /** *

    * Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If * true, a final cluster snapshot is not created. If false, a final cluster snapshot is * created before the cluster is deleted. *

    * *

    * The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot is * false. *

    *
    *

    * Default: false *

    * * @return Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. * If true, a final cluster snapshot is not created. If false, a final cluster * snapshot is created before the cluster is deleted.

    *

    * The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot * is false. *

    *
    *

    * Default: false */ public final Boolean skipFinalClusterSnapshot() { return skipFinalClusterSnapshot; } /** *

    * The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this * parameter is provided, SkipFinalClusterSnapshot must be false. *

    *

    * Constraints: *

    *
      *
    • *

      * Must be 1 to 255 alphanumeric characters. *

      *
    • *
    • *

      * First character must be a letter. *

      *
    • *
    • *

      * Cannot end with a hyphen or contain two consecutive hyphens. *

      *
    • *
    * * @return The identifier of the final snapshot that is to be created immediately before deleting the cluster. If * this parameter is provided, SkipFinalClusterSnapshot must be false.

    *

    * Constraints: *

    *
      *
    • *

      * Must be 1 to 255 alphanumeric characters. *

      *
    • *
    • *

      * First character must be a letter. *

      *
    • *
    • *

      * Cannot end with a hyphen or contain two consecutive hyphens. *

      *
    • */ public final String finalClusterSnapshotIdentifier() { return finalClusterSnapshotIdentifier; } /** *

      * The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained * indefinitely. *

      *

      * The value must be either -1 or an integer between 1 and 3,653. *

      *

      * The default value is -1. *

      * * @return The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is * retained indefinitely.

      *

      * The value must be either -1 or an integer between 1 and 3,653. *

      *

      * The default value is -1. */ public final Integer finalClusterSnapshotRetentionPeriod() { return finalClusterSnapshotRetentionPeriod; } @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 + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(clusterIdentifier()); hashCode = 31 * hashCode + Objects.hashCode(skipFinalClusterSnapshot()); hashCode = 31 * hashCode + Objects.hashCode(finalClusterSnapshotIdentifier()); hashCode = 31 * hashCode + Objects.hashCode(finalClusterSnapshotRetentionPeriod()); 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 DeleteClusterRequest)) { return false; } DeleteClusterRequest other = (DeleteClusterRequest) obj; return Objects.equals(clusterIdentifier(), other.clusterIdentifier()) && Objects.equals(skipFinalClusterSnapshot(), other.skipFinalClusterSnapshot()) && Objects.equals(finalClusterSnapshotIdentifier(), other.finalClusterSnapshotIdentifier()) && Objects.equals(finalClusterSnapshotRetentionPeriod(), other.finalClusterSnapshotRetentionPeriod()); } /** * 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("DeleteClusterRequest").add("ClusterIdentifier", clusterIdentifier()) .add("SkipFinalClusterSnapshot", skipFinalClusterSnapshot()) .add("FinalClusterSnapshotIdentifier", finalClusterSnapshotIdentifier()) .add("FinalClusterSnapshotRetentionPeriod", finalClusterSnapshotRetentionPeriod()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ClusterIdentifier": return Optional.ofNullable(clazz.cast(clusterIdentifier())); case "SkipFinalClusterSnapshot": return Optional.ofNullable(clazz.cast(skipFinalClusterSnapshot())); case "FinalClusterSnapshotIdentifier": return Optional.ofNullable(clazz.cast(finalClusterSnapshotIdentifier())); case "FinalClusterSnapshotRetentionPeriod": return Optional.ofNullable(clazz.cast(finalClusterSnapshotRetentionPeriod())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } @Override public final Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } private static Function getter(Function g) { return obj -> g.apply((DeleteClusterRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends RedshiftRequest.Builder, SdkPojo, CopyableBuilder { /** *

      * The identifier of the cluster to be deleted. *

      *

      * Constraints: *

      *
        *
      • *

        * Must contain lowercase characters. *

        *
      • *
      • *

        * Must contain from 1 to 63 alphanumeric characters or hyphens. *

        *
      • *
      • *

        * First character must be a letter. *

        *
      • *
      • *

        * Cannot end with a hyphen or contain two consecutive hyphens. *

        *
      • *
      * * @param clusterIdentifier * The identifier of the cluster to be deleted.

      *

      * Constraints: *

      *
        *
      • *

        * Must contain lowercase characters. *

        *
      • *
      • *

        * Must contain from 1 to 63 alphanumeric characters or hyphens. *

        *
      • *
      • *

        * First character must be a letter. *

        *
      • *
      • *

        * Cannot end with a hyphen or contain two consecutive hyphens. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ Builder clusterIdentifier(String clusterIdentifier); /** *

        * Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If * true, a final cluster snapshot is not created. If false, a final cluster snapshot * is created before the cluster is deleted. *

        * *

        * The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot is * false. *

        *
        *

        * Default: false *

        * * @param skipFinalClusterSnapshot * Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the * cluster. If true, a final cluster snapshot is not created. If false, a final * cluster snapshot is created before the cluster is deleted.

        *

        * The FinalClusterSnapshotIdentifier parameter must be specified if * SkipFinalClusterSnapshot is false. *

        *
        *

        * Default: false * @return Returns a reference to this object so that method calls can be chained together. */ Builder skipFinalClusterSnapshot(Boolean skipFinalClusterSnapshot); /** *

        * The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this * parameter is provided, SkipFinalClusterSnapshot must be false. *

        *

        * Constraints: *

        *
          *
        • *

          * Must be 1 to 255 alphanumeric characters. *

          *
        • *
        • *

          * First character must be a letter. *

          *
        • *
        • *

          * Cannot end with a hyphen or contain two consecutive hyphens. *

          *
        • *
        * * @param finalClusterSnapshotIdentifier * The identifier of the final snapshot that is to be created immediately before deleting the cluster. If * this parameter is provided, SkipFinalClusterSnapshot must be false.

        *

        * Constraints: *

        *
          *
        • *

          * Must be 1 to 255 alphanumeric characters. *

          *
        • *
        • *

          * First character must be a letter. *

          *
        • *
        • *

          * Cannot end with a hyphen or contain two consecutive hyphens. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. */ Builder finalClusterSnapshotIdentifier(String finalClusterSnapshotIdentifier); /** *

          * The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained * indefinitely. *

          *

          * The value must be either -1 or an integer between 1 and 3,653. *

          *

          * The default value is -1. *

          * * @param finalClusterSnapshotRetentionPeriod * The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is * retained indefinitely.

          *

          * The value must be either -1 or an integer between 1 and 3,653. *

          *

          * The default value is -1. * @return Returns a reference to this object so that method calls can be chained together. */ Builder finalClusterSnapshotRetentionPeriod(Integer finalClusterSnapshotRetentionPeriod); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends RedshiftRequest.BuilderImpl implements Builder { private String clusterIdentifier; private Boolean skipFinalClusterSnapshot; private String finalClusterSnapshotIdentifier; private Integer finalClusterSnapshotRetentionPeriod; private BuilderImpl() { } private BuilderImpl(DeleteClusterRequest model) { super(model); clusterIdentifier(model.clusterIdentifier); skipFinalClusterSnapshot(model.skipFinalClusterSnapshot); finalClusterSnapshotIdentifier(model.finalClusterSnapshotIdentifier); finalClusterSnapshotRetentionPeriod(model.finalClusterSnapshotRetentionPeriod); } public final String getClusterIdentifier() { return clusterIdentifier; } public final void setClusterIdentifier(String clusterIdentifier) { this.clusterIdentifier = clusterIdentifier; } @Override public final Builder clusterIdentifier(String clusterIdentifier) { this.clusterIdentifier = clusterIdentifier; return this; } public final Boolean getSkipFinalClusterSnapshot() { return skipFinalClusterSnapshot; } public final void setSkipFinalClusterSnapshot(Boolean skipFinalClusterSnapshot) { this.skipFinalClusterSnapshot = skipFinalClusterSnapshot; } @Override public final Builder skipFinalClusterSnapshot(Boolean skipFinalClusterSnapshot) { this.skipFinalClusterSnapshot = skipFinalClusterSnapshot; return this; } public final String getFinalClusterSnapshotIdentifier() { return finalClusterSnapshotIdentifier; } public final void setFinalClusterSnapshotIdentifier(String finalClusterSnapshotIdentifier) { this.finalClusterSnapshotIdentifier = finalClusterSnapshotIdentifier; } @Override public final Builder finalClusterSnapshotIdentifier(String finalClusterSnapshotIdentifier) { this.finalClusterSnapshotIdentifier = finalClusterSnapshotIdentifier; return this; } public final Integer getFinalClusterSnapshotRetentionPeriod() { return finalClusterSnapshotRetentionPeriod; } public final void setFinalClusterSnapshotRetentionPeriod(Integer finalClusterSnapshotRetentionPeriod) { this.finalClusterSnapshotRetentionPeriod = finalClusterSnapshotRetentionPeriod; } @Override public final Builder finalClusterSnapshotRetentionPeriod(Integer finalClusterSnapshotRetentionPeriod) { this.finalClusterSnapshotRetentionPeriod = finalClusterSnapshotRetentionPeriod; return this; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public DeleteClusterRequest build() { return new DeleteClusterRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy