amazonka-guardduty-2.0: Amazon GuardDuty 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.GuardDuty.Types.EcsClusterDetails

Description

 
Synopsis

Documentation

data EcsClusterDetails Source #

Contains information about the details of the ECS Cluster.

See: newEcsClusterDetails smart constructor.

Constructors

EcsClusterDetails' 

Fields

Instances

Instances details
FromJSON EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

Generic EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

Associated Types

type Rep EcsClusterDetails :: Type -> Type #

Read EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

Show EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

NFData EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

Methods

rnf :: EcsClusterDetails -> () #

Eq EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

Hashable EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

type Rep EcsClusterDetails Source # 
Instance details

Defined in Amazonka.GuardDuty.Types.EcsClusterDetails

type Rep EcsClusterDetails = D1 ('MetaData "EcsClusterDetails" "Amazonka.GuardDuty.Types.EcsClusterDetails" "amazonka-guardduty-2.0-2NN502sGcQRH5risQZb24c" 'False) (C1 ('MetaCons "EcsClusterDetails'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "activeServicesCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "registeredContainerInstancesCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))) :*: ((S1 ('MetaSel ('Just "runningTasksCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "taskDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EcsTaskDetails))))))

newEcsClusterDetails :: EcsClusterDetails Source #

Create a value of EcsClusterDetails 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:activeServicesCount:EcsClusterDetails', ecsClusterDetails_activeServicesCount - The number of services that are running on the cluster in an ACTIVE state.

EcsClusterDetails, ecsClusterDetails_arn - The Amazon Resource Name (ARN) that identifies the cluster.

$sel:name:EcsClusterDetails', ecsClusterDetails_name - The name of the ECS Cluster.

$sel:registeredContainerInstancesCount:EcsClusterDetails', ecsClusterDetails_registeredContainerInstancesCount - The number of container instances registered into the cluster.

$sel:runningTasksCount:EcsClusterDetails', ecsClusterDetails_runningTasksCount - The number of tasks in the cluster that are in the RUNNING state.

$sel:status:EcsClusterDetails', ecsClusterDetails_status - The status of the ECS cluster.

EcsClusterDetails, ecsClusterDetails_tags - The tags of the ECS Cluster.

$sel:taskDetails:EcsClusterDetails', ecsClusterDetails_taskDetails - Contains information about the details of the ECS Task.

ecsClusterDetails_activeServicesCount :: Lens' EcsClusterDetails (Maybe Int) Source #

The number of services that are running on the cluster in an ACTIVE state.

ecsClusterDetails_arn :: Lens' EcsClusterDetails (Maybe Text) Source #

The Amazon Resource Name (ARN) that identifies the cluster.

ecsClusterDetails_registeredContainerInstancesCount :: Lens' EcsClusterDetails (Maybe Int) Source #

The number of container instances registered into the cluster.

ecsClusterDetails_runningTasksCount :: Lens' EcsClusterDetails (Maybe Int) Source #

The number of tasks in the cluster that are in the RUNNING state.

ecsClusterDetails_tags :: Lens' EcsClusterDetails (Maybe [Tag]) Source #

The tags of the ECS Cluster.

ecsClusterDetails_taskDetails :: Lens' EcsClusterDetails (Maybe EcsTaskDetails) Source #

Contains information about the details of the ECS Task.