We recommend new projects start with resources from the AWS provider.
aws-native.groundstation.MissionProfile
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
AWS Ground Station Mission Profile resource type for CloudFormation.
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myMissionProfile = new AwsNative.GroundStation.MissionProfile("myMissionProfile", new()
{
Name = "My Mission Profile",
ContactPrePassDurationSeconds = 120,
ContactPostPassDurationSeconds = 180,
MinimumViableContactDurationSeconds = 300,
TrackingConfigArn = "arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000",
DataflowEdges = new[]
{
new AwsNative.GroundStation.Inputs.MissionProfileDataflowEdgeArgs
{
Source = "arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111",
Destination = "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222",
},
new AwsNative.GroundStation.Inputs.MissionProfileDataflowEdgeArgs
{
Source = "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333",
Destination = "arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/groundstation"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := groundstation.NewMissionProfile(ctx, "myMissionProfile", &groundstation.MissionProfileArgs{
Name: pulumi.String("My Mission Profile"),
ContactPrePassDurationSeconds: pulumi.Int(120),
ContactPostPassDurationSeconds: pulumi.Int(180),
MinimumViableContactDurationSeconds: pulumi.Int(300),
TrackingConfigArn: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000"),
DataflowEdges: groundstation.MissionProfileDataflowEdgeArray{
&groundstation.MissionProfileDataflowEdgeArgs{
Source: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111"),
Destination: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222"),
},
&groundstation.MissionProfileDataflowEdgeArgs{
Source: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333"),
Destination: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
my_mission_profile = aws_native.groundstation.MissionProfile("myMissionProfile",
name="My Mission Profile",
contact_pre_pass_duration_seconds=120,
contact_post_pass_duration_seconds=180,
minimum_viable_contact_duration_seconds=300,
tracking_config_arn="arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000",
dataflow_edges=[
{
"source": "arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111",
"destination": "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222",
},
{
"source": "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333",
"destination": "arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444",
},
])
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myMissionProfile = new aws_native.groundstation.MissionProfile("myMissionProfile", {
name: "My Mission Profile",
contactPrePassDurationSeconds: 120,
contactPostPassDurationSeconds: 180,
minimumViableContactDurationSeconds: 300,
trackingConfigArn: "arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000",
dataflowEdges: [
{
source: "arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111",
destination: "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222",
},
{
source: "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333",
destination: "arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444",
},
],
});
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myMissionProfile = new AwsNative.GroundStation.MissionProfile("myMissionProfile", new()
{
Name = "Mission Profile",
ContactPrePassDurationSeconds = 120,
ContactPostPassDurationSeconds = 180,
MinimumViableContactDurationSeconds = 300,
TrackingConfigArn = "arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000",
DataflowEdges = new[]
{
new AwsNative.GroundStation.Inputs.MissionProfileDataflowEdgeArgs
{
Source = "arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111",
Destination = "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222",
},
new AwsNative.GroundStation.Inputs.MissionProfileDataflowEdgeArgs
{
Source = "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333",
Destination = "arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/groundstation"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := groundstation.NewMissionProfile(ctx, "myMissionProfile", &groundstation.MissionProfileArgs{
Name: pulumi.String("Mission Profile"),
ContactPrePassDurationSeconds: pulumi.Int(120),
ContactPostPassDurationSeconds: pulumi.Int(180),
MinimumViableContactDurationSeconds: pulumi.Int(300),
TrackingConfigArn: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000"),
DataflowEdges: groundstation.MissionProfileDataflowEdgeArray{
&groundstation.MissionProfileDataflowEdgeArgs{
Source: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111"),
Destination: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222"),
},
&groundstation.MissionProfileDataflowEdgeArgs{
Source: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333"),
Destination: pulumi.String("arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
my_mission_profile = aws_native.groundstation.MissionProfile("myMissionProfile",
name="Mission Profile",
contact_pre_pass_duration_seconds=120,
contact_post_pass_duration_seconds=180,
minimum_viable_contact_duration_seconds=300,
tracking_config_arn="arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000",
dataflow_edges=[
{
"source": "arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111",
"destination": "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222",
},
{
"source": "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333",
"destination": "arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444",
},
])
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myMissionProfile = new aws_native.groundstation.MissionProfile("myMissionProfile", {
name: "Mission Profile",
contactPrePassDurationSeconds: 120,
contactPostPassDurationSeconds: 180,
minimumViableContactDurationSeconds: 300,
trackingConfigArn: "arn:aws:groundstation:us-east-2:1234567890:config/tracking/00000000-0000-0000-0000-000000000000",
dataflowEdges: [
{
source: "arn:aws:groundstation:us-east-2:1234567890:config/antenna-downlink/11111111-1111-1111-1111-111111111111",
destination: "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/22222222-2222-2222-2222-222222222222",
},
{
source: "arn:aws:groundstation:us-east-2:1234567890:config/dataflow-endpoint/33333333-3333-3333-3333-333333333333",
destination: "arn:aws:groundstation:us-east-2:1234567890:config/antenna-uplink/44444444-4444-4444-4444-444444444444",
},
],
});
Coming soon!
Create MissionProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MissionProfile(name: string, args: MissionProfileArgs, opts?: CustomResourceOptions);
@overload
def MissionProfile(resource_name: str,
args: MissionProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MissionProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
dataflow_edges: Optional[Sequence[MissionProfileDataflowEdgeArgs]] = None,
minimum_viable_contact_duration_seconds: Optional[int] = None,
tracking_config_arn: Optional[str] = None,
contact_post_pass_duration_seconds: Optional[int] = None,
contact_pre_pass_duration_seconds: Optional[int] = None,
name: Optional[str] = None,
streams_kms_key: Optional[MissionProfileStreamsKmsKeyArgs] = None,
streams_kms_role: Optional[str] = None,
tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
func NewMissionProfile(ctx *Context, name string, args MissionProfileArgs, opts ...ResourceOption) (*MissionProfile, error)
public MissionProfile(string name, MissionProfileArgs args, CustomResourceOptions? opts = null)
public MissionProfile(String name, MissionProfileArgs args)
public MissionProfile(String name, MissionProfileArgs args, CustomResourceOptions options)
type: aws-native:groundstation:MissionProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MissionProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MissionProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MissionProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MissionProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MissionProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MissionProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The MissionProfile resource accepts the following input properties:
- Dataflow
Edges List<Pulumi.Aws Native. Ground Station. Inputs. Mission Profile Dataflow Edge> - A list containing lists of config ARNs. Each list of config ARNs is an edge, with a "from" config and a "to" config.
- Minimum
Viable intContact Duration Seconds - Visibilities with shorter duration than the specified minimum viable contact duration will be ignored when searching for available contacts.
- Tracking
Config stringArn - The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
- Contact
Post intPass Duration Seconds - Post-pass time needed after the contact.
- Contact
Pre intPass Duration Seconds - Pre-pass time needed before the contact.
- Name string
- A name used to identify a mission profile.
- Streams
Kms Pulumi.Key Aws Native. Ground Station. Inputs. Mission Profile Streams Kms Key - The ARN of a KMS Key used for encrypting data during transmission from the source to destination locations.
- Streams
Kms stringRole - The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
- List<Pulumi.
Aws Native. Inputs. Tag> - Tags assigned to the mission profile.
- Dataflow
Edges []MissionProfile Dataflow Edge Args - A list containing lists of config ARNs. Each list of config ARNs is an edge, with a "from" config and a "to" config.
- Minimum
Viable intContact Duration Seconds - Visibilities with shorter duration than the specified minimum viable contact duration will be ignored when searching for available contacts.
- Tracking
Config stringArn - The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
- Contact
Post intPass Duration Seconds - Post-pass time needed after the contact.
- Contact
Pre intPass Duration Seconds - Pre-pass time needed before the contact.
- Name string
- A name used to identify a mission profile.
- Streams
Kms MissionKey Profile Streams Kms Key Args - The ARN of a KMS Key used for encrypting data during transmission from the source to destination locations.
- Streams
Kms stringRole - The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
- Tag
Args - Tags assigned to the mission profile.
- dataflow
Edges List<MissionProfile Dataflow Edge> - A list containing lists of config ARNs. Each list of config ARNs is an edge, with a "from" config and a "to" config.
- minimum
Viable IntegerContact Duration Seconds - Visibilities with shorter duration than the specified minimum viable contact duration will be ignored when searching for available contacts.
- tracking
Config StringArn - The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
- contact
Post IntegerPass Duration Seconds - Post-pass time needed after the contact.
- contact
Pre IntegerPass Duration Seconds - Pre-pass time needed before the contact.
- name String
- A name used to identify a mission profile.
- streams
Kms MissionKey Profile Streams Kms Key - The ARN of a KMS Key used for encrypting data during transmission from the source to destination locations.
- streams
Kms StringRole - The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
- List<Tag>
- Tags assigned to the mission profile.
- dataflow
Edges MissionProfile Dataflow Edge[] - A list containing lists of config ARNs. Each list of config ARNs is an edge, with a "from" config and a "to" config.
- minimum
Viable numberContact Duration Seconds - Visibilities with shorter duration than the specified minimum viable contact duration will be ignored when searching for available contacts.
- tracking
Config stringArn - The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
- contact
Post numberPass Duration Seconds - Post-pass time needed after the contact.
- contact
Pre numberPass Duration Seconds - Pre-pass time needed before the contact.
- name string
- A name used to identify a mission profile.
- streams
Kms MissionKey Profile Streams Kms Key - The ARN of a KMS Key used for encrypting data during transmission from the source to destination locations.
- streams
Kms stringRole - The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
- Tag[]
- Tags assigned to the mission profile.
- dataflow_
edges Sequence[MissionProfile Dataflow Edge Args] - A list containing lists of config ARNs. Each list of config ARNs is an edge, with a "from" config and a "to" config.
- minimum_
viable_ intcontact_ duration_ seconds - Visibilities with shorter duration than the specified minimum viable contact duration will be ignored when searching for available contacts.
- tracking_
config_ strarn - The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
- contact_
post_ intpass_ duration_ seconds - Post-pass time needed after the contact.
- contact_
pre_ intpass_ duration_ seconds - Pre-pass time needed before the contact.
- name str
- A name used to identify a mission profile.
- streams_
kms_ Missionkey Profile Streams Kms Key Args - The ARN of a KMS Key used for encrypting data during transmission from the source to destination locations.
- streams_
kms_ strrole - The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
- Sequence[Tag
Args] - Tags assigned to the mission profile.
- dataflow
Edges List<Property Map> - A list containing lists of config ARNs. Each list of config ARNs is an edge, with a "from" config and a "to" config.
- minimum
Viable NumberContact Duration Seconds - Visibilities with shorter duration than the specified minimum viable contact duration will be ignored when searching for available contacts.
- tracking
Config StringArn - The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
- contact
Post NumberPass Duration Seconds - Post-pass time needed after the contact.
- contact
Pre NumberPass Duration Seconds - Pre-pass time needed before the contact.
- name String
- A name used to identify a mission profile.
- streams
Kms Property MapKey - The ARN of a KMS Key used for encrypting data during transmission from the source to destination locations.
- streams
Kms StringRole - The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
- List<Property Map>
- Tags assigned to the mission profile.
Outputs
All input properties are implicitly available as output properties. Additionally, the MissionProfile resource produces the following output properties:
- Arn string
- The ARN of the mission profile, such as
arn:aws:groundstation:us-east-2:1234567890:mission-profile/9940bf3b-d2ba-427e-9906-842b5e5d2296
. - Aws
Id string - The ID of the mission profile, such as
9940bf3b-d2ba-427e-9906-842b5e5d2296
. - Id string
- The provider-assigned unique ID for this managed resource.
- Region string
- The region of the mission profile.
- Arn string
- The ARN of the mission profile, such as
arn:aws:groundstation:us-east-2:1234567890:mission-profile/9940bf3b-d2ba-427e-9906-842b5e5d2296
. - Aws
Id string - The ID of the mission profile, such as
9940bf3b-d2ba-427e-9906-842b5e5d2296
. - Id string
- The provider-assigned unique ID for this managed resource.
- Region string
- The region of the mission profile.
- arn String
- The ARN of the mission profile, such as
arn:aws:groundstation:us-east-2:1234567890:mission-profile/9940bf3b-d2ba-427e-9906-842b5e5d2296
. - aws
Id String - The ID of the mission profile, such as
9940bf3b-d2ba-427e-9906-842b5e5d2296
. - id String
- The provider-assigned unique ID for this managed resource.
- region String
- The region of the mission profile.
- arn string
- The ARN of the mission profile, such as
arn:aws:groundstation:us-east-2:1234567890:mission-profile/9940bf3b-d2ba-427e-9906-842b5e5d2296
. - aws
Id string - The ID of the mission profile, such as
9940bf3b-d2ba-427e-9906-842b5e5d2296
. - id string
- The provider-assigned unique ID for this managed resource.
- region string
- The region of the mission profile.
- arn str
- The ARN of the mission profile, such as
arn:aws:groundstation:us-east-2:1234567890:mission-profile/9940bf3b-d2ba-427e-9906-842b5e5d2296
. - aws_
id str - The ID of the mission profile, such as
9940bf3b-d2ba-427e-9906-842b5e5d2296
. - id str
- The provider-assigned unique ID for this managed resource.
- region str
- The region of the mission profile.
- arn String
- The ARN of the mission profile, such as
arn:aws:groundstation:us-east-2:1234567890:mission-profile/9940bf3b-d2ba-427e-9906-842b5e5d2296
. - aws
Id String - The ID of the mission profile, such as
9940bf3b-d2ba-427e-9906-842b5e5d2296
. - id String
- The provider-assigned unique ID for this managed resource.
- region String
- The region of the mission profile.
Supporting Types
MissionProfileDataflowEdge, MissionProfileDataflowEdgeArgs
- Destination string
- The ARN of the destination for this dataflow edge. For example, specify the ARN of a dataflow endpoint config for a downlink edge or an antenna uplink config for an uplink edge.
- Source string
- The ARN of the source for this dataflow edge. For example, specify the ARN of an antenna downlink config for a downlink edge or a dataflow endpoint config for an uplink edge.
- Destination string
- The ARN of the destination for this dataflow edge. For example, specify the ARN of a dataflow endpoint config for a downlink edge or an antenna uplink config for an uplink edge.
- Source string
- The ARN of the source for this dataflow edge. For example, specify the ARN of an antenna downlink config for a downlink edge or a dataflow endpoint config for an uplink edge.
- destination String
- The ARN of the destination for this dataflow edge. For example, specify the ARN of a dataflow endpoint config for a downlink edge or an antenna uplink config for an uplink edge.
- source String
- The ARN of the source for this dataflow edge. For example, specify the ARN of an antenna downlink config for a downlink edge or a dataflow endpoint config for an uplink edge.
- destination string
- The ARN of the destination for this dataflow edge. For example, specify the ARN of a dataflow endpoint config for a downlink edge or an antenna uplink config for an uplink edge.
- source string
- The ARN of the source for this dataflow edge. For example, specify the ARN of an antenna downlink config for a downlink edge or a dataflow endpoint config for an uplink edge.
- destination str
- The ARN of the destination for this dataflow edge. For example, specify the ARN of a dataflow endpoint config for a downlink edge or an antenna uplink config for an uplink edge.
- source str
- The ARN of the source for this dataflow edge. For example, specify the ARN of an antenna downlink config for a downlink edge or a dataflow endpoint config for an uplink edge.
- destination String
- The ARN of the destination for this dataflow edge. For example, specify the ARN of a dataflow endpoint config for a downlink edge or an antenna uplink config for an uplink edge.
- source String
- The ARN of the source for this dataflow edge. For example, specify the ARN of an antenna downlink config for a downlink edge or a dataflow endpoint config for an uplink edge.
MissionProfileStreamsKmsKey, MissionProfileStreamsKmsKeyArgs
- Kms
Alias stringArn - KMS Alias Arn.
- Kms
Key stringArn - KMS Key Arn.
- Kms
Alias stringArn - KMS Alias Arn.
- Kms
Key stringArn - KMS Key Arn.
- kms
Alias StringArn - KMS Alias Arn.
- kms
Key StringArn - KMS Key Arn.
- kms
Alias stringArn - KMS Alias Arn.
- kms
Key stringArn - KMS Key Arn.
- kms_
alias_ strarn - KMS Alias Arn.
- kms_
key_ strarn - KMS Key Arn.
- kms
Alias StringArn - KMS Alias Arn.
- kms
Key StringArn - KMS Key Arn.
Tag, TagArgs
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.