Show / Hide Table of Contents

Interface ICfnPreferencesProps

Properties for defining a CfnPreferences.

Namespace: Amazon.CDK.AWS.SSMGuiConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnPreferencesProps
Syntax (vb)
Public Interface ICfnPreferencesProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSMGuiConnect;

             var cfnPreferencesProps = new CfnPreferencesProps {
                 ConnectionRecordingPreferences = new ConnectionRecordingPreferencesProperty {
                     KmsKeyArn = "kmsKeyArn",
                     RecordingDestinations = new RecordingDestinationsProperty {
                         S3Buckets = new [] { new S3BucketProperty {
                             BucketName = "bucketName",
                             BucketOwner = "bucketOwner"
                         } }
                     }
                 }
             };

Synopsis

Properties

ConnectionRecordingPreferences

The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region .

Properties

ConnectionRecordingPreferences

The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region .

object? ConnectionRecordingPreferences { get; }
Property Value

object

Remarks

This includes details such as which S3 bucket recordings are stored in.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html#cfn-ssmguiconnect-preferences-connectionrecordingpreferences

Type union: either IResolvable or CfnPreferences.IConnectionRecordingPreferencesProperty

Back to top Generated by DocFX