/*
* Copyright 2018-2023 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.secretsmanager.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeSecretResult extends com.amazonaws.AmazonWebServiceResult
* The ARN of the secret.
*
* The name of the secret.
*
* The description of the secret.
*
* The key ID or alias ARN of the KMS key that Secrets Manager uses to encrypt the secret value. If the secret is
* encrypted with the Amazon Web Services managed key
* Specifies whether automatic rotation is turned on for this secret.
*
* To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret.
*
* The ARN of the Lambda function that Secrets Manager invokes to rotate the secret.
*
* The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned on, but
* it is now turned off, this field shows the previous rotation schedule and rotation function. If the secret never
* had rotation turned on, this field is omitted.
*
* The last date and time that Secrets Manager rotated the secret. If the secret isn't configured for rotation,
* Secrets Manager returns null.
*
* The last date and time that this secret was modified in any way.
*
* The date that the secret was last accessed in the Region. This field is omitted if the secret has never been
* retrieved in the Region.
*
* The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is omitted. When
* you delete a secret, Secrets Manager requires a recovery window of at least 7 days before deleting the secret.
* Some time after the deleted date, Secrets Manager deletes the secret, including all of its versions.
*
* If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not accessible.
* To cancel a scheduled deletion and restore access to the secret, use RestoreSecret.
*
* The next rotation is scheduled to occur on or before this date. If the secret isn't configured for rotation,
* Secrets Manager returns null.
*
* The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, use
* UntagResource.
*
* A list of the versions of the secret that have staging labels attached. Versions that don't have staging labels
* are considered deprecated and Secrets Manager can delete them.
*
* Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three staging
* labels for rotation are:
*
*
*
* During rotation, Secrets Manager creates an
*
* For more information about rotation and staging labels, see How rotation
* works.
*
* The ID of the service that created this secret. For more information, see Secrets managed by
* other Amazon Web Services services.
*
* The date the secret was created.
*
* The Region the secret is in. If a secret is replicated to other Regions, the replicas are listed in
*
* A list of the replicas of this secret and their status:
*
*
*
*
* The ARN of the secret.
*
* The ARN of the secret.
*
* The ARN of the secret.
*
* The name of the secret.
*
* The name of the secret.
*
* The name of the secret.
*
* The description of the secret.
*
* The description of the secret.
*
* The description of the secret.
*
* The key ID or alias ARN of the KMS key that Secrets Manager uses to encrypt the secret value. If the secret is
* encrypted with the Amazon Web Services managed key
* The key ID or alias ARN of the KMS key that Secrets Manager uses to encrypt the secret value. If the secret is
* encrypted with the Amazon Web Services managed key
* The key ID or alias ARN of the KMS key that Secrets Manager uses to encrypt the secret value. If the secret is
* encrypted with the Amazon Web Services managed key
* Specifies whether automatic rotation is turned on for this secret.
*
* To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret.
* aws/secretsmanager
, this field is omitted.
* Secrets created using the console use an KMS key ID.
*
*
* AWSCURRENT
, which indicates the current version of the secret.
* AWSPENDING
, which indicates the version of the secret that contains new secret information that will
* become the next current version when rotation finishes.
* AWSPENDING
version ID before creating the new secret
* version. To check if a secret version exists, call GetSecretValue.
* AWSPREVIOUS
, which indicates the previous current version of the secret. You can use this as the
* last known good version.
* ReplicationStatus
.
*
*
*/
private java.util.ListFailed
, which indicates that the replica was not created.
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
* InSync
, which indicates that the replica was created.
* aws/secretsmanager
, this field is omitted.
* Secrets created using the console use an KMS key ID.
* aws/secretsmanager
, this field
* is omitted. Secrets created using the console use an KMS key ID.
*/
public void setKmsKeyId(String kmsKeyId) {
this.kmsKeyId = kmsKeyId;
}
/**
* aws/secretsmanager
, this field is omitted.
* Secrets created using the console use an KMS key ID.
* aws/secretsmanager
, this field
* is omitted. Secrets created using the console use an KMS key ID.
*/
public String getKmsKeyId() {
return this.kmsKeyId;
}
/**
* aws/secretsmanager
, this field is omitted.
* Secrets created using the console use an KMS key ID.
* aws/secretsmanager
, this field
* is omitted. Secrets created using the console use an KMS key ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeSecretResult withKmsKeyId(String kmsKeyId) {
setKmsKeyId(kmsKeyId);
return this;
}
/**
*
* To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret. */ public void setRotationEnabled(Boolean rotationEnabled) { this.rotationEnabled = rotationEnabled; } /** *
* Specifies whether automatic rotation is turned on for this secret. *
** To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret. *
* * @return Specifies whether automatic rotation is turned on for this secret. ** To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret. */ public Boolean getRotationEnabled() { return this.rotationEnabled; } /** *
* Specifies whether automatic rotation is turned on for this secret. *
** To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret. *
* * @param rotationEnabled * Specifies whether automatic rotation is turned on for this secret. ** To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withRotationEnabled(Boolean rotationEnabled) { setRotationEnabled(rotationEnabled); return this; } /** *
* Specifies whether automatic rotation is turned on for this secret. *
** To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret. *
* * @return Specifies whether automatic rotation is turned on for this secret. ** To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret. */ public Boolean isRotationEnabled() { return this.rotationEnabled; } /** *
* The ARN of the Lambda function that Secrets Manager invokes to rotate the secret. *
* * @param rotationLambdaARN * The ARN of the Lambda function that Secrets Manager invokes to rotate the secret. */ public void setRotationLambdaARN(String rotationLambdaARN) { this.rotationLambdaARN = rotationLambdaARN; } /** ** The ARN of the Lambda function that Secrets Manager invokes to rotate the secret. *
* * @return The ARN of the Lambda function that Secrets Manager invokes to rotate the secret. */ public String getRotationLambdaARN() { return this.rotationLambdaARN; } /** ** The ARN of the Lambda function that Secrets Manager invokes to rotate the secret. *
* * @param rotationLambdaARN * The ARN of the Lambda function that Secrets Manager invokes to rotate the secret. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withRotationLambdaARN(String rotationLambdaARN) { setRotationLambdaARN(rotationLambdaARN); return this; } /** ** The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned on, but * it is now turned off, this field shows the previous rotation schedule and rotation function. If the secret never * had rotation turned on, this field is omitted. *
* * @param rotationRules * The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned * on, but it is now turned off, this field shows the previous rotation schedule and rotation function. If * the secret never had rotation turned on, this field is omitted. */ public void setRotationRules(RotationRulesType rotationRules) { this.rotationRules = rotationRules; } /** ** The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned on, but * it is now turned off, this field shows the previous rotation schedule and rotation function. If the secret never * had rotation turned on, this field is omitted. *
* * @return The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned * on, but it is now turned off, this field shows the previous rotation schedule and rotation function. If * the secret never had rotation turned on, this field is omitted. */ public RotationRulesType getRotationRules() { return this.rotationRules; } /** ** The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned on, but * it is now turned off, this field shows the previous rotation schedule and rotation function. If the secret never * had rotation turned on, this field is omitted. *
* * @param rotationRules * The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned * on, but it is now turned off, this field shows the previous rotation schedule and rotation function. If * the secret never had rotation turned on, this field is omitted. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withRotationRules(RotationRulesType rotationRules) { setRotationRules(rotationRules); return this; } /** ** The last date and time that Secrets Manager rotated the secret. If the secret isn't configured for rotation, * Secrets Manager returns null. *
* * @param lastRotatedDate * The last date and time that Secrets Manager rotated the secret. If the secret isn't configured for * rotation, Secrets Manager returns null. */ public void setLastRotatedDate(java.util.Date lastRotatedDate) { this.lastRotatedDate = lastRotatedDate; } /** ** The last date and time that Secrets Manager rotated the secret. If the secret isn't configured for rotation, * Secrets Manager returns null. *
* * @return The last date and time that Secrets Manager rotated the secret. If the secret isn't configured for * rotation, Secrets Manager returns null. */ public java.util.Date getLastRotatedDate() { return this.lastRotatedDate; } /** ** The last date and time that Secrets Manager rotated the secret. If the secret isn't configured for rotation, * Secrets Manager returns null. *
* * @param lastRotatedDate * The last date and time that Secrets Manager rotated the secret. If the secret isn't configured for * rotation, Secrets Manager returns null. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withLastRotatedDate(java.util.Date lastRotatedDate) { setLastRotatedDate(lastRotatedDate); return this; } /** ** The last date and time that this secret was modified in any way. *
* * @param lastChangedDate * The last date and time that this secret was modified in any way. */ public void setLastChangedDate(java.util.Date lastChangedDate) { this.lastChangedDate = lastChangedDate; } /** ** The last date and time that this secret was modified in any way. *
* * @return The last date and time that this secret was modified in any way. */ public java.util.Date getLastChangedDate() { return this.lastChangedDate; } /** ** The last date and time that this secret was modified in any way. *
* * @param lastChangedDate * The last date and time that this secret was modified in any way. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withLastChangedDate(java.util.Date lastChangedDate) { setLastChangedDate(lastChangedDate); return this; } /** ** The date that the secret was last accessed in the Region. This field is omitted if the secret has never been * retrieved in the Region. *
* * @param lastAccessedDate * The date that the secret was last accessed in the Region. This field is omitted if the secret has never * been retrieved in the Region. */ public void setLastAccessedDate(java.util.Date lastAccessedDate) { this.lastAccessedDate = lastAccessedDate; } /** ** The date that the secret was last accessed in the Region. This field is omitted if the secret has never been * retrieved in the Region. *
* * @return The date that the secret was last accessed in the Region. This field is omitted if the secret has never * been retrieved in the Region. */ public java.util.Date getLastAccessedDate() { return this.lastAccessedDate; } /** ** The date that the secret was last accessed in the Region. This field is omitted if the secret has never been * retrieved in the Region. *
* * @param lastAccessedDate * The date that the secret was last accessed in the Region. This field is omitted if the secret has never * been retrieved in the Region. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withLastAccessedDate(java.util.Date lastAccessedDate) { setLastAccessedDate(lastAccessedDate); return this; } /** ** The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is omitted. When * you delete a secret, Secrets Manager requires a recovery window of at least 7 days before deleting the secret. * Some time after the deleted date, Secrets Manager deletes the secret, including all of its versions. *
** If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not accessible. * To cancel a scheduled deletion and restore access to the secret, use RestoreSecret. *
* * @param deletedDate * The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is omitted. * When you delete a secret, Secrets Manager requires a recovery window of at least 7 days before deleting * the secret. Some time after the deleted date, Secrets Manager deletes the secret, including all of its * versions. ** If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not * accessible. To cancel a scheduled deletion and restore access to the secret, use RestoreSecret. */ public void setDeletedDate(java.util.Date deletedDate) { this.deletedDate = deletedDate; } /** *
* The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is omitted. When * you delete a secret, Secrets Manager requires a recovery window of at least 7 days before deleting the secret. * Some time after the deleted date, Secrets Manager deletes the secret, including all of its versions. *
** If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not accessible. * To cancel a scheduled deletion and restore access to the secret, use RestoreSecret. *
* * @return The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is * omitted. When you delete a secret, Secrets Manager requires a recovery window of at least 7 days before * deleting the secret. Some time after the deleted date, Secrets Manager deletes the secret, including all * of its versions. ** If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not * accessible. To cancel a scheduled deletion and restore access to the secret, use RestoreSecret. */ public java.util.Date getDeletedDate() { return this.deletedDate; } /** *
* The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is omitted. When * you delete a secret, Secrets Manager requires a recovery window of at least 7 days before deleting the secret. * Some time after the deleted date, Secrets Manager deletes the secret, including all of its versions. *
** If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not accessible. * To cancel a scheduled deletion and restore access to the secret, use RestoreSecret. *
* * @param deletedDate * The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is omitted. * When you delete a secret, Secrets Manager requires a recovery window of at least 7 days before deleting * the secret. Some time after the deleted date, Secrets Manager deletes the secret, including all of its * versions. ** If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not * accessible. To cancel a scheduled deletion and restore access to the secret, use RestoreSecret. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withDeletedDate(java.util.Date deletedDate) { setDeletedDate(deletedDate); return this; } /** *
* The next rotation is scheduled to occur on or before this date. If the secret isn't configured for rotation, * Secrets Manager returns null. *
* * @param nextRotationDate * The next rotation is scheduled to occur on or before this date. If the secret isn't configured for * rotation, Secrets Manager returns null. */ public void setNextRotationDate(java.util.Date nextRotationDate) { this.nextRotationDate = nextRotationDate; } /** ** The next rotation is scheduled to occur on or before this date. If the secret isn't configured for rotation, * Secrets Manager returns null. *
* * @return The next rotation is scheduled to occur on or before this date. If the secret isn't configured for * rotation, Secrets Manager returns null. */ public java.util.Date getNextRotationDate() { return this.nextRotationDate; } /** ** The next rotation is scheduled to occur on or before this date. If the secret isn't configured for rotation, * Secrets Manager returns null. *
* * @param nextRotationDate * The next rotation is scheduled to occur on or before this date. If the secret isn't configured for * rotation, Secrets Manager returns null. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withNextRotationDate(java.util.Date nextRotationDate) { setNextRotationDate(nextRotationDate); return this; } /** ** The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, use * UntagResource. *
* * @return The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, * use UntagResource. */ public java.util.List* The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, use * UntagResource. *
* * @param tags * The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, * use UntagResource. */ public void setTags(java.util.Collection* The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, use * UntagResource. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, * use UntagResource. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, use * UntagResource. *
* * @param tags * The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, * use UntagResource. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSecretResult withTags(java.util.Collection* A list of the versions of the secret that have staging labels attached. Versions that don't have staging labels * are considered deprecated and Secrets Manager can delete them. *
** Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three staging * labels for rotation are: *
*
* AWSCURRENT
, which indicates the current version of the secret.
*
* AWSPENDING
, which indicates the version of the secret that contains new secret information that will
* become the next current version when rotation finishes.
*
* During rotation, Secrets Manager creates an AWSPENDING
version ID before creating the new secret
* version. To check if a secret version exists, call GetSecretValue.
*
* AWSPREVIOUS
, which indicates the previous current version of the secret. You can use this as the
* last known good version.
*
* For more information about rotation and staging labels, see How rotation * works. *
* * @return A list of the versions of the secret that have staging labels attached. Versions that don't have staging * labels are considered deprecated and Secrets Manager can delete them. ** Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three * staging labels for rotation are: *
*
* AWSCURRENT
, which indicates the current version of the secret.
*
* AWSPENDING
, which indicates the version of the secret that contains new secret information
* that will become the next current version when rotation finishes.
*
* During rotation, Secrets Manager creates an AWSPENDING
version ID before creating the new
* secret version. To check if a secret version exists, call GetSecretValue.
*
* AWSPREVIOUS
, which indicates the previous current version of the secret. You can use this as
* the last known good version.
*
* For more information about rotation and staging labels, see How rotation
* works.
*/
public java.util.Map
* A list of the versions of the secret that have staging labels attached. Versions that don't have staging labels
* are considered deprecated and Secrets Manager can delete them.
*
* Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three staging
* labels for rotation are:
*
*
*
* During rotation, Secrets Manager creates an
*
* For more information about rotation and staging labels, see How rotation
* works.
*
*
* AWSCURRENT
, which indicates the current version of the secret.
* AWSPENDING
, which indicates the version of the secret that contains new secret information that will
* become the next current version when rotation finishes.
* AWSPENDING
version ID before creating the new secret
* version. To check if a secret version exists, call GetSecretValue.
* AWSPREVIOUS
, which indicates the previous current version of the secret. You can use this as the
* last known good version.
*
* Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three * staging labels for rotation are: *
*
* AWSCURRENT
, which indicates the current version of the secret.
*
* AWSPENDING
, which indicates the version of the secret that contains new secret information
* that will become the next current version when rotation finishes.
*
* During rotation, Secrets Manager creates an AWSPENDING
version ID before creating the new
* secret version. To check if a secret version exists, call GetSecretValue.
*
* AWSPREVIOUS
, which indicates the previous current version of the secret. You can use this as
* the last known good version.
*
* For more information about rotation and staging labels, see How rotation
* works.
*/
public void setVersionIdsToStages(java.util.Map
* A list of the versions of the secret that have staging labels attached. Versions that don't have staging labels
* are considered deprecated and Secrets Manager can delete them.
*
* Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three staging
* labels for rotation are:
*
*
*
* During rotation, Secrets Manager creates an
*
* For more information about rotation and staging labels, see How rotation
* works.
*
*
* AWSCURRENT
, which indicates the current version of the secret.
* AWSPENDING
, which indicates the version of the secret that contains new secret information that will
* become the next current version when rotation finishes.
* AWSPENDING
version ID before creating the new secret
* version. To check if a secret version exists, call GetSecretValue.
* AWSPREVIOUS
, which indicates the previous current version of the secret. You can use this as the
* last known good version.
*
* Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three * staging labels for rotation are: *
*
* AWSCURRENT
, which indicates the current version of the secret.
*
* AWSPENDING
, which indicates the version of the secret that contains new secret information
* that will become the next current version when rotation finishes.
*
* During rotation, Secrets Manager creates an AWSPENDING
version ID before creating the new
* secret version. To check if a secret version exists, call GetSecretValue.
*
* AWSPREVIOUS
, which indicates the previous current version of the secret. You can use this as
* the last known good version.
*
* For more information about rotation and staging labels, see How rotation
* works.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeSecretResult withVersionIdsToStages(java.util.Map
* The ID of the service that created this secret. For more information, see Secrets managed by
* other Amazon Web Services services.
*
* The ID of the service that created this secret. For more information, see Secrets managed by
* other Amazon Web Services services.
*
* The ID of the service that created this secret. For more information, see Secrets managed by
* other Amazon Web Services services.
*
* The date the secret was created.
*
* The date the secret was created.
*
* The date the secret was created.
*
* The Region the secret is in. If a secret is replicated to other Regions, the replicas are listed in
*
* The Region the secret is in. If a secret is replicated to other Regions, the replicas are listed in
*
* The Region the secret is in. If a secret is replicated to other Regions, the replicas are listed in
*
* A list of the replicas of this secret and their status:
*
*
*
* ReplicationStatus
.
* ReplicationStatus
.
*/
public void setPrimaryRegion(String primaryRegion) {
this.primaryRegion = primaryRegion;
}
/**
* ReplicationStatus
.
* ReplicationStatus
.
*/
public String getPrimaryRegion() {
return this.primaryRegion;
}
/**
* ReplicationStatus
.
* ReplicationStatus
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeSecretResult withPrimaryRegion(String primaryRegion) {
setPrimaryRegion(primaryRegion);
return this;
}
/**
*
*
*
* @return A list of the replicas of this secret and their status: Failed
, which indicates that the replica was not created.
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
* InSync
, which indicates that the replica was created.
*
* Failed
, which indicates that the replica was not created.
*
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
*
* InSync
, which indicates that the replica was created.
*
* A list of the replicas of this secret and their status: *
*
* Failed
, which indicates that the replica was not created.
*
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
*
* InSync
, which indicates that the replica was created.
*
* Failed
, which indicates that the replica was not created.
*
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
*
* InSync
, which indicates that the replica was created.
*
* A list of the replicas of this secret and their status: *
*
* Failed
, which indicates that the replica was not created.
*
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
*
* InSync
, which indicates that the replica was created.
*
* NOTE: This method appends the values to the existing list (if any). Use * {@link #setReplicationStatus(java.util.Collection)} or {@link #withReplicationStatus(java.util.Collection)} if * you want to override the existing values. *
* * @param replicationStatus * A list of the replicas of this secret and their status: *
* Failed
, which indicates that the replica was not created.
*
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
*
* InSync
, which indicates that the replica was created.
*
* A list of the replicas of this secret and their status: *
*
* Failed
, which indicates that the replica was not created.
*
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
*
* InSync
, which indicates that the replica was created.
*
* Failed
, which indicates that the replica was not created.
*
* InProgress
, which indicates that Secrets Manager is in the process of creating the replica.
*
* InSync
, which indicates that the replica was created.
*