interface S3BucketProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMGuiConnect.Mixins.CfnPreferencesPropsMixin.S3BucketProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmguiconnect/mixins#CfnPreferencesPropsMixin_S3BucketProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmguiconnect.mixins.CfnPreferencesPropsMixin.S3BucketProperty |
Python | aws_cdk.mixins_preview.aws_ssmguiconnect.mixins.CfnPreferencesPropsMixin.S3BucketProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmguiconnect » mixins » 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 { mixins as ssmguiconnect_mixins } from '@aws-cdk/mixins-preview/aws-ssmguiconnect';
const s3BucketProperty: ssmguiconnect_mixins.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