interface AssessmentReportsDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AuditManager.Mixins.CfnAssessmentPropsMixin.AssessmentReportsDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsauditmanager/mixins#CfnAssessmentPropsMixin_AssessmentReportsDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.auditmanager.mixins.CfnAssessmentPropsMixin.AssessmentReportsDestinationProperty |
Python | aws_cdk.mixins_preview.aws_auditmanager.mixins.CfnAssessmentPropsMixin.AssessmentReportsDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_auditmanager » mixins » CfnAssessmentPropsMixin » AssessmentReportsDestinationProperty |
The AssessmentReportsDestination property type specifies the location in which AWS Audit Manager saves assessment reports for the given assessment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as auditmanager_mixins } from '@aws-cdk/mixins-preview/aws-auditmanager';
const assessmentReportsDestinationProperty: auditmanager_mixins.CfnAssessmentPropsMixin.AssessmentReportsDestinationProperty = {
destination: 'destination',
destinationType: 'destinationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | string | The destination bucket where Audit Manager stores assessment reports. |
| destination | string | The destination type, such as Amazon S3. |
destination?
Type:
string
(optional)
The destination bucket where Audit Manager stores assessment reports.
destinationType?
Type:
string
(optional)
The destination type, such as Amazon S3.

.NET
Go
Java
Python
TypeScript