Struct aws_sdk_glue::types::LastActiveDefinition
source · #[non_exhaustive]pub struct LastActiveDefinition {
pub description: Option<String>,
pub last_modified_on: Option<DateTime>,
pub parameter_spec: Option<String>,
pub blueprint_location: Option<String>,
pub blueprint_service_location: Option<String>,
}Expand description
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.description: Option<String>The description of the blueprint.
last_modified_on: Option<DateTime>The date and time the blueprint was last modified.
parameter_spec: Option<String>A JSON string specifying the parameters for the blueprint.
blueprint_location: Option<String>Specifies a path in Amazon S3 where the blueprint is published by the Glue developer.
blueprint_service_location: Option<String>Specifies a path in Amazon S3 where the blueprint is copied when you create or update the blueprint.
Implementations§
source§impl LastActiveDefinition
impl LastActiveDefinition
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the blueprint.
sourcepub fn last_modified_on(&self) -> Option<&DateTime>
pub fn last_modified_on(&self) -> Option<&DateTime>
The date and time the blueprint was last modified.
sourcepub fn parameter_spec(&self) -> Option<&str>
pub fn parameter_spec(&self) -> Option<&str>
A JSON string specifying the parameters for the blueprint.
sourcepub fn blueprint_location(&self) -> Option<&str>
pub fn blueprint_location(&self) -> Option<&str>
Specifies a path in Amazon S3 where the blueprint is published by the Glue developer.
sourcepub fn blueprint_service_location(&self) -> Option<&str>
pub fn blueprint_service_location(&self) -> Option<&str>
Specifies a path in Amazon S3 where the blueprint is copied when you create or update the blueprint.
source§impl LastActiveDefinition
impl LastActiveDefinition
sourcepub fn builder() -> LastActiveDefinitionBuilder
pub fn builder() -> LastActiveDefinitionBuilder
Creates a new builder-style object to manufacture LastActiveDefinition.
Trait Implementations§
source§impl Clone for LastActiveDefinition
impl Clone for LastActiveDefinition
source§fn clone(&self) -> LastActiveDefinition
fn clone(&self) -> LastActiveDefinition
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for LastActiveDefinition
impl Debug for LastActiveDefinition
source§impl PartialEq for LastActiveDefinition
impl PartialEq for LastActiveDefinition
source§fn eq(&self, other: &LastActiveDefinition) -> bool
fn eq(&self, other: &LastActiveDefinition) -> bool
self and other values to be equal, and is used
by ==.