You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GroundStation::Types::CreateMissionProfileRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateMissionProfileRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  contact_post_pass_duration_seconds: 1,
  contact_pre_pass_duration_seconds: 1,
  dataflow_edges: [ # required
    ["ConfigArn"],
  ],
  minimum_viable_contact_duration_seconds: 1, # required
  name: "SafeName", # required
  tags: {
    "String" => "String",
  },
  tracking_config_arn: "ConfigArn", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#contact_post_pass_duration_secondsInteger

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

Returns:

  • (Integer)

    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_secondsInteger

Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

Returns:

  • (Integer)

    Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass.

#dataflow_edgesArray<Array<String>>

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

Returns:

  • (Array<Array<String>>)

    A list of lists of ARNs.

#minimum_viable_contact_duration_secondsInteger

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.

Returns:

  • (Integer)

    Smallest amount of time in seconds that you’d like to see for an available contact.

#nameString

Name of a mission profile.

Returns:

  • (String)

    Name of a mission profile.

#tagsHash<String,String>

Tags assigned to a mission profile.

Returns:

  • (Hash<String,String>)

    Tags assigned to a mission profile.

#tracking_config_arnString

ARN of a tracking Config.

Returns:

  • (String)

    ARN of a tracking Config.