Struct rusoto_iam::DeletePolicyVersionRequest[][src]

pub struct DeletePolicyVersionRequest {
    pub policy_arn: String,
    pub version_id: String,
}

Fields

The Amazon Resource Name (ARN) of the IAM policy from which you want to delete a version.

For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.

The policy version to delete.

This parameter allows (per its regex pattern) a string of characters that consists of the lowercase letter 'v' followed by one or two digits, and optionally followed by a period '.' and a string of letters and digits.

For more information about managed policy versions, see Versioning for Managed Policies in the IAM User Guide.

Trait Implementations

impl Default for DeletePolicyVersionRequest
[src]

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

impl Debug for DeletePolicyVersionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeletePolicyVersionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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