Struct rusoto_iot::CreatePolicyVersionRequest[][src]

pub struct CreatePolicyVersionRequest {
    pub policy_document: String,
    pub policy_name: String,
    pub set_as_default: Option<bool>,
}

The input for the CreatePolicyVersion operation.

Fields

The JSON document that describes the policy. Minimum length of 1. Maximum length of 2048, excluding whitespace.

The policy name.

Specifies whether the policy version is set as the default. When this parameter is true, the new policy version becomes the operative version (that is, the version that is in effect for the certificates to which the policy is attached).

Trait Implementations

impl Default for CreatePolicyVersionRequest
[src]

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

impl Debug for CreatePolicyVersionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreatePolicyVersionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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