interface MissionProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GroundStation.MissionProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgroundstation#MissionProfileReference |
Java | software.amazon.awscdk.interfaces.groundstation.MissionProfileReference |
Python | aws_cdk.interfaces.aws_groundstation.MissionProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_groundstation » MissionProfileReference |
A reference to a MissionProfile resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as interfaces_aws_groundstation } from 'aws-cdk-lib/interfaces';
const missionProfileReference: interfaces_aws_groundstation.MissionProfileReference = {
missionProfileArn: 'missionProfileArn',
missionProfileId: 'missionProfileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| mission | string | The Arn of the MissionProfile resource. |
| mission | string | The Id of the MissionProfile resource. |
missionProfileArn
Type:
string
The Arn of the MissionProfile resource.
missionProfileId
Type:
string
The Id of the MissionProfile resource.

.NET
Go
Java
Python
TypeScript