Struct aws_sdk_auditmanager::operation::update_assessment_framework::builders::UpdateAssessmentFrameworkInputBuilder
source · #[non_exhaustive]pub struct UpdateAssessmentFrameworkInputBuilder { /* private fields */ }Expand description
A builder for UpdateAssessmentFrameworkInput.
Implementations§
source§impl UpdateAssessmentFrameworkInputBuilder
impl UpdateAssessmentFrameworkInputBuilder
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 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 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 control_sets(self, input: UpdateAssessmentFrameworkControlSet) -> Self
pub fn control_sets(self, input: UpdateAssessmentFrameworkControlSet) -> Self
Appends an item to control_sets.
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 build(self) -> Result<UpdateAssessmentFrameworkInput, BuildError>
pub fn build(self) -> Result<UpdateAssessmentFrameworkInput, BuildError>
Consumes the builder and constructs a UpdateAssessmentFrameworkInput.
Trait Implementations§
source§impl Clone for UpdateAssessmentFrameworkInputBuilder
impl Clone for UpdateAssessmentFrameworkInputBuilder
source§fn clone(&self) -> UpdateAssessmentFrameworkInputBuilder
fn clone(&self) -> UpdateAssessmentFrameworkInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for UpdateAssessmentFrameworkInputBuilder
impl Default for UpdateAssessmentFrameworkInputBuilder
source§fn default() -> UpdateAssessmentFrameworkInputBuilder
fn default() -> UpdateAssessmentFrameworkInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateAssessmentFrameworkInputBuilder> for UpdateAssessmentFrameworkInputBuilder
impl PartialEq<UpdateAssessmentFrameworkInputBuilder> for UpdateAssessmentFrameworkInputBuilder
source§fn eq(&self, other: &UpdateAssessmentFrameworkInputBuilder) -> bool
fn eq(&self, other: &UpdateAssessmentFrameworkInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateAssessmentFrameworkInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateAssessmentFrameworkInputBuilder
impl Send for UpdateAssessmentFrameworkInputBuilder
impl Sync for UpdateAssessmentFrameworkInputBuilder
impl Unpin for UpdateAssessmentFrameworkInputBuilder
impl UnwindSafe for UpdateAssessmentFrameworkInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more