interface CfnPreferencesMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMGuiConnect.CfnPreferencesMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmguiconnect#CfnPreferencesMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmguiconnect.CfnPreferencesMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssmguiconnect.CfnPreferencesMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmguiconnect » 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 { aws_ssmguiconnect as ssmguiconnect } from '@aws-cdk/cfn-property-mixins';
const cfnPreferencesMixinProps: ssmguiconnect.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