#[non_exhaustive]
pub struct ControlMappingSource { pub source_id: Option<String>, pub source_name: Option<String>, pub source_description: Option<String>, pub source_set_up_option: Option<SourceSetUpOption>, pub source_type: Option<SourceType>, pub source_keyword: Option<SourceKeyword>, pub source_frequency: Option<SourceFrequency>, pub troubleshooting_text: Option<String>, }
Expand description

The data source that determines where Audit Manager collects evidence from for the control.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
source_id: Option<String>

The unique identifier for the source.

source_name: Option<String>

The name of the source.

source_description: Option<String>

The description of the source.

source_set_up_option: Option<SourceSetUpOption>

The setup option for the data source. This option reflects if the evidence collection is automated or manual.

source_type: Option<SourceType>

Specifies one of the five types of data sources for evidence collection.

source_keyword: Option<SourceKeyword>

The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names.

source_frequency: Option<SourceFrequency>

The frequency of evidence collection for the control mapping source.

troubleshooting_text: Option<String>

The instructions for troubleshooting the control.

Implementations

The unique identifier for the source.

The name of the source.

The description of the source.

The setup option for the data source. This option reflects if the evidence collection is automated or manual.

Specifies one of the five types of data sources for evidence collection.

The keyword to search for in CloudTrail logs, Config rules, Security Hub checks, and Amazon Web Services API names.

The frequency of evidence collection for the control mapping source.

The instructions for troubleshooting the control.

Creates a new builder-style object to manufacture ControlMappingSource

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more