Struct rusoto_organizations::PolicySummary [] [src]

pub struct PolicySummary {
    pub arn: Option<String>,
    pub aws_managed: Option<bool>,
    pub description: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub type_: Option<String>,
}

Contains information about a policy, but does not include the content. To see the content of a policy, see DescribePolicy.

Fields

The Amazon Resource Name (ARN) of the policy.

For more information about ARNs in Organizations, see ARN Formats Supported by Organizations in the AWS Organizations User Guide.

A boolean value that indicates whether the specified policy is an AWS managed policy. If true, then you can attach the policy to roots, OUs, or accounts, but you cannot edit it.

The description of the policy.

The unique identifier (ID) of the policy.

The regex pattern for a policy ID string requires "p-" followed by from 8 to 128 lower-case letters or digits.

The friendly name of the policy.

The regex pattern that is used to validate this parameter is a string of any of the characters in the ASCII character range.

The type of policy.

Trait Implementations

impl Default for PolicySummary
[src]

[src]

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

impl Debug for PolicySummary
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for PolicySummary
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for PolicySummary

impl Sync for PolicySummary