amazonka-managedblockchain-2.0: Amazon Managed Blockchain 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.ManagedBlockChain.Types.Accessor

Description

 
Synopsis

Documentation

data Accessor Source #

The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is subject to change. We recommend that you use this feature only with test scenarios, and not in production environments.

The properties of the Accessor.

See: newAccessor smart constructor.

Constructors

Accessor' 

Fields

  • arn :: Maybe Text

    The Amazon Resource Name (ARN) of the accessor. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

  • billingToken :: Maybe Text

    The billing token is a property of the accessor. Use this token to make Ethereum API calls to your Ethereum node. The billing token is used to track your accessor object for billing Ethereum API requests made to your Ethereum nodes.

  • creationDate :: Maybe ISO8601

    The creation date and time of the accessor.

  • id :: Maybe Text

    The unique identifier of the accessor.

  • status :: Maybe AccessorStatus

    The current status of the accessor.

  • type' :: Maybe AccessorType

    The type of the accessor.

    Currently accessor type is restricted to BILLING_TOKEN.

Instances

Instances details
FromJSON Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

Generic Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

Associated Types

type Rep Accessor :: Type -> Type #

Methods

from :: Accessor -> Rep Accessor x #

to :: Rep Accessor x -> Accessor #

Read Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

Show Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

NFData Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

Methods

rnf :: Accessor -> () #

Eq Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

Hashable Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

Methods

hashWithSalt :: Int -> Accessor -> Int #

hash :: Accessor -> Int #

type Rep Accessor Source # 
Instance details

Defined in Amazonka.ManagedBlockChain.Types.Accessor

newAccessor :: Accessor Source #

Create a value of Accessor 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:arn:Accessor', accessor_arn - The Amazon Resource Name (ARN) of the accessor. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

$sel:billingToken:Accessor', accessor_billingToken - The billing token is a property of the accessor. Use this token to make Ethereum API calls to your Ethereum node. The billing token is used to track your accessor object for billing Ethereum API requests made to your Ethereum nodes.

$sel:creationDate:Accessor', accessor_creationDate - The creation date and time of the accessor.

$sel:id:Accessor', accessor_id - The unique identifier of the accessor.

$sel:status:Accessor', accessor_status - The current status of the accessor.

$sel:type':Accessor', accessor_type - The type of the accessor.

Currently accessor type is restricted to BILLING_TOKEN.

accessor_arn :: Lens' Accessor (Maybe Text) Source #

The Amazon Resource Name (ARN) of the accessor. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

accessor_billingToken :: Lens' Accessor (Maybe Text) Source #

The billing token is a property of the accessor. Use this token to make Ethereum API calls to your Ethereum node. The billing token is used to track your accessor object for billing Ethereum API requests made to your Ethereum nodes.

accessor_creationDate :: Lens' Accessor (Maybe UTCTime) Source #

The creation date and time of the accessor.

accessor_id :: Lens' Accessor (Maybe Text) Source #

The unique identifier of the accessor.

accessor_status :: Lens' Accessor (Maybe AccessorStatus) Source #

The current status of the accessor.

accessor_type :: Lens' Accessor (Maybe AccessorType) Source #

The type of the accessor.

Currently accessor type is restricted to BILLING_TOKEN.