Struct rusoto_secretsmanager::CancelRotateSecretResponse[][src]

pub struct CancelRotateSecretResponse {
    pub arn: Option<String>,
    pub name: Option<String>,
    pub version_id: Option<String>,
}

Fields

The ARN of the secret for which rotation was canceled.

The friendly name of the secret for which rotation was canceled.

The unique identifier of the version of the secret that was created during the rotation. This version might not be complete, and should be evaluated for possible deletion. At the very least, you should remove the VersionStage value AWSPENDING to enable this version to be deleted. Failing to clean up a cancelled rotation can block you from successfully starting future rotations.

Trait Implementations

impl Default for CancelRotateSecretResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for CancelRotateSecretResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for CancelRotateSecretResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CancelRotateSecretResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations