Struct rusoto_lambda::GetPolicyResponse[][src]

pub struct GetPolicyResponse {
    pub policy: Option<String>,
    pub revision_id: Option<String>,
}

Fields

The resource policy associated with the specified function. The response returns the same as a string using a backslash ("\") as an escape character in the JSON.

Represents the latest updated revision of the function or alias.

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