Class MissionProfileReference
A reference to a MissionProfile resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.GroundStation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MissionProfileReference : IMissionProfileReference
Syntax (vb)
Public Class MissionProfileReference Implements IMissionProfileReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GroundStation;
var missionProfileReference = new MissionProfileReference {
MissionProfileArn = "missionProfileArn",
MissionProfileId = "missionProfileId"
};
Synopsis
Constructors
MissionProfileReference() | A reference to a MissionProfile resource. |
Properties
MissionProfileArn | The Arn of the MissionProfile resource. |
MissionProfileId | The Id of the MissionProfile resource. |
Constructors
MissionProfileReference()
A reference to a MissionProfile resource.
public MissionProfileReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GroundStation;
var missionProfileReference = new MissionProfileReference {
MissionProfileArn = "missionProfileArn",
MissionProfileId = "missionProfileId"
};
Properties
MissionProfileArn
The Arn of the MissionProfile resource.
public string MissionProfileArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
MissionProfileId
The Id of the MissionProfile resource.
public string MissionProfileId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated