Struct rusoto_organizations::EnabledServicePrincipal[][src]

pub struct EnabledServicePrincipal {
    pub date_enabled: Option<f64>,
    pub service_principal: Option<String>,
}

A structure that contains details of a service principal that is enabled to integrate with AWS Organizations.

Fields

The date that the service principal was enabled for integration with AWS Organizations.

The name of the service principal. This is typically in the form of a URL, such as: servicename.amazonaws.com.

Trait Implementations

impl Default for EnabledServicePrincipal
[src]

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

impl Debug for EnabledServicePrincipal
[src]

Formats the value using the given formatter. Read more

impl Clone for EnabledServicePrincipal
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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