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

com.amazonaws.services.securityhub.model.AwsSecretsManagerSecretDetails Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 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 com.amazonaws.services.securityhub.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Details about an Secrets Manager secret. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AwsSecretsManagerSecretDetails implements Serializable, Cloneable, StructuredPojo { /** *

* Defines the rotation schedule for the secret. *

*/ private AwsSecretsManagerSecretRotationRules rotationRules; /** *

* Whether the rotation occurred within the specified rotation frequency. *

*/ private Boolean rotationOccurredWithinFrequency; /** *

* The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or * SecretBinary values for versions of this secret. *

*/ private String kmsKeyId; /** *

* Whether rotation is enabled. *

*/ private Boolean rotationEnabled; /** *

* The ARN of the Lambda function that rotates the secret. *

*/ private String rotationLambdaArn; /** *

* Whether the secret is deleted. *

*/ private Boolean deleted; /** *

* The name of the secret. *

*/ private String name; /** *

* The user-provided description of the secret. *

*/ private String description; /** *

* Defines the rotation schedule for the secret. *

* * @param rotationRules * Defines the rotation schedule for the secret. */ public void setRotationRules(AwsSecretsManagerSecretRotationRules rotationRules) { this.rotationRules = rotationRules; } /** *

* Defines the rotation schedule for the secret. *

* * @return Defines the rotation schedule for the secret. */ public AwsSecretsManagerSecretRotationRules getRotationRules() { return this.rotationRules; } /** *

* Defines the rotation schedule for the secret. *

* * @param rotationRules * Defines the rotation schedule for the secret. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withRotationRules(AwsSecretsManagerSecretRotationRules rotationRules) { setRotationRules(rotationRules); return this; } /** *

* Whether the rotation occurred within the specified rotation frequency. *

* * @param rotationOccurredWithinFrequency * Whether the rotation occurred within the specified rotation frequency. */ public void setRotationOccurredWithinFrequency(Boolean rotationOccurredWithinFrequency) { this.rotationOccurredWithinFrequency = rotationOccurredWithinFrequency; } /** *

* Whether the rotation occurred within the specified rotation frequency. *

* * @return Whether the rotation occurred within the specified rotation frequency. */ public Boolean getRotationOccurredWithinFrequency() { return this.rotationOccurredWithinFrequency; } /** *

* Whether the rotation occurred within the specified rotation frequency. *

* * @param rotationOccurredWithinFrequency * Whether the rotation occurred within the specified rotation frequency. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withRotationOccurredWithinFrequency(Boolean rotationOccurredWithinFrequency) { setRotationOccurredWithinFrequency(rotationOccurredWithinFrequency); return this; } /** *

* Whether the rotation occurred within the specified rotation frequency. *

* * @return Whether the rotation occurred within the specified rotation frequency. */ public Boolean isRotationOccurredWithinFrequency() { return this.rotationOccurredWithinFrequency; } /** *

* The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or * SecretBinary values for versions of this secret. *

* * @param kmsKeyId * The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or * SecretBinary values for versions of this secret. */ public void setKmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; } /** *

* The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or * SecretBinary values for versions of this secret. *

* * @return The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or * SecretBinary values for versions of this secret. */ public String getKmsKeyId() { return this.kmsKeyId; } /** *

* The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or * SecretBinary values for versions of this secret. *

* * @param kmsKeyId * The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or * SecretBinary values for versions of this secret. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withKmsKeyId(String kmsKeyId) { setKmsKeyId(kmsKeyId); return this; } /** *

* Whether rotation is enabled. *

* * @param rotationEnabled * Whether rotation is enabled. */ public void setRotationEnabled(Boolean rotationEnabled) { this.rotationEnabled = rotationEnabled; } /** *

* Whether rotation is enabled. *

* * @return Whether rotation is enabled. */ public Boolean getRotationEnabled() { return this.rotationEnabled; } /** *

* Whether rotation is enabled. *

* * @param rotationEnabled * Whether rotation is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withRotationEnabled(Boolean rotationEnabled) { setRotationEnabled(rotationEnabled); return this; } /** *

* Whether rotation is enabled. *

* * @return Whether rotation is enabled. */ public Boolean isRotationEnabled() { return this.rotationEnabled; } /** *

* The ARN of the Lambda function that rotates the secret. *

* * @param rotationLambdaArn * The ARN of the Lambda function that rotates the secret. */ public void setRotationLambdaArn(String rotationLambdaArn) { this.rotationLambdaArn = rotationLambdaArn; } /** *

* The ARN of the Lambda function that rotates the secret. *

* * @return The ARN of the Lambda function that rotates the secret. */ public String getRotationLambdaArn() { return this.rotationLambdaArn; } /** *

* The ARN of the Lambda function that rotates the secret. *

* * @param rotationLambdaArn * The ARN of the Lambda function that rotates the secret. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withRotationLambdaArn(String rotationLambdaArn) { setRotationLambdaArn(rotationLambdaArn); return this; } /** *

* Whether the secret is deleted. *

* * @param deleted * Whether the secret is deleted. */ public void setDeleted(Boolean deleted) { this.deleted = deleted; } /** *

* Whether the secret is deleted. *

* * @return Whether the secret is deleted. */ public Boolean getDeleted() { return this.deleted; } /** *

* Whether the secret is deleted. *

* * @param deleted * Whether the secret is deleted. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withDeleted(Boolean deleted) { setDeleted(deleted); return this; } /** *

* Whether the secret is deleted. *

* * @return Whether the secret is deleted. */ public Boolean isDeleted() { return this.deleted; } /** *

* The name of the secret. *

* * @param name * The name of the secret. */ public void setName(String name) { this.name = name; } /** *

* The name of the secret. *

* * @return The name of the secret. */ public String getName() { return this.name; } /** *

* The name of the secret. *

* * @param name * The name of the secret. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withName(String name) { setName(name); return this; } /** *

* The user-provided description of the secret. *

* * @param description * The user-provided description of the secret. */ public void setDescription(String description) { this.description = description; } /** *

* The user-provided description of the secret. *

* * @return The user-provided description of the secret. */ public String getDescription() { return this.description; } /** *

* The user-provided description of the secret. *

* * @param description * The user-provided description of the secret. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsSecretsManagerSecretDetails withDescription(String description) { setDescription(description); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getRotationRules() != null) sb.append("RotationRules: ").append(getRotationRules()).append(","); if (getRotationOccurredWithinFrequency() != null) sb.append("RotationOccurredWithinFrequency: ").append(getRotationOccurredWithinFrequency()).append(","); if (getKmsKeyId() != null) sb.append("KmsKeyId: ").append(getKmsKeyId()).append(","); if (getRotationEnabled() != null) sb.append("RotationEnabled: ").append(getRotationEnabled()).append(","); if (getRotationLambdaArn() != null) sb.append("RotationLambdaArn: ").append(getRotationLambdaArn()).append(","); if (getDeleted() != null) sb.append("Deleted: ").append(getDeleted()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AwsSecretsManagerSecretDetails == false) return false; AwsSecretsManagerSecretDetails other = (AwsSecretsManagerSecretDetails) obj; if (other.getRotationRules() == null ^ this.getRotationRules() == null) return false; if (other.getRotationRules() != null && other.getRotationRules().equals(this.getRotationRules()) == false) return false; if (other.getRotationOccurredWithinFrequency() == null ^ this.getRotationOccurredWithinFrequency() == null) return false; if (other.getRotationOccurredWithinFrequency() != null && other.getRotationOccurredWithinFrequency().equals(this.getRotationOccurredWithinFrequency()) == false) return false; if (other.getKmsKeyId() == null ^ this.getKmsKeyId() == null) return false; if (other.getKmsKeyId() != null && other.getKmsKeyId().equals(this.getKmsKeyId()) == false) return false; if (other.getRotationEnabled() == null ^ this.getRotationEnabled() == null) return false; if (other.getRotationEnabled() != null && other.getRotationEnabled().equals(this.getRotationEnabled()) == false) return false; if (other.getRotationLambdaArn() == null ^ this.getRotationLambdaArn() == null) return false; if (other.getRotationLambdaArn() != null && other.getRotationLambdaArn().equals(this.getRotationLambdaArn()) == false) return false; if (other.getDeleted() == null ^ this.getDeleted() == null) return false; if (other.getDeleted() != null && other.getDeleted().equals(this.getDeleted()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRotationRules() == null) ? 0 : getRotationRules().hashCode()); hashCode = prime * hashCode + ((getRotationOccurredWithinFrequency() == null) ? 0 : getRotationOccurredWithinFrequency().hashCode()); hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode()); hashCode = prime * hashCode + ((getRotationEnabled() == null) ? 0 : getRotationEnabled().hashCode()); hashCode = prime * hashCode + ((getRotationLambdaArn() == null) ? 0 : getRotationLambdaArn().hashCode()); hashCode = prime * hashCode + ((getDeleted() == null) ? 0 : getDeleted().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); return hashCode; } @Override public AwsSecretsManagerSecretDetails clone() { try { return (AwsSecretsManagerSecretDetails) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.securityhub.model.transform.AwsSecretsManagerSecretDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy