[][src]Struct rusoto_groundstation::CreateMissionProfileRequest

pub struct CreateMissionProfileRequest {
    pub contact_post_pass_duration_seconds: Option<i64>,
    pub contact_pre_pass_duration_seconds: Option<i64>,
    pub dataflow_edges: Vec<Vec<String>>,
    pub minimum_viable_contact_duration_seconds: i64,
    pub name: String,
    pub tags: Option<HashMap<String, String>>,
    pub tracking_config_arn: 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 prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

dataflow_edges: 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: 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.

name: String

Name of a mission profile.

tags: Option<HashMap<String, String>>

Tags assigned to a mission profile.

tracking_config_arn: String

ARN of a tracking Config.

Trait Implementations

impl Clone for CreateMissionProfileRequest[src]

impl Debug for CreateMissionProfileRequest[src]

impl Default for CreateMissionProfileRequest[src]

impl PartialEq<CreateMissionProfileRequest> for CreateMissionProfileRequest[src]

impl Serialize for CreateMissionProfileRequest[src]

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