amazonka-sagemaker-2.0: Amazon SageMaker Service 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.SageMaker.Types.DeviceSelectionConfig

Description

 
Synopsis

Documentation

data DeviceSelectionConfig Source #

Contains information about the configurations of selected devices.

See: newDeviceSelectionConfig smart constructor.

Constructors

DeviceSelectionConfig' 

Fields

Instances

Instances details
FromJSON DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

ToJSON DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

Generic DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

Associated Types

type Rep DeviceSelectionConfig :: Type -> Type #

Read DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

Show DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

NFData DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

Methods

rnf :: DeviceSelectionConfig -> () #

Eq DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

Hashable DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

type Rep DeviceSelectionConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DeviceSelectionConfig

type Rep DeviceSelectionConfig = D1 ('MetaData "DeviceSelectionConfig" "Amazonka.SageMaker.Types.DeviceSelectionConfig" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "DeviceSelectionConfig'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "deviceNameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "deviceNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "percentage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "deviceSubsetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DeviceSubsetType))))

newDeviceSelectionConfig Source #

Create a value of DeviceSelectionConfig 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:deviceNameContains:DeviceSelectionConfig', deviceSelectionConfig_deviceNameContains - A filter to select devices with names containing this name.

$sel:deviceNames:DeviceSelectionConfig', deviceSelectionConfig_deviceNames - List of devices chosen to deploy.

$sel:percentage:DeviceSelectionConfig', deviceSelectionConfig_percentage - Percentage of devices in the fleet to deploy to the current stage.

$sel:deviceSubsetType:DeviceSelectionConfig', deviceSelectionConfig_deviceSubsetType - Type of device subsets to deploy to the current stage.

deviceSelectionConfig_deviceNameContains :: Lens' DeviceSelectionConfig (Maybe Text) Source #

A filter to select devices with names containing this name.

deviceSelectionConfig_percentage :: Lens' DeviceSelectionConfig (Maybe Int) Source #

Percentage of devices in the fleet to deploy to the current stage.

deviceSelectionConfig_deviceSubsetType :: Lens' DeviceSelectionConfig DeviceSubsetType Source #

Type of device subsets to deploy to the current stage.