interface S3BucketProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMGuiConnect.CfnPreferencesPropsMixin.S3BucketProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmguiconnect#CfnPreferencesPropsMixin_S3BucketProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmguiconnect.CfnPreferencesPropsMixin.S3BucketProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmguiconnect.CfnPreferencesPropsMixin.S3BucketProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmguiconnect » CfnPreferencesPropsMixin » S3BucketProperty |
The S3 bucket where RDP connection recordings are stored.
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 s3BucketProperty: ssmguiconnect.CfnPreferencesPropsMixin.S3BucketProperty = {
bucketName: 'bucketName',
bucketOwner: 'bucketOwner',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The name of the S3 bucket where RDP connection recordings are stored. |
| bucket | string | The AWS account number that owns the S3 bucket. |
bucketName?
Type:
string
(optional)
The name of the S3 bucket where RDP connection recordings are stored.
bucketOwner?
Type:
string
(optional)
The AWS account number that owns the S3 bucket.

.NET
Go
Java
Python
TypeScript