Struct rusoto_iot::GetPolicyResponse[][src]

pub struct GetPolicyResponse {
    pub creation_date: Option<f64>,
    pub default_version_id: Option<String>,
    pub generation_id: Option<String>,
    pub last_modified_date: Option<f64>,
    pub policy_arn: Option<String>,
    pub policy_document: Option<String>,
    pub policy_name: Option<String>,
}

The output from the GetPolicy operation.

Fields

The default policy version ID.

The policy ARN.

The JSON document that describes the policy.

The policy name.

Trait Implementations

impl Default for GetPolicyResponse
[src]

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

impl Debug for GetPolicyResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetPolicyResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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