libZSservicesZSamazonka-codecommitZSamazonka-codecommit
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

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
Eq ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Read ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Show 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 #

NFData ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

Methods

rnf :: ObjectTypes -> () #

Hashable ObjectTypes Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.ObjectTypes

FromJSON 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" "libZSservicesZSamazonka-codecommitZSamazonka-codecommit" 'False) (C1 ('MetaCons "ObjectTypes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "destination") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ObjectTypeEnum)) :*: (S1 ('MetaSel ('Just "base") '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:destination:ObjectTypes', objectTypes_destination - The type of the object in the destination branch.

$sel:base:ObjectTypes', objectTypes_base - The type of the object in the base commit of the merge.

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

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

The type of the object in the destination branch.

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

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

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

The type of the object in the source branch.