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.IsBinaryFile

Description

 
Synopsis

Documentation

data IsBinaryFile Source #

Information about whether a file is binary or textual in a merge or pull request operation.

See: newIsBinaryFile smart constructor.

Constructors

IsBinaryFile' 

Fields

  • destination :: Maybe Bool

    The binary or non-binary status of a file in the destination of a merge or pull request.

  • base :: Maybe Bool

    The binary or non-binary status of a file in the base of a merge or pull request.

  • source :: Maybe Bool

    The binary or non-binary status of file in the source of a merge or pull request.

Instances

Instances details
Eq IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

Read IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

Show IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

Generic IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

Associated Types

type Rep IsBinaryFile :: Type -> Type #

NFData IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

Methods

rnf :: IsBinaryFile -> () #

Hashable IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

FromJSON IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

type Rep IsBinaryFile Source # 
Instance details

Defined in Amazonka.CodeCommit.Types.IsBinaryFile

type Rep IsBinaryFile = D1 ('MetaData "IsBinaryFile" "Amazonka.CodeCommit.Types.IsBinaryFile" "libZSservicesZSamazonka-codecommitZSamazonka-codecommit" 'False) (C1 ('MetaCons "IsBinaryFile'" 'PrefixI 'True) (S1 ('MetaSel ('Just "destination") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "base") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))))

newIsBinaryFile :: IsBinaryFile Source #

Create a value of IsBinaryFile 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:IsBinaryFile', isBinaryFile_destination - The binary or non-binary status of a file in the destination of a merge or pull request.

$sel:base:IsBinaryFile', isBinaryFile_base - The binary or non-binary status of a file in the base of a merge or pull request.

$sel:source:IsBinaryFile', isBinaryFile_source - The binary or non-binary status of file in the source of a merge or pull request.

isBinaryFile_destination :: Lens' IsBinaryFile (Maybe Bool) Source #

The binary or non-binary status of a file in the destination of a merge or pull request.

isBinaryFile_base :: Lens' IsBinaryFile (Maybe Bool) Source #

The binary or non-binary status of a file in the base of a merge or pull request.

isBinaryFile_source :: Lens' IsBinaryFile (Maybe Bool) Source #

The binary or non-binary status of file in the source of a merge or pull request.