Interface CfnPreferencesProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPreferencesProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-22T23:39:59.713Z")
@Stability(Stable)
public interface CfnPreferencesProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPreferences.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ssmguiconnect.*;
CfnPreferencesProps cfnPreferencesProps = CfnPreferencesProps.builder()
.connectionRecordingPreferences(ConnectionRecordingPreferencesProperty.builder()
.kmsKeyArn("kmsKeyArn")
.recordingDestinations(RecordingDestinationsProperty.builder()
.s3Buckets(List.of(S3BucketProperty.builder()
.bucketName("bucketName")
.bucketOwner("bucketOwner")
.build()))
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPreferencesPropsstatic final classAn implementation forCfnPreferencesProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPreferencesProps.Builderbuilder()default ObjectThe set of preferences used for recording RDP connections in the requesting AWS account and AWS Region .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionRecordingPreferences
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.
- See Also:
-
builder
- Returns:
- a
CfnPreferencesProps.BuilderofCfnPreferencesProps
-