[][src]Struct rusoto_apigateway::GetSdkRequest

pub struct GetSdkRequest {
    pub parameters: Option<HashMap<String, String>>,
    pub rest_api_id: String,
    pub sdk_type: String,
    pub stage_name: String,
}

Request a new generated client SDK for a RestApi and Stage.

Fields

parameters: Option<HashMap<String, String>>

A string-to-string key-value map of query parameters sdkType-dependent properties of the SDK. For sdkType of objectivec or swift, a parameter named classPrefix is required. For sdkType of android, parameters named groupId, artifactId, artifactVersion, and invokerPackage are required. For sdkType of java, parameters named serviceName and javaPackageName are required.

rest_api_id: String

[Required] The string identifier of the associated RestApi.

sdk_type: String

[Required] The language for the generated SDK. Currently java, javascript, android, objectivec (for iOS), swift (for iOS), and ruby are supported.

stage_name: String

[Required] The name of the Stage that the SDK will use.

Trait Implementations

impl PartialEq<GetSdkRequest> for GetSdkRequest[src]

impl Default for GetSdkRequest[src]

impl Clone for GetSdkRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetSdkRequest[src]

impl Serialize for GetSdkRequest[src]

Auto Trait Implementations

impl Send for GetSdkRequest

impl Sync for GetSdkRequest

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self