Framework

class Framework : KotlinCustomResource

Resource for managing an AWS Audit Manager Framework.

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.Framework;
import com.pulumi.aws.auditmanager.FrameworkArgs;
import com.pulumi.aws.auditmanager.inputs.FrameworkControlSetArgs;
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 Framework("test", FrameworkArgs.builder()
.controlSets(FrameworkControlSetArgs.builder()
.name("example")
.controls(FrameworkControlSetControlArgs.builder()
.id(aws_auditmanager_control.test().id())
.build())
.build())
.build());
}
}

Import

Using pulumi import, import Audit Manager Framework using the framework id. For example:

$ pulumi import aws:auditmanager/framework:Framework example abc123-de45

Properties

Link copied to clipboard
val arn: Output<String>

Amazon Resource Name (ARN) of the framework.

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

Compliance type that the new custom framework supports, such as CIS or HIPAA.

Link copied to clipboard

Control sets that are associated with the framework. See control_sets below. The following arguments are optional:

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

Description of the framework.

Link copied to clipboard
val frameworkType: Output<String>

Framework type, such as a custom framework or a standard framework.

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

Name of the framework.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

A map of tags to assign to the framework. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>
Link copied to clipboard
val urn: Output<String>