Try AWS Native preview for resources not in the classic version.
aws.auditmanager.Control
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing an AWS Audit Manager Control.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.auditmanager.Control("example", {
name: "example",
controlMappingSources: [{
sourceName: "example",
sourceSetUpOption: "Procedural_Controls_Mapping",
sourceType: "MANUAL",
}],
});
import pulumi
import pulumi_aws as aws
example = aws.auditmanager.Control("example",
name="example",
control_mapping_sources=[{
"sourceName": "example",
"sourceSetUpOption": "Procedural_Controls_Mapping",
"sourceType": "MANUAL",
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/auditmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := auditmanager.NewControl(ctx, "example", &auditmanager.ControlArgs{
Name: pulumi.String("example"),
ControlMappingSources: auditmanager.ControlControlMappingSourceArray{
&auditmanager.ControlControlMappingSourceArgs{
SourceName: pulumi.String("example"),
SourceSetUpOption: pulumi.String("Procedural_Controls_Mapping"),
SourceType: pulumi.String("MANUAL"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Auditmanager.Control("example", new()
{
Name = "example",
ControlMappingSources = new[]
{
new Aws.Auditmanager.Inputs.ControlControlMappingSourceArgs
{
SourceName = "example",
SourceSetUpOption = "Procedural_Controls_Mapping",
SourceType = "MANUAL",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.auditmanager.Control;
import com.pulumi.aws.auditmanager.ControlArgs;
import com.pulumi.aws.auditmanager.inputs.ControlControlMappingSourceArgs;
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 example = new Control("example", ControlArgs.builder()
.name("example")
.controlMappingSources(ControlControlMappingSourceArgs.builder()
.sourceName("example")
.sourceSetUpOption("Procedural_Controls_Mapping")
.sourceType("MANUAL")
.build())
.build());
}
}
resources:
example:
type: aws:auditmanager:Control
properties:
name: example
controlMappingSources:
- sourceName: example
sourceSetUpOption: Procedural_Controls_Mapping
sourceType: MANUAL
Create Control Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Control(name: string, args?: ControlArgs, opts?: CustomResourceOptions);
@overload
def Control(resource_name: str,
args: Optional[ControlArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Control(resource_name: str,
opts: Optional[ResourceOptions] = None,
action_plan_instructions: Optional[str] = None,
action_plan_title: Optional[str] = None,
control_mapping_sources: Optional[Sequence[ControlControlMappingSourceArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
testing_information: Optional[str] = None)
func NewControl(ctx *Context, name string, args *ControlArgs, opts ...ResourceOption) (*Control, error)
public Control(string name, ControlArgs? args = null, CustomResourceOptions? opts = null)
public Control(String name, ControlArgs args)
public Control(String name, ControlArgs args, CustomResourceOptions options)
type: aws:auditmanager:Control
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ControlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ControlArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ControlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ControlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ControlArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var controlResource = new Aws.Auditmanager.Control("controlResource", new()
{
ActionPlanInstructions = "string",
ActionPlanTitle = "string",
ControlMappingSources = new[]
{
new Aws.Auditmanager.Inputs.ControlControlMappingSourceArgs
{
SourceName = "string",
SourceSetUpOption = "string",
SourceType = "string",
SourceDescription = "string",
SourceFrequency = "string",
SourceId = "string",
SourceKeyword = new Aws.Auditmanager.Inputs.ControlControlMappingSourceSourceKeywordArgs
{
KeywordInputType = "string",
KeywordValue = "string",
},
TroubleshootingText = "string",
},
},
Description = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
TestingInformation = "string",
});
example, err := auditmanager.NewControl(ctx, "controlResource", &auditmanager.ControlArgs{
ActionPlanInstructions: pulumi.String("string"),
ActionPlanTitle: pulumi.String("string"),
ControlMappingSources: auditmanager.ControlControlMappingSourceArray{
&auditmanager.ControlControlMappingSourceArgs{
SourceName: pulumi.String("string"),
SourceSetUpOption: pulumi.String("string"),
SourceType: pulumi.String("string"),
SourceDescription: pulumi.String("string"),
SourceFrequency: pulumi.String("string"),
SourceId: pulumi.String("string"),
SourceKeyword: &auditmanager.ControlControlMappingSourceSourceKeywordArgs{
KeywordInputType: pulumi.String("string"),
KeywordValue: pulumi.String("string"),
},
TroubleshootingText: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TestingInformation: pulumi.String("string"),
})
var controlResource = new Control("controlResource", ControlArgs.builder()
.actionPlanInstructions("string")
.actionPlanTitle("string")
.controlMappingSources(ControlControlMappingSourceArgs.builder()
.sourceName("string")
.sourceSetUpOption("string")
.sourceType("string")
.sourceDescription("string")
.sourceFrequency("string")
.sourceId("string")
.sourceKeyword(ControlControlMappingSourceSourceKeywordArgs.builder()
.keywordInputType("string")
.keywordValue("string")
.build())
.troubleshootingText("string")
.build())
.description("string")
.name("string")
.tags(Map.of("string", "string"))
.testingInformation("string")
.build());
control_resource = aws.auditmanager.Control("controlResource",
action_plan_instructions="string",
action_plan_title="string",
control_mapping_sources=[{
"sourceName": "string",
"sourceSetUpOption": "string",
"sourceType": "string",
"sourceDescription": "string",
"sourceFrequency": "string",
"sourceId": "string",
"sourceKeyword": {
"keywordInputType": "string",
"keywordValue": "string",
},
"troubleshootingText": "string",
}],
description="string",
name="string",
tags={
"string": "string",
},
testing_information="string")
const controlResource = new aws.auditmanager.Control("controlResource", {
actionPlanInstructions: "string",
actionPlanTitle: "string",
controlMappingSources: [{
sourceName: "string",
sourceSetUpOption: "string",
sourceType: "string",
sourceDescription: "string",
sourceFrequency: "string",
sourceId: "string",
sourceKeyword: {
keywordInputType: "string",
keywordValue: "string",
},
troubleshootingText: "string",
}],
description: "string",
name: "string",
tags: {
string: "string",
},
testingInformation: "string",
});
type: aws:auditmanager:Control
properties:
actionPlanInstructions: string
actionPlanTitle: string
controlMappingSources:
- sourceDescription: string
sourceFrequency: string
sourceId: string
sourceKeyword:
keywordInputType: string
keywordValue: string
sourceName: string
sourceSetUpOption: string
sourceType: string
troubleshootingText: string
description: string
name: string
tags:
string: string
testingInformation: string
Control Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Control resource accepts the following input properties:
- Action
Plan stringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- Action
Plan stringTitle - Title of the action plan for remediating the control.
- Control
Mapping List<Pulumi.Sources Aws. Auditmanager. Inputs. Control Control Mapping Source> Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- Description string
- Description of the control.
- Name string
- Name of the control.
- Dictionary<string, string>
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Testing
Information string - Steps to follow to determine if the control is satisfied.
- Action
Plan stringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- Action
Plan stringTitle - Title of the action plan for remediating the control.
- Control
Mapping []ControlSources Control Mapping Source Args Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- Description string
- Description of the control.
- Name string
- Name of the control.
- map[string]string
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Testing
Information string - Steps to follow to determine if the control is satisfied.
- action
Plan StringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- action
Plan StringTitle - Title of the action plan for remediating the control.
- control
Mapping List<ControlSources Control Mapping Source> Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description String
- Description of the control.
- name String
- Name of the control.
- Map<String,String>
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - testing
Information String - Steps to follow to determine if the control is satisfied.
- action
Plan stringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- action
Plan stringTitle - Title of the action plan for remediating the control.
- control
Mapping ControlSources Control Mapping Source[] Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description string
- Description of the control.
- name string
- Name of the control.
- {[key: string]: string}
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - testing
Information string - Steps to follow to determine if the control is satisfied.
- action_
plan_ strinstructions - Recommended actions to carry out if the control isn't fulfilled.
- action_
plan_ strtitle - Title of the action plan for remediating the control.
- control_
mapping_ Sequence[Controlsources Control Mapping Source Args] Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description str
- Description of the control.
- name str
- Name of the control.
- Mapping[str, str]
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - testing_
information str - Steps to follow to determine if the control is satisfied.
- action
Plan StringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- action
Plan StringTitle - Title of the action plan for remediating the control.
- control
Mapping List<Property Map>Sources Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description String
- Description of the control.
- name String
- Name of the control.
- Map<String>
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - testing
Information String - Steps to follow to determine if the control is satisfied.
Outputs
All input properties are implicitly available as output properties. Additionally, the Control resource produces the following output properties:
Look up Existing Control Resource
Get an existing Control resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ControlState, opts?: CustomResourceOptions): Control
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_plan_instructions: Optional[str] = None,
action_plan_title: Optional[str] = None,
arn: Optional[str] = None,
control_mapping_sources: Optional[Sequence[ControlControlMappingSourceArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
testing_information: Optional[str] = None,
type: Optional[str] = None) -> Control
func GetControl(ctx *Context, name string, id IDInput, state *ControlState, opts ...ResourceOption) (*Control, error)
public static Control Get(string name, Input<string> id, ControlState? state, CustomResourceOptions? opts = null)
public static Control get(String name, Output<String> id, ControlState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Action
Plan stringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- Action
Plan stringTitle - Title of the action plan for remediating the control.
- Arn string
- Amazon Resource Name (ARN) of the control.
control_mapping_sources.*.source_id
- Unique identifier for the source.
- Control
Mapping List<Pulumi.Sources Aws. Auditmanager. Inputs. Control Control Mapping Source> Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- Description string
- Description of the control.
- Name string
- Name of the control.
- Dictionary<string, string>
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Testing
Information string - Steps to follow to determine if the control is satisfied.
- Type string
- Type of control, such as a custom control or a standard control.
- Action
Plan stringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- Action
Plan stringTitle - Title of the action plan for remediating the control.
- Arn string
- Amazon Resource Name (ARN) of the control.
control_mapping_sources.*.source_id
- Unique identifier for the source.
- Control
Mapping []ControlSources Control Mapping Source Args Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- Description string
- Description of the control.
- Name string
- Name of the control.
- map[string]string
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Testing
Information string - Steps to follow to determine if the control is satisfied.
- Type string
- Type of control, such as a custom control or a standard control.
- action
Plan StringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- action
Plan StringTitle - Title of the action plan for remediating the control.
- arn String
- Amazon Resource Name (ARN) of the control.
control_mapping_sources.*.source_id
- Unique identifier for the source.
- control
Mapping List<ControlSources Control Mapping Source> Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description String
- Description of the control.
- name String
- Name of the control.
- Map<String,String>
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- testing
Information String - Steps to follow to determine if the control is satisfied.
- type String
- Type of control, such as a custom control or a standard control.
- action
Plan stringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- action
Plan stringTitle - Title of the action plan for remediating the control.
- arn string
- Amazon Resource Name (ARN) of the control.
control_mapping_sources.*.source_id
- Unique identifier for the source.
- control
Mapping ControlSources Control Mapping Source[] Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description string
- Description of the control.
- name string
- Name of the control.
- {[key: string]: string}
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- testing
Information string - Steps to follow to determine if the control is satisfied.
- type string
- Type of control, such as a custom control or a standard control.
- action_
plan_ strinstructions - Recommended actions to carry out if the control isn't fulfilled.
- action_
plan_ strtitle - Title of the action plan for remediating the control.
- arn str
- Amazon Resource Name (ARN) of the control.
control_mapping_sources.*.source_id
- Unique identifier for the source.
- control_
mapping_ Sequence[Controlsources Control Mapping Source Args] Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description str
- Description of the control.
- name str
- Name of the control.
- Mapping[str, str]
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- testing_
information str - Steps to follow to determine if the control is satisfied.
- type str
- Type of control, such as a custom control or a standard control.
- action
Plan StringInstructions - Recommended actions to carry out if the control isn't fulfilled.
- action
Plan StringTitle - Title of the action plan for remediating the control.
- arn String
- Amazon Resource Name (ARN) of the control.
control_mapping_sources.*.source_id
- Unique identifier for the source.
- control
Mapping List<Property Map>Sources Data mapping sources. See
control_mapping_sources
below.The following arguments are optional:
- description String
- Description of the control.
- name String
- Name of the control.
- Map<String>
- A map of tags to assign to the control. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- testing
Information String - Steps to follow to determine if the control is satisfied.
- type String
- Type of control, such as a custom control or a standard control.
Supporting Types
ControlControlMappingSource, ControlControlMappingSourceArgs
- Source
Name string - Name of the source.
- Source
Set stringUp Option - The setup option for the data source. This option reflects if the evidence collection is automated or manual. Valid values are
System_Controls_Mapping
(automated) andProcedural_Controls_Mapping
(manual). - Source
Type string Type of data source for evidence collection. If
source_set_up_option
is manual, the only valid value isMANUAL
. Ifsource_set_up_option
is automated, valid values areAWS_Cloudtrail
,AWS_Config
,AWS_Security_Hub
, orAWS_API_Call
.The following arguments are optional:
- Source
Description string - Description of the source.
- Source
Frequency string - Frequency of evidence collection. Valid values are
DAILY
,WEEKLY
, orMONTHLY
. - Source
Id string - Source
Keyword Pulumi.Aws. Auditmanager. Inputs. Control Control Mapping Source Source Keyword - The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names. See
source_keyword
below. - Troubleshooting
Text string - Instructions for troubleshooting the control.
- Source
Name string - Name of the source.
- Source
Set stringUp Option - The setup option for the data source. This option reflects if the evidence collection is automated or manual. Valid values are
System_Controls_Mapping
(automated) andProcedural_Controls_Mapping
(manual). - Source
Type string Type of data source for evidence collection. If
source_set_up_option
is manual, the only valid value isMANUAL
. Ifsource_set_up_option
is automated, valid values areAWS_Cloudtrail
,AWS_Config
,AWS_Security_Hub
, orAWS_API_Call
.The following arguments are optional:
- Source
Description string - Description of the source.
- Source
Frequency string - Frequency of evidence collection. Valid values are
DAILY
,WEEKLY
, orMONTHLY
. - Source
Id string - Source
Keyword ControlControl Mapping Source Source Keyword - The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names. See
source_keyword
below. - Troubleshooting
Text string - Instructions for troubleshooting the control.
- source
Name String - Name of the source.
- source
Set StringUp Option - The setup option for the data source. This option reflects if the evidence collection is automated or manual. Valid values are
System_Controls_Mapping
(automated) andProcedural_Controls_Mapping
(manual). - source
Type String Type of data source for evidence collection. If
source_set_up_option
is manual, the only valid value isMANUAL
. Ifsource_set_up_option
is automated, valid values areAWS_Cloudtrail
,AWS_Config
,AWS_Security_Hub
, orAWS_API_Call
.The following arguments are optional:
- source
Description String - Description of the source.
- source
Frequency String - Frequency of evidence collection. Valid values are
DAILY
,WEEKLY
, orMONTHLY
. - source
Id String - source
Keyword ControlControl Mapping Source Source Keyword - The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names. See
source_keyword
below. - troubleshooting
Text String - Instructions for troubleshooting the control.
- source
Name string - Name of the source.
- source
Set stringUp Option - The setup option for the data source. This option reflects if the evidence collection is automated or manual. Valid values are
System_Controls_Mapping
(automated) andProcedural_Controls_Mapping
(manual). - source
Type string Type of data source for evidence collection. If
source_set_up_option
is manual, the only valid value isMANUAL
. Ifsource_set_up_option
is automated, valid values areAWS_Cloudtrail
,AWS_Config
,AWS_Security_Hub
, orAWS_API_Call
.The following arguments are optional:
- source
Description string - Description of the source.
- source
Frequency string - Frequency of evidence collection. Valid values are
DAILY
,WEEKLY
, orMONTHLY
. - source
Id string - source
Keyword ControlControl Mapping Source Source Keyword - The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names. See
source_keyword
below. - troubleshooting
Text string - Instructions for troubleshooting the control.
- source_
name str - Name of the source.
- source_
set_ strup_ option - The setup option for the data source. This option reflects if the evidence collection is automated or manual. Valid values are
System_Controls_Mapping
(automated) andProcedural_Controls_Mapping
(manual). - source_
type str Type of data source for evidence collection. If
source_set_up_option
is manual, the only valid value isMANUAL
. Ifsource_set_up_option
is automated, valid values areAWS_Cloudtrail
,AWS_Config
,AWS_Security_Hub
, orAWS_API_Call
.The following arguments are optional:
- source_
description str - Description of the source.
- source_
frequency str - Frequency of evidence collection. Valid values are
DAILY
,WEEKLY
, orMONTHLY
. - source_
id str - source_
keyword ControlControl Mapping Source Source Keyword - The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names. See
source_keyword
below. - troubleshooting_
text str - Instructions for troubleshooting the control.
- source
Name String - Name of the source.
- source
Set StringUp Option - The setup option for the data source. This option reflects if the evidence collection is automated or manual. Valid values are
System_Controls_Mapping
(automated) andProcedural_Controls_Mapping
(manual). - source
Type String Type of data source for evidence collection. If
source_set_up_option
is manual, the only valid value isMANUAL
. Ifsource_set_up_option
is automated, valid values areAWS_Cloudtrail
,AWS_Config
,AWS_Security_Hub
, orAWS_API_Call
.The following arguments are optional:
- source
Description String - Description of the source.
- source
Frequency String - Frequency of evidence collection. Valid values are
DAILY
,WEEKLY
, orMONTHLY
. - source
Id String - source
Keyword Property Map - The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names. See
source_keyword
below. - troubleshooting
Text String - Instructions for troubleshooting the control.
ControlControlMappingSourceSourceKeyword, ControlControlMappingSourceSourceKeywordArgs
- Keyword
Input stringType - Input method for the keyword. Valid values are
SELECT_FROM_LIST
. - Keyword
Value string - The value of the keyword that's used when mapping a control data source. For example, this can be a CloudTrail event name, a rule name for Config, a Security Hub control, or the name of an Amazon Web Services API call. See the Audit Manager supported control data sources documentation for more information.
- Keyword
Input stringType - Input method for the keyword. Valid values are
SELECT_FROM_LIST
. - Keyword
Value string - The value of the keyword that's used when mapping a control data source. For example, this can be a CloudTrail event name, a rule name for Config, a Security Hub control, or the name of an Amazon Web Services API call. See the Audit Manager supported control data sources documentation for more information.
- keyword
Input StringType - Input method for the keyword. Valid values are
SELECT_FROM_LIST
. - keyword
Value String - The value of the keyword that's used when mapping a control data source. For example, this can be a CloudTrail event name, a rule name for Config, a Security Hub control, or the name of an Amazon Web Services API call. See the Audit Manager supported control data sources documentation for more information.
- keyword
Input stringType - Input method for the keyword. Valid values are
SELECT_FROM_LIST
. - keyword
Value string - The value of the keyword that's used when mapping a control data source. For example, this can be a CloudTrail event name, a rule name for Config, a Security Hub control, or the name of an Amazon Web Services API call. See the Audit Manager supported control data sources documentation for more information.
- keyword_
input_ strtype - Input method for the keyword. Valid values are
SELECT_FROM_LIST
. - keyword_
value str - The value of the keyword that's used when mapping a control data source. For example, this can be a CloudTrail event name, a rule name for Config, a Security Hub control, or the name of an Amazon Web Services API call. See the Audit Manager supported control data sources documentation for more information.
- keyword
Input StringType - Input method for the keyword. Valid values are
SELECT_FROM_LIST
. - keyword
Value String - The value of the keyword that's used when mapping a control data source. For example, this can be a CloudTrail event name, a rule name for Config, a Security Hub control, or the name of an Amazon Web Services API call. See the Audit Manager supported control data sources documentation for more information.
Import
Using pulumi import
, import an Audit Manager Control using the id
. For example:
$ pulumi import aws:auditmanager/control:Control example abc123-de45
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.