[][src]Struct germinate::awsssm::AwsSsmLoader

pub struct AwsSsmLoader { /* fields omitted */ }

This type provides functionality for loading values from AWS Systems Manager Parameter Store

Implementations

impl AwsSsmLoader[src]

pub fn new() -> Self[src]

Creates a new AwsSsmLoader with the default region

pub fn with_client(client: SsmClient) -> Self[src]

Creates a new AwsSsmLoader with the provided SsmClient

Trait Implementations

impl ValueLoader for AwsSsmLoader[src]

fn load<'life0, 'life1, 'async_trait>(
    &'life0 self,
    key: &'life1 String
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

Loads a value from the Parameter Store and returns it as a String

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.