amazonka-evidently-2.0: Amazon CloudWatch Evidently 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.Evidently.Types.ProjectSummary

Description

 
Synopsis

Documentation

data ProjectSummary Source #

A structure that contains configuration information about an Evidently project.

See: newProjectSummary smart constructor.

Constructors

ProjectSummary' 

Fields

Instances

Instances details
FromJSON ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

Generic ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

Associated Types

type Rep ProjectSummary :: Type -> Type #

Read ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

Show ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

NFData ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

Methods

rnf :: ProjectSummary -> () #

Eq ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

Hashable ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

type Rep ProjectSummary Source # 
Instance details

Defined in Amazonka.Evidently.Types.ProjectSummary

type Rep ProjectSummary = D1 ('MetaData "ProjectSummary" "Amazonka.Evidently.Types.ProjectSummary" "amazonka-evidently-2.0-Es2fJk98R0DAUPYaVkZSYC" 'False) (C1 ('MetaCons "ProjectSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "activeExperimentCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "activeLaunchCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "experimentCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "featureCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "launchCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))) :*: ((S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "createdTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: (S1 ('MetaSel ('Just "lastUpdatedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ProjectStatus))))))

newProjectSummary Source #

Create a value of ProjectSummary 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:activeExperimentCount:ProjectSummary', projectSummary_activeExperimentCount - The number of experiments currently in the project.

$sel:activeLaunchCount:ProjectSummary', projectSummary_activeLaunchCount - The number of ongoing launches currently in the project.

$sel:description:ProjectSummary', projectSummary_description - The description of the project.

$sel:experimentCount:ProjectSummary', projectSummary_experimentCount - The number of experiments currently in the project.

$sel:featureCount:ProjectSummary', projectSummary_featureCount - The number of features currently in the project.

$sel:launchCount:ProjectSummary', projectSummary_launchCount - The number of launches currently in the project, including launches that are ongoing, completed, and not started yet.

$sel:tags:ProjectSummary', projectSummary_tags - The list of tag keys and values associated with this project.

$sel:arn:ProjectSummary', projectSummary_arn - The name or ARN of the project.

$sel:createdTime:ProjectSummary', projectSummary_createdTime - The date and time that the project is created.

$sel:lastUpdatedTime:ProjectSummary', projectSummary_lastUpdatedTime - The date and time that the project was most recently updated.

$sel:name:ProjectSummary', projectSummary_name - The name of the project.

$sel:status:ProjectSummary', projectSummary_status - The current state of the project.

projectSummary_activeExperimentCount :: Lens' ProjectSummary (Maybe Integer) Source #

The number of experiments currently in the project.

projectSummary_activeLaunchCount :: Lens' ProjectSummary (Maybe Integer) Source #

The number of ongoing launches currently in the project.

projectSummary_description :: Lens' ProjectSummary (Maybe Text) Source #

The description of the project.

projectSummary_experimentCount :: Lens' ProjectSummary (Maybe Integer) Source #

The number of experiments currently in the project.

projectSummary_featureCount :: Lens' ProjectSummary (Maybe Integer) Source #

The number of features currently in the project.

projectSummary_launchCount :: Lens' ProjectSummary (Maybe Integer) Source #

The number of launches currently in the project, including launches that are ongoing, completed, and not started yet.

projectSummary_tags :: Lens' ProjectSummary (Maybe (HashMap Text Text)) Source #

The list of tag keys and values associated with this project.

projectSummary_arn :: Lens' ProjectSummary Text Source #

The name or ARN of the project.

projectSummary_createdTime :: Lens' ProjectSummary UTCTime Source #

The date and time that the project is created.

projectSummary_lastUpdatedTime :: Lens' ProjectSummary UTCTime Source #

The date and time that the project was most recently updated.

projectSummary_status :: Lens' ProjectSummary ProjectStatus Source #

The current state of the project.