Struct rusoto_organizations::DisablePolicyTypeRequest[][src]

pub struct DisablePolicyTypeRequest {
    pub policy_type: String,
    pub root_id: String,
}

Fields

The policy type that you want to disable in this root.

The unique identifier (ID) of the root in which you want to disable a policy type. You can get the ID from the ListRoots operation.

The regex pattern for a root ID string requires "r-" followed by from 4 to 32 lower-case letters or digits.

Trait Implementations

impl Default for DisablePolicyTypeRequest
[src]

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

impl Debug for DisablePolicyTypeRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DisablePolicyTypeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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