Struct rusoto_iot::GetPolicyVersionResponse [] [src]

pub struct GetPolicyVersionResponse {
    pub is_default_version: Option<bool>,
    pub policy_arn: Option<String>,
    pub policy_document: Option<String>,
    pub policy_name: Option<String>,
    pub policy_version_id: Option<String>,
}

The output from the GetPolicyVersion operation.

Fields

Specifies whether the policy version is the default.

The policy ARN.

The JSON document that describes the policy.

The policy name.

The policy version ID.

Trait Implementations

impl Default for GetPolicyVersionResponse
[src]

[src]

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

impl Debug for GetPolicyVersionResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetPolicyVersionResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations