interface AssessmentReportsDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AuditManager.CfnAssessmentPropsMixin.AssessmentReportsDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsauditmanager#CfnAssessmentPropsMixin_AssessmentReportsDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.auditmanager.CfnAssessmentPropsMixin.AssessmentReportsDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_auditmanager.CfnAssessmentPropsMixin.AssessmentReportsDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_auditmanager » 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 { aws_auditmanager as auditmanager } from '@aws-cdk/cfn-property-mixins';
const assessmentReportsDestinationProperty: auditmanager.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