Struct rusoto_kms::ListKeyPoliciesResponse[][src]

pub struct ListKeyPoliciesResponse {
    pub next_marker: Option<String>,
    pub policy_names: Option<Vec<String>>,
    pub truncated: Option<bool>,
}

Fields

When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.

A list of key policy names. Currently, there is only one key policy per CMK and it is always named default.

A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.

Trait Implementations

impl Default for ListKeyPoliciesResponse
[src]

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

impl Debug for ListKeyPoliciesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListKeyPoliciesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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