interface CfnPreferencesMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMGuiConnect.Mixins.CfnPreferencesMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmguiconnect/mixins#CfnPreferencesMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ssmguiconnect.mixins.CfnPreferencesMixinProps |
Python | aws_cdk.mixins_preview.aws_ssmguiconnect.mixins.CfnPreferencesMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ssmguiconnect » mixins » CfnPreferencesMixinProps |
Properties for CfnPreferencesPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ssmguiconnect_mixins } from '@aws-cdk/mixins-preview/aws-ssmguiconnect';
const cfnPreferencesMixinProps: ssmguiconnect_mixins.CfnPreferencesMixinProps = {
connectionRecordingPreferences: {
kmsKeyArn: 'kmsKeyArn',
recordingDestinations: {
s3Buckets: [{
bucketName: 'bucketName',
bucketOwner: 'bucketOwner',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | IResolvable | Connection | The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region . |
connectionRecordingPreferences?
Type:
IResolvable | Connection
(optional)
The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region .
This includes details such as which S3 bucket recordings are stored in.

.NET
Go
Java
Python
TypeScript