Class: Aws::AuditManager::Types::CreateControlRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-auditmanager/types.rb

Overview

Note:

When making an API call, you may pass CreateControlRequest data as a hash:

{
  name: "ControlName", # required
  description: "ControlDescription",
  testing_information: "TestingInformation",
  action_plan_title: "ActionPlanTitle",
  action_plan_instructions: "ActionPlanInstructions",
  control_mapping_sources: [ # required
    {
      source_name: "SourceName",
      source_description: "SourceDescription",
      source_set_up_option: "System_Controls_Mapping", # accepts System_Controls_Mapping, Procedural_Controls_Mapping
      source_type: "AWS_Cloudtrail", # accepts AWS_Cloudtrail, AWS_Config, AWS_Security_Hub, AWS_API_Call, MANUAL
      source_keyword: {
        keyword_input_type: "SELECT_FROM_LIST", # accepts SELECT_FROM_LIST
        keyword_value: "KeywordValue",
      },
      source_frequency: "DAILY", # accepts DAILY, WEEKLY, MONTHLY
      troubleshooting_text: "TroubleshootingText",
    },
  ],
  tags: {
    "TagKey" => "TagValue",
  },
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#action_plan_instructionsString

The recommended actions to carry out if the control isn’t fulfilled.

Returns:

  • (String)


2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'lib/aws-sdk-auditmanager/types.rb', line 2009

class CreateControlRequest < Struct.new(
  :name,
  :description,
  :testing_information,
  :action_plan_title,
  :action_plan_instructions,
  :control_mapping_sources,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#action_plan_titleString

The title of the action plan for remediating the control.

Returns:

  • (String)


2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'lib/aws-sdk-auditmanager/types.rb', line 2009

class CreateControlRequest < Struct.new(
  :name,
  :description,
  :testing_information,
  :action_plan_title,
  :action_plan_instructions,
  :control_mapping_sources,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#control_mapping_sourcesArray<Types::CreateControlMappingSource>

The data mapping sources for the control.



2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'lib/aws-sdk-auditmanager/types.rb', line 2009

class CreateControlRequest < Struct.new(
  :name,
  :description,
  :testing_information,
  :action_plan_title,
  :action_plan_instructions,
  :control_mapping_sources,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the control.

Returns:

  • (String)


2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'lib/aws-sdk-auditmanager/types.rb', line 2009

class CreateControlRequest < Struct.new(
  :name,
  :description,
  :testing_information,
  :action_plan_title,
  :action_plan_instructions,
  :control_mapping_sources,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the control.

Returns:

  • (String)


2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'lib/aws-sdk-auditmanager/types.rb', line 2009

class CreateControlRequest < Struct.new(
  :name,
  :description,
  :testing_information,
  :action_plan_title,
  :action_plan_instructions,
  :control_mapping_sources,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

The tags that are associated with the control.

Returns:

  • (Hash<String,String>)


2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'lib/aws-sdk-auditmanager/types.rb', line 2009

class CreateControlRequest < Struct.new(
  :name,
  :description,
  :testing_information,
  :action_plan_title,
  :action_plan_instructions,
  :control_mapping_sources,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#testing_informationString

The steps to follow to determine if the control is satisfied.

Returns:

  • (String)


2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'lib/aws-sdk-auditmanager/types.rb', line 2009

class CreateControlRequest < Struct.new(
  :name,
  :description,
  :testing_information,
  :action_plan_title,
  :action_plan_instructions,
  :control_mapping_sources,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end