Struct rusoto_secretsmanager::DeleteSecretRequest[][src]

pub struct DeleteSecretRequest {
    pub recovery_window_in_days: Option<i64>,
    pub secret_id: String,
}

Fields

(Optional) Specifies the number of days that AWS Secrets Manager waits before it can delete the secret.

This value can range from 7 to 30 days. The default value is 30.

Specifies the secret that you want to delete. You can specify either the Amazon Resource Name (ARN) or the friendly name of the secret.

Trait Implementations

impl Default for DeleteSecretRequest
[src]

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

impl Debug for DeleteSecretRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteSecretRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteSecretRequest
[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