interface StreamsKmsKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnMissionProfilePropsMixin.StreamsKmsKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnMissionProfilePropsMixin_StreamsKmsKeyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnMissionProfilePropsMixin.StreamsKmsKeyProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnMissionProfilePropsMixin.StreamsKmsKeyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » 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 { aws_groundstation as groundstation } from '@aws-cdk/cfn-property-mixins';
const streamsKmsKeyProperty: groundstation.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