pub struct GlueJob {Show 13 fields
pub account_id: String,
pub name: String,
pub role: String,
pub command: Value,
pub default_arguments: BTreeMap<String, String>,
pub max_capacity: Option<f64>,
pub max_retries: i64,
pub timeout: Option<i64>,
pub glue_version: Option<String>,
pub worker_type: Option<String>,
pub number_of_workers: Option<i64>,
pub created_on: String,
pub last_modified_on: String,
}Expand description
Curated row for GET /_fakecloud/glue/jobs. Mirrors the
configured Glue Job state so tests can assert what CreateJob
recorded without re-listing through the AWS surface.
Fields§
§account_id: String§name: String§role: String§command: Value§default_arguments: BTreeMap<String, String>§max_capacity: Option<f64>§max_retries: i64§timeout: Option<i64>§glue_version: Option<String>§worker_type: Option<String>§number_of_workers: Option<i64>§created_on: String§last_modified_on: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for GlueJob
impl<'de> Deserialize<'de> for GlueJob
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GlueJob
impl RefUnwindSafe for GlueJob
impl Send for GlueJob
impl Sync for GlueJob
impl Unpin for GlueJob
impl UnsafeUnpin for GlueJob
impl UnwindSafe for GlueJob
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
Mutably borrows from an owned value. Read more