Enum warheadhateus::Service [] [src]

pub enum Service {
    DynamoDB,
    EC2,
    IAM,
    S3,
    STS,
}

AWS Services

Variants

AWS DynamoDB (Managed NoSQL Database)

AWS EC2 (Virtual Servers in the Cloud)

AWS Identity and Account Management

AWS S3 (Scalable Storage in the Cloud)

AWS STS (Security Token Service)

Trait Implementations

impl Debug for Service
[src]

Formats the value using the given formatter.

impl PartialEq for Service
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for Service
[src]

Formats the value using the given formatter. Read more

impl FromStr for Service
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl<'a> Into<String> for &'a Service
[src]

Translates region enum into AWS format. EG: us-east-1

Performs the conversion.