[][src]Struct rusoto_storagegateway::GatewayInfo

pub struct GatewayInfo {
    pub ec_2_instance_id: Option<String>,
    pub ec_2_instance_region: Option<String>,
    pub gateway_arn: Option<String>,
    pub gateway_id: Option<String>,
    pub gateway_name: Option<String>,
    pub gateway_operational_state: Option<String>,
    pub gateway_type: Option<String>,
}

Describes a gateway object.

Fields

ec_2_instance_id: Option<String>

The ID of the Amazon EC2 instance that was used to launch the gateway.

ec_2_instance_region: Option<String>

The AWS Region where the Amazon EC2 instance is located.

gateway_arn: Option<String>

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and AWS Region.

gateway_id: Option<String>

The unique identifier assigned to your gateway during activation. This ID becomes part of the gateway Amazon Resource Name (ARN), which you use as input for other operations.

gateway_name: Option<String>

The name of the gateway.

gateway_operational_state: Option<String>

The state of the gateway.

Valid Values: DISABLED | ACTIVE

gateway_type: Option<String>

The type of the gateway.

Trait Implementations

impl Clone for GatewayInfo[src]

impl Debug for GatewayInfo[src]

impl Default for GatewayInfo[src]

impl<'de> Deserialize<'de> for GatewayInfo[src]

impl PartialEq<GatewayInfo> for GatewayInfo[src]

impl StructuralPartialEq for GatewayInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.