Interface CfnMissionProfileMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-27T13:12:15.383Z") @Stability(Stable) public interface CfnMissionProfileMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnMissionProfilePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.groundstation.*;
 CfnMissionProfileMixinProps cfnMissionProfileMixinProps = CfnMissionProfileMixinProps.builder()
         .contactPostPassDurationSeconds(123)
         .contactPrePassDurationSeconds(123)
         .dataflowEdges(List.of(DataflowEdgeProperty.builder()
                 .destination("destination")
                 .source("source")
                 .build()))
         .minimumViableContactDurationSeconds(123)
         .name("name")
         .streamsKmsKey(StreamsKmsKeyProperty.builder()
                 .kmsAliasArn("kmsAliasArn")
                 .kmsAliasName("kmsAliasName")
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .streamsKmsRole("streamsKmsRole")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .telemetrySinkConfigArn("telemetrySinkConfigArn")
         .trackingConfigArn("trackingConfigArn")
         .build();
 

See Also: