interface S3ConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.FIS.CfnExperimentTemplate.S3ConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfis#CfnExperimentTemplate_S3ConfigurationProperty | 
|  Java | software.amazon.awscdk.services.fis.CfnExperimentTemplate.S3ConfigurationProperty | 
|  Python | aws_cdk.aws_fis.CfnExperimentTemplate.S3ConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_fis»CfnExperimentTemplate»S3ConfigurationProperty | 
Specifies the configuration for experiment logging to Amazon S3 .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fis as fis } from 'aws-cdk-lib';
const s3ConfigurationProperty: fis.CfnExperimentTemplate.S3ConfigurationProperty = {
  bucketName: 'bucketName',
  // the properties below are optional
  prefix: 'prefix',
};
Properties
| Name | Type | Description | 
|---|---|---|
| bucket | string | The name of the destination bucket. | 
| prefix? | string | The bucket prefix. | 
bucketName
Type:
string
The name of the destination bucket.
prefix?
Type:
string
(optional)
The bucket prefix.
