[][src]Trait rusoto_core::param::ServiceParams

pub trait ServiceParams {
    fn put<T: ToParam>(&mut self, key: &str, val: T);
fn put_key(&mut self, key: &str); }

Key:value pair for an service parameter.

Required methods

fn put<T: ToParam>(&mut self, key: &str, val: T)

Add a new paramater with a key and val

  • key - The key of the parameter to add.
  • val - The value of the paramater to add.

fn put_key(&mut self, key: &str)

Add a new paramater with a key

Loading content...

Implementors

impl ServiceParams for Params[src]

Loading content...