Show / Hide Table of Contents

Class CfnPreferencesProps

Properties for defining a CfnPreferences.

Inheritance
object
CfnPreferencesProps
Implements
ICfnPreferencesProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SSMGuiConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPreferencesProps : ICfnPreferencesProps
Syntax (vb)
Public Class CfnPreferencesProps Implements 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

Constructors

CfnPreferencesProps()

Properties for defining a CfnPreferences.

Properties

ConnectionRecordingPreferences

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

Constructors

CfnPreferencesProps()

Properties for defining a CfnPreferences.

public CfnPreferencesProps()
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"
                         } }
                     }
                 }
             };

Properties

ConnectionRecordingPreferences

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

public object? ConnectionRecordingPreferences { get; set; }
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

Implements

ICfnPreferencesProps
Back to top Generated by DocFX