@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-28T21:34:15.597Z") public class CfnMissionProfile extends CfnResource implements IInspectable
Mission profiles specify parameters and provide references to config objects to define how Ground Station lists and executes contacts.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.groundstation.*; CfnMissionProfile cfnMissionProfile = CfnMissionProfile.Builder.create(this, "MyCfnMissionProfile") .dataflowEdges(List.of(DataflowEdgeProperty.builder() .destination("destination") .source("source") .build())) .minimumViableContactDurationSeconds(123) .name("name") .trackingConfigArn("trackingConfigArn") // the properties below are optional .contactPostPassDurationSeconds(123) .contactPrePassDurationSeconds(123) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Class and Description |
---|---|
static class |
CfnMissionProfile.Builder
A fluent builder for
CfnMissionProfile . |
static interface |
CfnMissionProfile.DataflowEdgeProperty
A dataflow edge defines from where and to where data will flow during a contact.
|
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
IConstruct.Jsii$Default
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
Modifier | Constructor and Description |
---|---|
|
CfnMissionProfile(Construct scope,
java.lang.String id,
CfnMissionProfileProps props)
Create a new `AWS::GroundStation::MissionProfile`.
|
protected |
CfnMissionProfile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnMissionProfile(software.amazon.jsii.JsiiObjectRef objRef) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAttrArn()
The ARN of the mission profile, such as `arn:aws:groundstation:us-east-2:1234567890:mission-profile/9940bf3b-d2ba-427e-9906-842b5e5d2296` .
|
java.lang.String |
getAttrId()
The ID of the mission profile, such as `9940bf3b-d2ba-427e-9906-842b5e5d2296` .
|
java.lang.String |
getAttrRegion()
The region of the mission profile.
|
protected java.util.Map<java.lang.String,java.lang.Object> |
getCfnProperties() |
java.lang.Number |
getContactPostPassDurationSeconds()
Amount of time in seconds after a contact ends that you’d like to receive a CloudWatch Event indicating the pass has finished.
|
java.lang.Number |
getContactPrePassDurationSeconds()
Amount of time in seconds prior to contact start that you'd like to receive a CloudWatch Event indicating an upcoming pass.
|
java.lang.Object |
getDataflowEdges()
A list containing lists of config ARNs.
|
java.lang.Number |
getMinimumViableContactDurationSeconds()
Minimum length of a contact in seconds that Ground Station will return when listing contacts.
|
java.lang.String |
getName()
The name of the mission profile.
|
TagManager |
getTags()
Tags assigned to the mission profile.
|
java.lang.String |
getTrackingConfigArn()
The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected java.util.Map<java.lang.String,java.lang.Object> |
renderProperties(java.util.Map<java.lang.String,java.lang.Object> props) |
void |
setContactPostPassDurationSeconds(java.lang.Number value)
Amount of time in seconds after a contact ends that you’d like to receive a CloudWatch Event indicating the pass has finished.
|
void |
setContactPrePassDurationSeconds(java.lang.Number value)
Amount of time in seconds prior to contact start that you'd like to receive a CloudWatch Event indicating an upcoming pass.
|
void |
setDataflowEdges(IResolvable value)
A list containing lists of config ARNs.
|
void |
setDataflowEdges(java.util.List<java.lang.Object> value)
A list containing lists of config ARNs.
|
void |
setMinimumViableContactDurationSeconds(java.lang.Number value)
Minimum length of a contact in seconds that Ground Station will return when listing contacts.
|
void |
setName(java.lang.String value)
The name of the mission profile.
|
void |
setTrackingConfigArn(java.lang.String value)
The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
getRef
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
public static final java.lang.String CFN_RESOURCE_TYPE_NAME
protected CfnMissionProfile(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnMissionProfile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
public CfnMissionProfile(Construct scope, java.lang.String id, CfnMissionProfileProps props)
scope
- - scope in which this resource is defined. This parameter is required.id
- - scoped id of the resource. This parameter is required.props
- - resource properties. This parameter is required.public void inspect(TreeInspector inspector)
inspect
in interface IInspectable
inspector
- - tree inspector to collect and process attributes. This parameter is required.protected java.util.Map<java.lang.String,java.lang.Object> renderProperties(java.util.Map<java.lang.String,java.lang.Object> props)
renderProperties
in class CfnResource
props
- This parameter is required.public java.lang.String getAttrArn()
public java.lang.String getAttrId()
public java.lang.String getAttrRegion()
protected java.util.Map<java.lang.String,java.lang.Object> getCfnProperties()
getCfnProperties
in class CfnResource
public TagManager getTags()
public java.lang.Object getDataflowEdges()
Each list of config ARNs is an edge, with a "from" config and a "to" config.
public void setDataflowEdges(IResolvable value)
Each list of config ARNs is an edge, with a "from" config and a "to" config.
public void setDataflowEdges(java.util.List<java.lang.Object> value)
Each list of config ARNs is an edge, with a "from" config and a "to" config.
public java.lang.Number getMinimumViableContactDurationSeconds()
Ground Station will not return contacts shorter than this duration.
public void setMinimumViableContactDurationSeconds(java.lang.Number value)
Ground Station will not return contacts shorter than this duration.
public java.lang.String getName()
public void setName(java.lang.String value)
public java.lang.String getTrackingConfigArn()
public void setTrackingConfigArn(java.lang.String value)
public java.lang.Number getContactPostPassDurationSeconds()
For more information on CloudWatch Events, see the What Is CloudWatch Events?
public void setContactPostPassDurationSeconds(java.lang.Number value)
For more information on CloudWatch Events, see the What Is CloudWatch Events?
public java.lang.Number getContactPrePassDurationSeconds()
For more information on CloudWatch Events, see the What Is CloudWatch Events?
public void setContactPrePassDurationSeconds(java.lang.Number value)
For more information on CloudWatch Events, see the What Is CloudWatch Events?