Struct aws_sdk_amp::types::builders::ScraperDescriptionBuilder
source · #[non_exhaustive]pub struct ScraperDescriptionBuilder { /* private fields */ }
Expand description
A builder for ScraperDescription
.
Implementations§
source§impl ScraperDescriptionBuilder
impl ScraperDescriptionBuilder
sourcepub fn scraper_id(self, input: impl Into<String>) -> Self
pub fn scraper_id(self, input: impl Into<String>) -> Self
Unique string identifying this scraper. This field is required.
sourcepub fn set_scraper_id(self, input: Option<String>) -> Self
pub fn set_scraper_id(self, input: Option<String>) -> Self
Unique string identifying this scraper.
sourcepub fn get_scraper_id(&self) -> &Option<String>
pub fn get_scraper_id(&self) -> &Option<String>
Unique string identifying this scraper.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of this scraper. This field is required.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of this scraper.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the IAM role that provides permissions for the scraper to dsicover, collect, and produce metrics on your behalf. This field is required.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the IAM role that provides permissions for the scraper to dsicover, collect, and produce metrics on your behalf.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the IAM role that provides permissions for the scraper to dsicover, collect, and produce metrics on your behalf.
sourcepub fn status(self, input: ScraperStatus) -> Self
pub fn status(self, input: ScraperStatus) -> Self
The status of this scraper. This field is required.
sourcepub fn set_status(self, input: Option<ScraperStatus>) -> Self
pub fn set_status(self, input: Option<ScraperStatus>) -> Self
The status of this scraper.
sourcepub fn get_status(&self) -> &Option<ScraperStatus>
pub fn get_status(&self) -> &Option<ScraperStatus>
The status of this scraper.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The time when the scraper was created. This field is required.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The time when the scraper was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The time when the scraper was created.
sourcepub fn last_modified_at(self, input: DateTime) -> Self
pub fn last_modified_at(self, input: DateTime) -> Self
The time when the scraper was last modified. This field is required.
sourcepub fn set_last_modified_at(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_at(self, input: Option<DateTime>) -> Self
The time when the scraper was last modified.
sourcepub fn get_last_modified_at(&self) -> &Option<DateTime>
pub fn get_last_modified_at(&self) -> &Option<DateTime>
The time when the scraper was last modified.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The tags of this scraper.
The tags of this scraper.
The tags of this scraper.
sourcepub fn status_reason(self, input: impl Into<String>) -> Self
pub fn status_reason(self, input: impl Into<String>) -> Self
The reason for failure if any.
sourcepub fn set_status_reason(self, input: Option<String>) -> Self
pub fn set_status_reason(self, input: Option<String>) -> Self
The reason for failure if any.
sourcepub fn get_status_reason(&self) -> &Option<String>
pub fn get_status_reason(&self) -> &Option<String>
The reason for failure if any.
sourcepub fn scrape_configuration(self, input: ScrapeConfiguration) -> Self
pub fn scrape_configuration(self, input: ScrapeConfiguration) -> Self
The configuration used to create the scraper. This field is required.
sourcepub fn set_scrape_configuration(
self,
input: Option<ScrapeConfiguration>
) -> Self
pub fn set_scrape_configuration( self, input: Option<ScrapeConfiguration> ) -> Self
The configuration used to create the scraper.
sourcepub fn get_scrape_configuration(&self) -> &Option<ScrapeConfiguration>
pub fn get_scrape_configuration(&self) -> &Option<ScrapeConfiguration>
The configuration used to create the scraper.
sourcepub fn source(self, input: Source) -> Self
pub fn source(self, input: Source) -> Self
The source that the scraper is discovering and collecting metrics from. This field is required.
sourcepub fn set_source(self, input: Option<Source>) -> Self
pub fn set_source(self, input: Option<Source>) -> Self
The source that the scraper is discovering and collecting metrics from.
sourcepub fn get_source(&self) -> &Option<Source>
pub fn get_source(&self) -> &Option<Source>
The source that the scraper is discovering and collecting metrics from.
sourcepub fn destination(self, input: Destination) -> Self
pub fn destination(self, input: Destination) -> Self
The destination that the scraper is producing metrics to. This field is required.
sourcepub fn set_destination(self, input: Option<Destination>) -> Self
pub fn set_destination(self, input: Option<Destination>) -> Self
The destination that the scraper is producing metrics to.
sourcepub fn get_destination(&self) -> &Option<Destination>
pub fn get_destination(&self) -> &Option<Destination>
The destination that the scraper is producing metrics to.
sourcepub fn build(self) -> Result<ScraperDescription, BuildError>
pub fn build(self) -> Result<ScraperDescription, BuildError>
Consumes the builder and constructs a ScraperDescription
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ScraperDescriptionBuilder
impl Clone for ScraperDescriptionBuilder
source§fn clone(&self) -> ScraperDescriptionBuilder
fn clone(&self) -> ScraperDescriptionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ScraperDescriptionBuilder
impl Debug for ScraperDescriptionBuilder
source§impl Default for ScraperDescriptionBuilder
impl Default for ScraperDescriptionBuilder
source§fn default() -> ScraperDescriptionBuilder
fn default() -> ScraperDescriptionBuilder
source§impl PartialEq for ScraperDescriptionBuilder
impl PartialEq for ScraperDescriptionBuilder
source§fn eq(&self, other: &ScraperDescriptionBuilder) -> bool
fn eq(&self, other: &ScraperDescriptionBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.