[][src]Struct rusoto_groundstation::ConfigTypeData

pub struct ConfigTypeData {
    pub antenna_downlink_config: Option<AntennaDownlinkConfig>,
    pub antenna_downlink_demod_decode_config: Option<AntennaDownlinkDemodDecodeConfig>,
    pub antenna_uplink_config: Option<AntennaUplinkConfig>,
    pub dataflow_endpoint_config: Option<DataflowEndpointConfig>,
    pub tracking_config: Option<TrackingConfig>,
    pub uplink_echo_config: Option<UplinkEchoConfig>,
}

Object containing the parameters of a Config.

See the subtype definitions for what each type of Config contains.

Fields

antenna_downlink_config: Option<AntennaDownlinkConfig>

Information about how AWS Ground Station should configure an antenna for downlink during a contact.

antenna_downlink_demod_decode_config: Option<AntennaDownlinkDemodDecodeConfig>

Information about how AWS Ground Station should configure an antenna for downlink demod decode during a contact.

antenna_uplink_config: Option<AntennaUplinkConfig>

Information about how AWS Ground Station should configure an antenna for uplink during a contact.

dataflow_endpoint_config: Option<DataflowEndpointConfig>

Information about the dataflow endpoint Config.

tracking_config: Option<TrackingConfig>

Object that determines whether tracking should be used during a contact executed with this Config in the mission profile.

uplink_echo_config: Option<UplinkEchoConfig>

Information about an uplink echo Config.

Parameters from the AntennaUplinkConfig, corresponding to the specified AntennaUplinkConfigArn, are used when this UplinkEchoConfig is used in a contact.

Trait Implementations

impl Clone for ConfigTypeData[src]

impl Debug for ConfigTypeData[src]

impl Default for ConfigTypeData[src]

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

impl PartialEq<ConfigTypeData> for ConfigTypeData[src]

impl Serialize for ConfigTypeData[src]

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