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 whitespaces

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]

[src]

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

impl Debug for CreatePolicyVersionRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreatePolicyVersionRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations