Interface PutSecretValueResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<PutSecretValueResponse.Builder,PutSecretValueResponse>,SdkBuilder<PutSecretValueResponse.Builder,PutSecretValueResponse>,SdkPojo,SdkResponse.Builder,SecretsManagerResponse.Builder
- Enclosing class:
- PutSecretValueResponse
public static interface PutSecretValueResponse.Builder extends SecretsManagerResponse.Builder, SdkPojo, CopyableBuilder<PutSecretValueResponse.Builder,PutSecretValueResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutSecretValueResponse.Builderarn(String arn)The ARN of the secret.PutSecretValueResponse.Buildername(String name)The name of the secret.PutSecretValueResponse.BuilderversionId(String versionId)The unique identifier of the version of the secret.PutSecretValueResponse.BuilderversionStages(String... versionStages)The list of staging labels that are currently attached to this version of the secret.PutSecretValueResponse.BuilderversionStages(Collection<String> versionStages)The list of staging labels that are currently attached to this version of the secret.-
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
PutSecretValueResponse.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
PutSecretValueResponse.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
PutSecretValueResponse.Builder versionId(String versionId)
The unique identifier of the version of the secret.
- Parameters:
versionId- The unique identifier of the version of the secret.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionStages
PutSecretValueResponse.Builder versionStages(Collection<String> versionStages)
The list of staging labels that are currently attached to this version of the secret. Secrets Manager uses staging labels to track a version as it progresses through the secret rotation process.
- Parameters:
versionStages- The list of staging labels that are currently attached to this version of the secret. Secrets Manager uses staging labels to track a version as it progresses through the secret rotation process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionStages
PutSecretValueResponse.Builder versionStages(String... versionStages)
The list of staging labels that are currently attached to this version of the secret. Secrets Manager uses staging labels to track a version as it progresses through the secret rotation process.
- Parameters:
versionStages- The list of staging labels that are currently attached to this version of the secret. Secrets Manager uses staging labels to track a version as it progresses through the secret rotation process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-