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.UpdateProject

Description

Updates the description of an existing project.

To create a new project, use CreateProject.

Don't use this operation to update the data storage options of a project. Instead, use UpdateProjectDataDelivery.

Don't use this operation to update the tags of a project. Instead, use TagResource.

Synopsis

Creating a Request

data UpdateProject Source #

See: newUpdateProject smart constructor.

Constructors

UpdateProject' 

Fields

  • appConfigResource :: Maybe ProjectAppConfigResourceConfig

    Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to

    This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.

  • description :: Maybe Text

    An optional description of the project.

  • project :: Text

    The name or ARN of the project to update.

Instances

Instances details
ToJSON UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

ToHeaders UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

ToPath UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

ToQuery UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

AWSRequest UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Associated Types

type AWSResponse UpdateProject #

Generic UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Associated Types

type Rep UpdateProject :: Type -> Type #

Read UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Show UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

NFData UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Methods

rnf :: UpdateProject -> () #

Eq UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Hashable UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

type AWSResponse UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

type Rep UpdateProject Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

type Rep UpdateProject = D1 ('MetaData "UpdateProject" "Amazonka.Evidently.UpdateProject" "amazonka-evidently-2.0-Es2fJk98R0DAUPYaVkZSYC" 'False) (C1 ('MetaCons "UpdateProject'" 'PrefixI 'True) (S1 ('MetaSel ('Just "appConfigResource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProjectAppConfigResourceConfig)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "project") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateProject Source #

Create a value of UpdateProject 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:

UpdateProject, updateProject_appConfigResource - Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to

This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.

UpdateProject, updateProject_description - An optional description of the project.

UpdateProject, updateProject_project - The name or ARN of the project to update.

Request Lenses

updateProject_appConfigResource :: Lens' UpdateProject (Maybe ProjectAppConfigResourceConfig) Source #

Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to

This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.

updateProject_description :: Lens' UpdateProject (Maybe Text) Source #

An optional description of the project.

updateProject_project :: Lens' UpdateProject Text Source #

The name or ARN of the project to update.

Destructuring the Response

data UpdateProjectResponse Source #

See: newUpdateProjectResponse smart constructor.

Constructors

UpdateProjectResponse' 

Fields

Instances

Instances details
Generic UpdateProjectResponse Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Associated Types

type Rep UpdateProjectResponse :: Type -> Type #

Read UpdateProjectResponse Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Show UpdateProjectResponse Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

NFData UpdateProjectResponse Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

Methods

rnf :: UpdateProjectResponse -> () #

Eq UpdateProjectResponse Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

type Rep UpdateProjectResponse Source # 
Instance details

Defined in Amazonka.Evidently.UpdateProject

type Rep UpdateProjectResponse = D1 ('MetaData "UpdateProjectResponse" "Amazonka.Evidently.UpdateProject" "amazonka-evidently-2.0-Es2fJk98R0DAUPYaVkZSYC" 'False) (C1 ('MetaCons "UpdateProjectResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "project") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Project)))

newUpdateProjectResponse Source #

Create a value of UpdateProjectResponse 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:httpStatus:UpdateProjectResponse', updateProjectResponse_httpStatus - The response's http status code.

UpdateProject, updateProjectResponse_project - A structure containing information about the updated project.

Response Lenses

updateProjectResponse_project :: Lens' UpdateProjectResponse Project Source #

A structure containing information about the updated project.