Struct rusoto_organizations::ListAWSServiceAccessForOrganizationResponse[][src]

pub struct ListAWSServiceAccessForOrganizationResponse {
    pub enabled_service_principals: Option<Vec<EnabledServicePrincipal>>,
    pub next_token: Option<String>,
}

Fields

A list of the service principals for the services that are enabled to integrate with your organization. Each principal is a structure that includes the name and the date that it was enabled for integration with AWS Organizations.

If present, this value indicates that there is more output available than is included in the current response. Use this value in the NextToken request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the NextToken response element comes back as null.

Trait Implementations

impl Default for ListAWSServiceAccessForOrganizationResponse
[src]

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

impl Debug for ListAWSServiceAccessForOrganizationResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListAWSServiceAccessForOrganizationResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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