interface StreamsKmsKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnMissionProfile.StreamsKmsKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnMissionProfile_StreamsKmsKeyProperty |
Java | software.amazon.awscdk.services.groundstation.CfnMissionProfile.StreamsKmsKeyProperty |
Python | aws_cdk.aws_groundstation.CfnMissionProfile.StreamsKmsKeyProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnMissionProfile » 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 { aws_groundstation as groundstation } from 'aws-cdk-lib';
const streamsKmsKeyProperty: groundstation.CfnMissionProfile.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