amazonka-ec2-2.0: Amazon Elastic Compute Cloud 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.EC2.Types.NetworkBandwidthGbps

Description

 
Synopsis

Documentation

data NetworkBandwidthGbps Source #

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide.

See: newNetworkBandwidthGbps smart constructor.

Constructors

NetworkBandwidthGbps' 

Fields

  • max :: Maybe Double

    The maximum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no maximum limit.

  • min :: Maybe Double

    The minimum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no minimum limit.

Instances

Instances details
ToQuery NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

FromXML NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

Generic NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

Associated Types

type Rep NetworkBandwidthGbps :: Type -> Type #

Read NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

Show NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

NFData NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

Methods

rnf :: NetworkBandwidthGbps -> () #

Eq NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

Hashable NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

type Rep NetworkBandwidthGbps Source # 
Instance details

Defined in Amazonka.EC2.Types.NetworkBandwidthGbps

type Rep NetworkBandwidthGbps = D1 ('MetaData "NetworkBandwidthGbps" "Amazonka.EC2.Types.NetworkBandwidthGbps" "amazonka-ec2-2.0-48L9RAJvmvzAdBkRegqWCL" 'False) (C1 ('MetaCons "NetworkBandwidthGbps'" 'PrefixI 'True) (S1 ('MetaSel ('Just "max") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "min") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))))

newNetworkBandwidthGbps :: NetworkBandwidthGbps Source #

Create a value of NetworkBandwidthGbps 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:max:NetworkBandwidthGbps', networkBandwidthGbps_max - The maximum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no maximum limit.

$sel:min:NetworkBandwidthGbps', networkBandwidthGbps_min - The minimum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no minimum limit.

networkBandwidthGbps_max :: Lens' NetworkBandwidthGbps (Maybe Double) Source #

The maximum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no maximum limit.

networkBandwidthGbps_min :: Lens' NetworkBandwidthGbps (Maybe Double) Source #

The minimum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no minimum limit.