[][src]Struct rusoto_groundstation::UpdateMissionProfileRequest

pub struct UpdateMissionProfileRequest {
    pub contact_post_pass_duration_seconds: Option<i64>,
    pub contact_pre_pass_duration_seconds: Option<i64>,
    pub dataflow_edges: Option<Vec<Vec<String>>>,
    pub minimum_viable_contact_duration_seconds: Option<i64>,
    pub mission_profile_id: String,
    pub name: Option<String>,
    pub tracking_config_arn: Option<String>,
}

Fields

contact_post_pass_duration_seconds: Option<i64>

Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

contact_pre_pass_duration_seconds: Option<i64>

Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has finished.

dataflow_edges: Option<Vec<Vec<String>>>

A list of lists of ARNs. Each list of ARNs is an edge, with a from Config and a to Config.

minimum_viable_contact_duration_seconds: Option<i64>

Smallest amount of time in seconds that you’d like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.

mission_profile_id: String

UUID of a mission profile.

name: Option<String>

Name of a mission profile.

tracking_config_arn: Option<String>

ARN of a tracking Config.

Trait Implementations

impl Clone for UpdateMissionProfileRequest[src]

impl Debug for UpdateMissionProfileRequest[src]

impl Default for UpdateMissionProfileRequest[src]

impl PartialEq<UpdateMissionProfileRequest> for UpdateMissionProfileRequest[src]

impl Serialize for UpdateMissionProfileRequest[src]

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