Struct aws_sdk_glue::types::builders::BlueprintBuilder
source · #[non_exhaustive]pub struct BlueprintBuilder { /* private fields */ }Expand description
A builder for Blueprint.
Implementations§
source§impl BlueprintBuilder
impl BlueprintBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the blueprint.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the blueprint.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the blueprint.
sourcepub fn created_on(self, input: DateTime) -> Self
pub fn created_on(self, input: DateTime) -> Self
The date and time the blueprint was registered.
sourcepub fn set_created_on(self, input: Option<DateTime>) -> Self
pub fn set_created_on(self, input: Option<DateTime>) -> Self
The date and time the blueprint was registered.
sourcepub fn get_created_on(&self) -> &Option<DateTime>
pub fn get_created_on(&self) -> &Option<DateTime>
The date and time the blueprint was registered.
sourcepub fn last_modified_on(self, input: DateTime) -> Self
pub fn last_modified_on(self, input: DateTime) -> Self
The date and time the blueprint was last modified.
sourcepub fn set_last_modified_on(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_on(self, input: Option<DateTime>) -> Self
The date and time the blueprint was last modified.
sourcepub fn get_last_modified_on(&self) -> &Option<DateTime>
pub fn get_last_modified_on(&self) -> &Option<DateTime>
The date and time the blueprint was last modified.
sourcepub fn parameter_spec(self, input: impl Into<String>) -> Self
pub fn parameter_spec(self, input: impl Into<String>) -> Self
A JSON string that indicates the list of parameter specifications for the blueprint.
sourcepub fn set_parameter_spec(self, input: Option<String>) -> Self
pub fn set_parameter_spec(self, input: Option<String>) -> Self
A JSON string that indicates the list of parameter specifications for the blueprint.
sourcepub fn get_parameter_spec(&self) -> &Option<String>
pub fn get_parameter_spec(&self) -> &Option<String>
A JSON string that indicates the list of parameter specifications for the blueprint.
sourcepub fn blueprint_location(self, input: impl Into<String>) -> Self
pub fn blueprint_location(self, input: impl Into<String>) -> Self
Specifies the path in Amazon S3 where the blueprint is published.
sourcepub fn set_blueprint_location(self, input: Option<String>) -> Self
pub fn set_blueprint_location(self, input: Option<String>) -> Self
Specifies the path in Amazon S3 where the blueprint is published.
sourcepub fn get_blueprint_location(&self) -> &Option<String>
pub fn get_blueprint_location(&self) -> &Option<String>
Specifies the path in Amazon S3 where the blueprint is published.
sourcepub fn blueprint_service_location(self, input: impl Into<String>) -> Self
pub fn blueprint_service_location(self, input: impl Into<String>) -> Self
Specifies a path in Amazon S3 where the blueprint is copied when you call CreateBlueprint/UpdateBlueprint to register the blueprint in Glue.
sourcepub fn set_blueprint_service_location(self, input: Option<String>) -> Self
pub fn set_blueprint_service_location(self, input: Option<String>) -> Self
Specifies a path in Amazon S3 where the blueprint is copied when you call CreateBlueprint/UpdateBlueprint to register the blueprint in Glue.
sourcepub fn get_blueprint_service_location(&self) -> &Option<String>
pub fn get_blueprint_service_location(&self) -> &Option<String>
Specifies a path in Amazon S3 where the blueprint is copied when you call CreateBlueprint/UpdateBlueprint to register the blueprint in Glue.
sourcepub fn status(self, input: BlueprintStatus) -> Self
pub fn status(self, input: BlueprintStatus) -> Self
The status of the blueprint registration.
-
Creating — The blueprint registration is in progress.
-
Active — The blueprint has been successfully registered.
-
Updating — An update to the blueprint registration is in progress.
-
Failed — The blueprint registration failed.
sourcepub fn set_status(self, input: Option<BlueprintStatus>) -> Self
pub fn set_status(self, input: Option<BlueprintStatus>) -> Self
The status of the blueprint registration.
-
Creating — The blueprint registration is in progress.
-
Active — The blueprint has been successfully registered.
-
Updating — An update to the blueprint registration is in progress.
-
Failed — The blueprint registration failed.
sourcepub fn get_status(&self) -> &Option<BlueprintStatus>
pub fn get_status(&self) -> &Option<BlueprintStatus>
The status of the blueprint registration.
-
Creating — The blueprint registration is in progress.
-
Active — The blueprint has been successfully registered.
-
Updating — An update to the blueprint registration is in progress.
-
Failed — The blueprint registration failed.
sourcepub fn error_message(self, input: impl Into<String>) -> Self
pub fn error_message(self, input: impl Into<String>) -> Self
An error message.
sourcepub fn set_error_message(self, input: Option<String>) -> Self
pub fn set_error_message(self, input: Option<String>) -> Self
An error message.
sourcepub fn get_error_message(&self) -> &Option<String>
pub fn get_error_message(&self) -> &Option<String>
An error message.
sourcepub fn last_active_definition(self, input: LastActiveDefinition) -> Self
pub fn last_active_definition(self, input: LastActiveDefinition) -> Self
When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.
sourcepub fn set_last_active_definition(
self,
input: Option<LastActiveDefinition>
) -> Self
pub fn set_last_active_definition( self, input: Option<LastActiveDefinition> ) -> Self
When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.
sourcepub fn get_last_active_definition(&self) -> &Option<LastActiveDefinition>
pub fn get_last_active_definition(&self) -> &Option<LastActiveDefinition>
When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.
Trait Implementations§
source§impl Clone for BlueprintBuilder
impl Clone for BlueprintBuilder
source§fn clone(&self) -> BlueprintBuilder
fn clone(&self) -> BlueprintBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for BlueprintBuilder
impl Debug for BlueprintBuilder
source§impl Default for BlueprintBuilder
impl Default for BlueprintBuilder
source§fn default() -> BlueprintBuilder
fn default() -> BlueprintBuilder
source§impl PartialEq<BlueprintBuilder> for BlueprintBuilder
impl PartialEq<BlueprintBuilder> for BlueprintBuilder
source§fn eq(&self, other: &BlueprintBuilder) -> bool
fn eq(&self, other: &BlueprintBuilder) -> bool
self and other values to be equal, and is used
by ==.