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 ==.impl StructuralPartialEq for LastActiveDefinition
Auto Trait Implementations§
impl Freeze for LastActiveDefinition
impl RefUnwindSafe for LastActiveDefinition
impl Send for LastActiveDefinition
impl Sync for LastActiveDefinition
impl Unpin for LastActiveDefinition
impl UnwindSafe for LastActiveDefinition
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more