amazonka-codecommit-2.0: Amazon CodeCommit 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.CodeCommit.Types.ObjectTypes

Description

 
Synopsis

Documentation

data ObjectTypes Source #

Information about the type of an object in a merge operation.

See: newObjectTypes smart constructor.

Constructors

ObjectTypes' 

Fields

Instances

Instances details
FromJSON ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Generic ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Associated Types

type Rep ObjectTypes :: Type -> Type #

Read ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Show ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

NFData ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Methods

rnf :: ObjectTypes -> () #

Eq ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Hashable ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

type Rep ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

type Rep ObjectTypes = D1 ('MetaData "ObjectTypes" "Amazonka.CodeCommit.Types.ObjectTypes" "amazonka-codecommit-2.0-974g5LOhuTPG9HgUSx02zG" 'False) (C1 ('MetaCons "ObjectTypes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "base") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ObjectTypeEnum)) :*: (S1 ('MetaSel ('Just "destination") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ObjectTypeEnum)) :*: S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ObjectTypeEnum)))))

newObjectTypes :: ObjectTypes Source #

Create a value of ObjectTypes 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:base:ObjectTypes', objectTypes_base - The type of the object in the base commit of the merge.

$sel:destination:ObjectTypes', objectTypes_destination - The type of the object in the destination branch.

$sel:source:ObjectTypes', objectTypes_source - The type of the object in the source branch.

objectTypes_base :: Lens' ObjectTypes (Maybe ObjectTypeEnum) Source #

The type of the object in the base commit of the merge.

objectTypes_destination :: Lens' ObjectTypes (Maybe ObjectTypeEnum) Source #

The type of the object in the destination branch.

objectTypes_source :: Lens' ObjectTypes (Maybe ObjectTypeEnum) Source #

The type of the object in the source branch.