Interface CancelRotateSecretResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<CancelRotateSecretResponse.Builder,CancelRotateSecretResponse>
,SdkBuilder<CancelRotateSecretResponse.Builder,CancelRotateSecretResponse>
,SdkPojo
,SdkResponse.Builder
,SecretsManagerResponse.Builder
- Enclosing class:
- CancelRotateSecretResponse
public static interface CancelRotateSecretResponse.Builder extends SecretsManagerResponse.Builder, SdkPojo, CopyableBuilder<CancelRotateSecretResponse.Builder,CancelRotateSecretResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CancelRotateSecretResponse.Builder
arn(String arn)
The ARN of the secret.CancelRotateSecretResponse.Builder
name(String name)
The name of the secret.CancelRotateSecretResponse.Builder
versionId(String versionId)
The unique identifier of the version of the secret created during the rotation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.secretsmanager.model.SecretsManagerResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
arn
CancelRotateSecretResponse.Builder arn(String arn)
The ARN of the secret.
- Parameters:
arn
- The ARN of the secret.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CancelRotateSecretResponse.Builder name(String name)
The name of the secret.
- Parameters:
name
- The name of the secret.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionId
CancelRotateSecretResponse.Builder versionId(String versionId)
The unique identifier of the version of the secret created during the rotation. This version might not be complete, and should be evaluated for possible deletion. We recommend that you remove the
VersionStage
valueAWSPENDING
from this version so that Secrets Manager can delete it. Failing to clean up a cancelled rotation can block you from starting future rotations.- Parameters:
versionId
- The unique identifier of the version of the secret created during the rotation. This version might not be complete, and should be evaluated for possible deletion. We recommend that you remove theVersionStage
valueAWSPENDING
from this version so that Secrets Manager can delete it. Failing to clean up a cancelled rotation can block you from starting future rotations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-