AssessmentReport

class AssessmentReport : KotlinCustomResource

Resource for managing an AWS Audit Manager Assessment Report.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.auditmanager.AssessmentReport;
import com.pulumi.aws.auditmanager.AssessmentReportArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new AssessmentReport("test", AssessmentReportArgs.builder()
.assessmentId(aws_auditmanager_assessment.test().id())
.build());
}
}

Import

Using pulumi import, import Audit Manager Assessment Reports using the assessment report id. For example:

$ pulumi import aws:auditmanager/assessmentReport:AssessmentReport example abc123-de45

Properties

Link copied to clipboard
val assessmentId: Output<String>

Unique identifier of the assessment to create the report from. The following arguments are optional:

Link copied to clipboard
val author: Output<String>

Name of the user who created the assessment report.

Link copied to clipboard
val description: Output<String>?

Description of the assessment report.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

Name of the assessment report.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val status: Output<String>

Current status of the specified assessment report. Valid values are COMPLETE, IN_PROGRESS, and FAILED.

Link copied to clipboard
val urn: Output<String>