Trait rusoto_core::param::ServiceParams [−][src]
pub trait ServiceParams {
fn put<T: ToParam>(&mut self, key: &str, val: T);
fn put_key(&mut self, key: &str);
}Expand description
Key:value pair for an service parameter.
Required methods
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.