interface ExperimentReportS3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FIS.CfnExperimentTemplatePropsMixin.ExperimentReportS3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfis#CfnExperimentTemplatePropsMixin_ExperimentReportS3ConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.fis.CfnExperimentTemplatePropsMixin.ExperimentReportS3ConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_fis.CfnExperimentTemplatePropsMixin.ExperimentReportS3ConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fis » CfnExperimentTemplatePropsMixin » ExperimentReportS3ConfigurationProperty |
The S3 destination for the experiment report.
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/cfn-property-mixins';
const experimentReportS3ConfigurationProperty: fis.CfnExperimentTemplatePropsMixin.ExperimentReportS3ConfigurationProperty = {
bucketName: 'bucketName',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The name of the S3 bucket where the experiment report will be stored. |
| prefix? | string | The prefix of the S3 bucket where the experiment report will be stored. |
bucketName?
Type:
string
(optional)
The name of the S3 bucket where the experiment report will be stored.
prefix?
Type:
string
(optional)
The prefix of the S3 bucket where the experiment report will be stored.

.NET
Go
Java
Python
TypeScript