amazonka-neptune-2.0: Amazon Neptune 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.Neptune.Types.GlobalClusterMember

Description

 
Synopsis

Documentation

data GlobalClusterMember Source #

A data structure with information about any primary and secondary clusters associated with an Neptune global database.

See: newGlobalClusterMember smart constructor.

Constructors

GlobalClusterMember' 

Fields

  • dbClusterArn :: Maybe Text

    The Amazon Resource Name (ARN) for each Neptune cluster.

  • isWriter :: Maybe Bool

    Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.

  • readers :: Maybe [Text]

    The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.

Instances

Instances details
FromXML GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

Generic GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

Associated Types

type Rep GlobalClusterMember :: Type -> Type #

Read GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

Show GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

NFData GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

Methods

rnf :: GlobalClusterMember -> () #

Eq GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

Hashable GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

type Rep GlobalClusterMember Source # 
Instance details

Defined in Amazonka.Neptune.Types.GlobalClusterMember

type Rep GlobalClusterMember = D1 ('MetaData "GlobalClusterMember" "Amazonka.Neptune.Types.GlobalClusterMember" "amazonka-neptune-2.0-2gYqDRsIJxo6L8BEj2Stvk" 'False) (C1 ('MetaCons "GlobalClusterMember'" 'PrefixI 'True) (S1 ('MetaSel ('Just "dbClusterArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "isWriter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "readers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])))))

newGlobalClusterMember :: GlobalClusterMember Source #

Create a value of GlobalClusterMember 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:dbClusterArn:GlobalClusterMember', globalClusterMember_dbClusterArn - The Amazon Resource Name (ARN) for each Neptune cluster.

$sel:isWriter:GlobalClusterMember', globalClusterMember_isWriter - Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.

$sel:readers:GlobalClusterMember', globalClusterMember_readers - The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.

globalClusterMember_dbClusterArn :: Lens' GlobalClusterMember (Maybe Text) Source #

The Amazon Resource Name (ARN) for each Neptune cluster.

globalClusterMember_isWriter :: Lens' GlobalClusterMember (Maybe Bool) Source #

Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.

globalClusterMember_readers :: Lens' GlobalClusterMember (Maybe [Text]) Source #

The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.