Struct aws_sdk_codebuild::types::builders::DebugSessionBuilder
source · #[non_exhaustive]pub struct DebugSessionBuilder { /* private fields */ }
Expand description
A builder for DebugSession
.
Implementations§
source§impl DebugSessionBuilder
impl DebugSessionBuilder
sourcepub fn session_enabled(self, input: bool) -> Self
pub fn session_enabled(self, input: bool) -> Self
Specifies if session debugging is enabled for this build.
sourcepub fn set_session_enabled(self, input: Option<bool>) -> Self
pub fn set_session_enabled(self, input: Option<bool>) -> Self
Specifies if session debugging is enabled for this build.
sourcepub fn get_session_enabled(&self) -> &Option<bool>
pub fn get_session_enabled(&self) -> &Option<bool>
Specifies if session debugging is enabled for this build.
sourcepub fn session_target(self, input: impl Into<String>) -> Self
pub fn session_target(self, input: impl Into<String>) -> Self
Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.
sourcepub fn set_session_target(self, input: Option<String>) -> Self
pub fn set_session_target(self, input: Option<String>) -> Self
Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.
sourcepub fn get_session_target(&self) -> &Option<String>
pub fn get_session_target(&self) -> &Option<String>
Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.
sourcepub fn build(self) -> DebugSession
pub fn build(self) -> DebugSession
Consumes the builder and constructs a DebugSession
.
Trait Implementations§
source§impl Clone for DebugSessionBuilder
impl Clone for DebugSessionBuilder
source§fn clone(&self) -> DebugSessionBuilder
fn clone(&self) -> DebugSessionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DebugSessionBuilder
impl Debug for DebugSessionBuilder
source§impl Default for DebugSessionBuilder
impl Default for DebugSessionBuilder
source§fn default() -> DebugSessionBuilder
fn default() -> DebugSessionBuilder
source§impl PartialEq for DebugSessionBuilder
impl PartialEq for DebugSessionBuilder
impl StructuralPartialEq for DebugSessionBuilder
Auto Trait Implementations§
impl Freeze for DebugSessionBuilder
impl RefUnwindSafe for DebugSessionBuilder
impl Send for DebugSessionBuilder
impl Sync for DebugSessionBuilder
impl Unpin for DebugSessionBuilder
impl UnwindSafe for DebugSessionBuilder
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