interface StreamsKmsKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnMissionProfilePropsMixin.StreamsKmsKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnMissionProfilePropsMixin_StreamsKmsKeyProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnMissionProfilePropsMixin.StreamsKmsKeyProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnMissionProfilePropsMixin.StreamsKmsKeyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnMissionProfilePropsMixin » StreamsKmsKeyProperty |
KMS key info.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as groundstation_mixins } from '@aws-cdk/mixins-preview/aws-groundstation';
const streamsKmsKeyProperty: groundstation_mixins.CfnMissionProfilePropsMixin.StreamsKmsKeyProperty = {
kmsAliasArn: 'kmsAliasArn',
kmsAliasName: 'kmsAliasName',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | KMS Alias Arn. |
| kms | string | KMS Alias Name. |
| kms | string | KMS Key Arn. |
kmsAliasArn?
Type:
string
(optional)
KMS Alias Arn.
kmsAliasName?
Type:
string
(optional)
KMS Alias Name.
kmsKeyArn?
Type:
string
(optional)
KMS Key Arn.

.NET
Go
Java
Python
TypeScript