#[non_exhaustive]pub struct UpdateSecretVersionStageInput { /* private fields */ }
Implementations
sourceimpl UpdateSecretVersionStageInput
impl UpdateSecretVersionStageInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSecretVersionStage, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSecretVersionStage, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSecretVersionStage
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateSecretVersionStageInput
.
sourceimpl UpdateSecretVersionStageInput
impl UpdateSecretVersionStageInput
sourcepub fn secret_id(&self) -> Option<&str>
pub fn secret_id(&self) -> Option<&str>
The ARN or the name of the secret with the version and staging labelsto modify.
For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.
sourcepub fn version_stage(&self) -> Option<&str>
pub fn version_stage(&self) -> Option<&str>
The staging label to add to this version.
sourcepub fn remove_from_version_id(&self) -> Option<&str>
pub fn remove_from_version_id(&self) -> Option<&str>
The ID of the version that the staging label is to be removed from. If the staging label you are trying to attach to one version is already attached to a different version, then you must include this parameter and specify the version that the label is to be removed from. If the label is attached and you either do not specify this parameter, or the version ID does not match, then the operation fails.
sourcepub fn move_to_version_id(&self) -> Option<&str>
pub fn move_to_version_id(&self) -> Option<&str>
The ID of the version to add the staging label to. To remove a label from a version, then do not specify this parameter.
If the staging label is already attached to a different version of the secret, then you must also specify the RemoveFromVersionId
parameter.
Trait Implementations
sourceimpl Clone for UpdateSecretVersionStageInput
impl Clone for UpdateSecretVersionStageInput
sourcefn clone(&self) -> UpdateSecretVersionStageInput
fn clone(&self) -> UpdateSecretVersionStageInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more