Struct aws_sdk_auditmanager::operation::update_assessment_framework::builders::UpdateAssessmentFrameworkFluentBuilder
source · pub struct UpdateAssessmentFrameworkFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateAssessmentFramework
.
Updates a custom framework in Audit Manager.
Implementations§
source§impl UpdateAssessmentFrameworkFluentBuilder
impl UpdateAssessmentFrameworkFluentBuilder
sourcepub fn as_input(&self) -> &UpdateAssessmentFrameworkInputBuilder
pub fn as_input(&self) -> &UpdateAssessmentFrameworkInputBuilder
Access the UpdateAssessmentFramework as a reference.
sourcepub async fn send(
self
) -> Result<UpdateAssessmentFrameworkOutput, SdkError<UpdateAssessmentFrameworkError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateAssessmentFrameworkOutput, SdkError<UpdateAssessmentFrameworkError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateAssessmentFrameworkOutput, UpdateAssessmentFrameworkError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateAssessmentFrameworkOutput, UpdateAssessmentFrameworkError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn framework_id(self, input: impl Into<String>) -> Self
pub fn framework_id(self, input: impl Into<String>) -> Self
The unique identifier for the framework.
sourcepub fn set_framework_id(self, input: Option<String>) -> Self
pub fn set_framework_id(self, input: Option<String>) -> Self
The unique identifier for the framework.
sourcepub fn get_framework_id(&self) -> &Option<String>
pub fn get_framework_id(&self) -> &Option<String>
The unique identifier for the framework.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the updated framework.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the updated framework.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the updated framework.
sourcepub fn compliance_type(self, input: impl Into<String>) -> Self
pub fn compliance_type(self, input: impl Into<String>) -> Self
The compliance type that the new custom framework supports, such as CIS or HIPAA.
sourcepub fn set_compliance_type(self, input: Option<String>) -> Self
pub fn set_compliance_type(self, input: Option<String>) -> Self
The compliance type that the new custom framework supports, such as CIS or HIPAA.
sourcepub fn get_compliance_type(&self) -> &Option<String>
pub fn get_compliance_type(&self) -> &Option<String>
The compliance type that the new custom framework supports, such as CIS or HIPAA.
sourcepub fn control_sets(self, input: UpdateAssessmentFrameworkControlSet) -> Self
pub fn control_sets(self, input: UpdateAssessmentFrameworkControlSet) -> Self
Appends an item to controlSets
.
To override the contents of this collection use set_control_sets
.
The control sets that are associated with the framework.
sourcepub fn set_control_sets(
self,
input: Option<Vec<UpdateAssessmentFrameworkControlSet>>
) -> Self
pub fn set_control_sets( self, input: Option<Vec<UpdateAssessmentFrameworkControlSet>> ) -> Self
The control sets that are associated with the framework.
sourcepub fn get_control_sets(
&self
) -> &Option<Vec<UpdateAssessmentFrameworkControlSet>>
pub fn get_control_sets( &self ) -> &Option<Vec<UpdateAssessmentFrameworkControlSet>>
The control sets that are associated with the framework.
Trait Implementations§
source§impl Clone for UpdateAssessmentFrameworkFluentBuilder
impl Clone for UpdateAssessmentFrameworkFluentBuilder
source§fn clone(&self) -> UpdateAssessmentFrameworkFluentBuilder
fn clone(&self) -> UpdateAssessmentFrameworkFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more