amazonka-codebuild-2.0: Amazon CodeBuild SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CodeBuild.Types.DebugSession

Description

 
Synopsis

Documentation

data DebugSession Source #

Contains information about the debug session for a build. For more information, see Viewing a running build in Session Manager.

See: newDebugSession smart constructor.

Constructors

DebugSession' 

Fields

  • sessionEnabled :: Maybe Bool

    Specifies if session debugging is enabled for this build.

  • sessionTarget :: Maybe Text

    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.

Instances

Instances details
FromJSON DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

Generic DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

Associated Types

type Rep DebugSession :: Type -> Type #

Read DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

Show DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

NFData DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

Methods

rnf :: DebugSession -> () #

Eq DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

Hashable DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

type Rep DebugSession Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.DebugSession

type Rep DebugSession = D1 ('MetaData "DebugSession" "Amazonka.CodeBuild.Types.DebugSession" "amazonka-codebuild-2.0-3KpZspRk9Ul8Wu4D0cM13Q" 'False) (C1 ('MetaCons "DebugSession'" 'PrefixI 'True) (S1 ('MetaSel ('Just "sessionEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "sessionTarget") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newDebugSession :: DebugSession Source #

Create a value of DebugSession with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sessionEnabled:DebugSession', debugSession_sessionEnabled - Specifies if session debugging is enabled for this build.

$sel:sessionTarget:DebugSession', debugSession_sessionTarget - 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.

debugSession_sessionEnabled :: Lens' DebugSession (Maybe Bool) Source #

Specifies if session debugging is enabled for this build.

debugSession_sessionTarget :: Lens' DebugSession (Maybe Text) Source #

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.