pub struct Sandbox {Show 20 fields
pub arn: Option<String>,
pub current_session: Option<SandboxSession>,
pub encryption_key: Option<String>,
pub end_time: Option<f64>,
pub environment: Option<ProjectEnvironment>,
pub file_system_locations: Option<Vec<ProjectFileSystemLocation>>,
pub id: Option<String>,
pub log_config: Option<LogsConfig>,
pub project_name: Option<String>,
pub queued_timeout_in_minutes: Option<i32>,
pub request_time: Option<f64>,
pub secondary_source_versions: Option<Vec<ProjectSourceVersion>>,
pub secondary_sources: Option<Vec<ProjectSource>>,
pub service_role: Option<String>,
pub source: Option<ProjectSource>,
pub source_version: Option<String>,
pub start_time: Option<f64>,
pub status: Option<String>,
pub timeout_in_minutes: Option<i32>,
pub vpc_config: Option<VpcConfig>,
}Fields§
§arn: Option<String>§current_session: Option<SandboxSession>§encryption_key: Option<String>§end_time: Option<f64>§environment: Option<ProjectEnvironment>§file_system_locations: Option<Vec<ProjectFileSystemLocation>>§id: Option<String>§log_config: Option<LogsConfig>§project_name: Option<String>§queued_timeout_in_minutes: Option<i32>§request_time: Option<f64>§secondary_source_versions: Option<Vec<ProjectSourceVersion>>§secondary_sources: Option<Vec<ProjectSource>>§service_role: Option<String>§source: Option<ProjectSource>§source_version: Option<String>§start_time: Option<f64>§status: Option<String>§timeout_in_minutes: Option<i32>§vpc_config: Option<VpcConfig>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sandbox
impl<'de> Deserialize<'de> for Sandbox
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 Sandbox
impl RefUnwindSafe for Sandbox
impl Send for Sandbox
impl Sync for Sandbox
impl Unpin for Sandbox
impl UnsafeUnpin for Sandbox
impl UnwindSafe for Sandbox
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.