interface OutputsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FIS.Mixins.CfnExperimentTemplatePropsMixin.OutputsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfis/mixins#CfnExperimentTemplatePropsMixin_OutputsProperty |
Java | software.amazon.awscdk.mixins.preview.services.fis.mixins.CfnExperimentTemplatePropsMixin.OutputsProperty |
Python | aws_cdk.mixins_preview.aws_fis.mixins.CfnExperimentTemplatePropsMixin.OutputsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fis » mixins » CfnExperimentTemplatePropsMixin » OutputsProperty |
Describes the output destinations of the experiment report.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fis_mixins } from '@aws-cdk/mixins-preview/aws-fis';
const outputsProperty: fis_mixins.CfnExperimentTemplatePropsMixin.OutputsProperty = {
experimentReportS3Configuration: {
bucketName: 'bucketName',
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| experiment | IResolvable | Experiment | The S3 destination for the experiment report. |
experimentReportS3Configuration?
Type:
IResolvable | Experiment
(optional)
The S3 destination for the experiment report.

.NET
Go
Java
Python
TypeScript