[][src]Struct rusoto_sms::CreateAppRequest

pub struct CreateAppRequest {
    pub client_token: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub role_name: Option<String>,
    pub server_groups: Option<Vec<ServerGroup>>,
    pub tags: Option<Vec<Tag>>,
}

Fields

client_token: Option<String>

A unique, case-sensitive identifier you provide to ensure idempotency of application creation.

description: Option<String>

Description of the new application

name: Option<String>

Name of the new application.

role_name: Option<String>

Name of service role in customer's account to be used by AWS SMS.

server_groups: Option<Vec<ServerGroup>>

List of server groups to include in the application.

tags: Option<Vec<Tag>>

List of tags to be associated with the application.

Trait Implementations

impl Clone for CreateAppRequest[src]

impl Debug for CreateAppRequest[src]

impl Default for CreateAppRequest[src]

impl PartialEq<CreateAppRequest> for CreateAppRequest[src]

impl Serialize for CreateAppRequest[src]

impl StructuralPartialEq for CreateAppRequest[src]

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> Instrument for T[src]

impl<T> Instrument 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.