Struct rusoto_serverlessrepo::ApplicationPolicyStatement[][src]

pub struct ApplicationPolicyStatement {
    pub actions: Vec<String>,
    pub principals: Vec<String>,
    pub statement_id: Option<String>,
}

Policy statement applied to the application.

Fields

A list of supported actions:

GetApplication

CreateCloudFormationChangeSet

ListApplicationVersions

SearchApplications

Deploy (Note: This action enables all other actions above.)

An AWS account ID, or * to make the application public.

A unique ID for the statement.

Trait Implementations

impl Default for ApplicationPolicyStatement
[src]

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

impl Debug for ApplicationPolicyStatement
[src]

Formats the value using the given formatter. Read more

impl Clone for ApplicationPolicyStatement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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