Struct aws_sdk_backup::model::ControlScope
source · [−]#[non_exhaustive]pub struct ControlScope { /* private fields */ }
Expand description
A framework consists of one or more controls. Each control has its own control scope. The control scope can include one or more resource types, a combination of a tag key and value, or a combination of one resource type and one resource ID. If no scope is specified, evaluations for the rule are triggered when any resource in your recording group changes in configuration.
To set a control scope that includes all of a particular resource, leave the ControlScope
empty or do not pass it when calling CreateFramework
.
Implementations
sourceimpl ControlScope
impl ControlScope
sourcepub fn compliance_resource_ids(&self) -> Option<&[String]>
pub fn compliance_resource_ids(&self) -> Option<&[String]>
The ID of the only Amazon Web Services resource that you want your control scope to contain.
sourcepub fn compliance_resource_types(&self) -> Option<&[String]>
pub fn compliance_resource_types(&self) -> Option<&[String]>
Describes whether the control scope includes one or more types of resources, such as EFS
or RDS
.
The tag key-value pair applied to those Amazon Web Services resources that you want to trigger an evaluation for a rule. A maximum of one key-value pair can be provided. The tag value is optional, but it cannot be an empty string. The structure to assign a tag is: [{"Key":"string","Value":"string"}]
.
sourceimpl ControlScope
impl ControlScope
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ControlScope
.
Trait Implementations
sourceimpl Clone for ControlScope
impl Clone for ControlScope
sourcefn clone(&self) -> ControlScope
fn clone(&self) -> ControlScope
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more