[][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 Clone for GetSdkRequest[src]

impl Debug for GetSdkRequest[src]

impl Default for GetSdkRequest[src]

impl PartialEq<GetSdkRequest> for GetSdkRequest[src]

impl Serialize for GetSdkRequest[src]

impl StructuralPartialEq for GetSdkRequest[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, 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> 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.