[][src]Struct aws_iam::model::builder::PolicyBuilder

pub struct PolicyBuilder { /* fields omitted */ }

The top-level Policy builder.

Methods

impl PolicyBuilder[src]

pub fn new() -> Self[src]

Create a new, empty, policy builder

pub fn version(&mut self, version: Version) -> &mut Self[src]

Set the version of this policy.

pub fn default_version(&mut self) -> &mut Self[src]

Use the IAM default for the version of this policy

pub fn named(&mut self, id: &str) -> &mut Self[src]

Set the id of this policy

pub fn auto_named(&mut self) -> &mut Self[src]

Set the id of this policy to a randomly generate value.

pub fn evaluate_statement(
    &mut self,
    statement: &mut StatementBuilder
) -> &mut Self
[src]

Add a statement to this policy.

pub fn evaluate_statements(
    &mut self,
    statements: &mut Vec<StatementBuilder>
) -> &mut Self
[src]

Add a list of statements to this policy.

Trait Implementations

impl<'_> From<&'_ mut PolicyBuilder> for Policy[src]

impl Default for PolicyBuilder[src]

impl Debug for PolicyBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,