#[non_exhaustive]pub struct AssessmentMetadataItemBuilder { /* private fields */ }Expand description
A builder for AssessmentMetadataItem.
Implementations§
source§impl AssessmentMetadataItemBuilder
impl AssessmentMetadataItemBuilder
sourcepub fn compliance_type(self, input: impl Into<String>) -> Self
pub fn compliance_type(self, input: impl Into<String>) -> Self
The name of the compliance standard that's related to the assessment, such as PCI-DSS.
sourcepub fn set_compliance_type(self, input: Option<String>) -> Self
pub fn set_compliance_type(self, input: Option<String>) -> Self
The name of the compliance standard that's related to the assessment, such as PCI-DSS.
sourcepub fn get_compliance_type(&self) -> &Option<String>
pub fn get_compliance_type(&self) -> &Option<String>
The name of the compliance standard that's related to the assessment, such as PCI-DSS.
sourcepub fn status(self, input: AssessmentStatus) -> Self
pub fn status(self, input: AssessmentStatus) -> Self
The current status of the assessment.
sourcepub fn set_status(self, input: Option<AssessmentStatus>) -> Self
pub fn set_status(self, input: Option<AssessmentStatus>) -> Self
The current status of the assessment.
sourcepub fn get_status(&self) -> &Option<AssessmentStatus>
pub fn get_status(&self) -> &Option<AssessmentStatus>
The current status of the assessment.
sourcepub fn roles(self, input: Role) -> Self
pub fn roles(self, input: Role) -> Self
Appends an item to roles.
To override the contents of this collection use set_roles.
The roles that are associated with the assessment.
sourcepub fn set_roles(self, input: Option<Vec<Role>>) -> Self
pub fn set_roles(self, input: Option<Vec<Role>>) -> Self
The roles that are associated with the assessment.
sourcepub fn get_roles(&self) -> &Option<Vec<Role>>
pub fn get_roles(&self) -> &Option<Vec<Role>>
The roles that are associated with the assessment.
sourcepub fn delegations(self, input: Delegation) -> Self
pub fn delegations(self, input: Delegation) -> Self
Appends an item to delegations.
To override the contents of this collection use set_delegations.
The delegations that are associated with the assessment.
sourcepub fn set_delegations(self, input: Option<Vec<Delegation>>) -> Self
pub fn set_delegations(self, input: Option<Vec<Delegation>>) -> Self
The delegations that are associated with the assessment.
sourcepub fn get_delegations(&self) -> &Option<Vec<Delegation>>
pub fn get_delegations(&self) -> &Option<Vec<Delegation>>
The delegations that are associated with the assessment.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
Specifies when the assessment was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
Specifies when the assessment was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
Specifies when the assessment was created.
sourcepub fn last_updated(self, input: DateTime) -> Self
pub fn last_updated(self, input: DateTime) -> Self
The time of the most recent update.
sourcepub fn set_last_updated(self, input: Option<DateTime>) -> Self
pub fn set_last_updated(self, input: Option<DateTime>) -> Self
The time of the most recent update.
sourcepub fn get_last_updated(&self) -> &Option<DateTime>
pub fn get_last_updated(&self) -> &Option<DateTime>
The time of the most recent update.
sourcepub fn build(self) -> AssessmentMetadataItem
pub fn build(self) -> AssessmentMetadataItem
Consumes the builder and constructs a AssessmentMetadataItem.
Trait Implementations§
source§impl Clone for AssessmentMetadataItemBuilder
impl Clone for AssessmentMetadataItemBuilder
source§fn clone(&self) -> AssessmentMetadataItemBuilder
fn clone(&self) -> AssessmentMetadataItemBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AssessmentMetadataItemBuilder
impl Default for AssessmentMetadataItemBuilder
source§fn default() -> AssessmentMetadataItemBuilder
fn default() -> AssessmentMetadataItemBuilder
source§impl PartialEq for AssessmentMetadataItemBuilder
impl PartialEq for AssessmentMetadataItemBuilder
source§fn eq(&self, other: &AssessmentMetadataItemBuilder) -> bool
fn eq(&self, other: &AssessmentMetadataItemBuilder) -> bool
self and other values to be equal, and is used
by ==.