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 alias(self, input: impl Into<String>) -> Self
pub fn alias(self, input: impl Into<String>) -> Self
(Optional) A name associated with the scraper.
sourcepub fn set_alias(self, input: Option<String>) -> Self
pub fn set_alias(self, input: Option<String>) -> Self
(Optional) A name associated with the scraper.
sourcepub fn scraper_id(self, input: impl Into<String>) -> Self
pub fn scraper_id(self, input: impl Into<String>) -> Self
The ID of the 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
The ID of the scraper.
sourcepub fn get_scraper_id(&self) -> &Option<String>
pub fn get_scraper_id(&self) -> &Option<String>
The ID of the 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 the 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 the 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 discover and collect 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 discover and collect 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 discover and collect metrics on your behalf.
sourcepub fn status(self, input: ScraperStatus) -> Self
pub fn status(self, input: ScraperStatus) -> Self
A structure that contains the current status of the scraper.
This field is required.sourcepub fn set_status(self, input: Option<ScraperStatus>) -> Self
pub fn set_status(self, input: Option<ScraperStatus>) -> Self
A structure that contains the current status of the scraper.
sourcepub fn get_status(&self) -> &Option<ScraperStatus>
pub fn get_status(&self) -> &Option<ScraperStatus>
A structure that contains the current status of the scraper.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The date and time that 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 date and time that the scraper was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The date and time that the scraper was created.
sourcepub fn last_modified_at(self, input: DateTime) -> Self
pub fn last_modified_at(self, input: DateTime) -> Self
The date and time that 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 date and time that the scraper was last modified.
sourcepub fn get_last_modified_at(&self) -> &Option<DateTime>
pub fn get_last_modified_at(&self) -> &Option<DateTime>
The date and time that the scraper was last modified.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
(Optional) The list of tag keys and values associated with the scraper.
(Optional) The list of tag keys and values associated with the scraper.
(Optional) The list of tag keys and values associated with the scraper.
sourcepub fn status_reason(self, input: impl Into<String>) -> Self
pub fn status_reason(self, input: impl Into<String>) -> Self
If there is a failure, the reason for the failure.
sourcepub fn set_status_reason(self, input: Option<String>) -> Self
pub fn set_status_reason(self, input: Option<String>) -> Self
If there is a failure, the reason for the failure.
sourcepub fn get_status_reason(&self) -> &Option<String>
pub fn get_status_reason(&self) -> &Option<String>
If there is a failure, the reason for the failure.
sourcepub fn scrape_configuration(self, input: ScrapeConfiguration) -> Self
pub fn scrape_configuration(self, input: ScrapeConfiguration) -> Self
The configuration file in use by 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 file in use by the scraper.
sourcepub fn get_scrape_configuration(&self) -> &Option<ScrapeConfiguration>
pub fn get_scrape_configuration(&self) -> &Option<ScrapeConfiguration>
The configuration file in use by the scraper.
sourcepub fn source(self, input: Source) -> Self
pub fn source(self, input: Source) -> Self
The Amazon EKS cluster from which the scraper collects metrics.
This field is required.sourcepub fn set_source(self, input: Option<Source>) -> Self
pub fn set_source(self, input: Option<Source>) -> Self
The Amazon EKS cluster from which the scraper collects metrics.
sourcepub fn get_source(&self) -> &Option<Source>
pub fn get_source(&self) -> &Option<Source>
The Amazon EKS cluster from which the scraper collects metrics.
sourcepub fn destination(self, input: Destination) -> Self
pub fn destination(self, input: Destination) -> Self
The Amazon Managed Service for Prometheus workspace the scraper sends 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 Amazon Managed Service for Prometheus workspace the scraper sends metrics to.
sourcepub fn get_destination(&self) -> &Option<Destination>
pub fn get_destination(&self) -> &Option<Destination>
The Amazon Managed Service for Prometheus workspace the scraper sends 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 ==
.