Interface CfnMissionProfileProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMissionProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:17.960Z") @Stability(Stable) public interface CfnMissionProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnMissionProfile.

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.*;
 CfnMissionProfileProps cfnMissionProfileProps = CfnMissionProfileProps.builder()
         .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)
         .streamsKmsKey(StreamsKmsKeyProperty.builder()
                 .kmsAliasArn("kmsAliasArn")
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .streamsKmsRole("streamsKmsRole")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: