libZSservicesZSamazonka-appconfigZSamazonka-appconfig
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.AppConfig.CreateApplication

Description

An application in AppConfig is a logical unit of code that provides capabilities for your customers. For example, an application can be a microservice that runs on Amazon EC2 instances, a mobile application installed by your users, a serverless application using Amazon API Gateway and AWS Lambda, or any system you run on behalf of others.

Synopsis

Creating a Request

data CreateApplication Source #

See: newCreateApplication smart constructor.

Constructors

CreateApplication' 

Fields

  • description :: Maybe Text

    A description of the application.

  • tags :: Maybe (HashMap Text Text)

    Metadata to assign to the application. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

  • name :: Text

    A name for the application.

Instances

Instances details
Eq CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

Read CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

Show CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

Generic CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

Associated Types

type Rep CreateApplication :: Type -> Type #

NFData CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

Methods

rnf :: CreateApplication -> () #

Hashable CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

ToJSON CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

AWSRequest CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

Associated Types

type AWSResponse CreateApplication #

ToHeaders CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

ToPath CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

ToQuery CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

type Rep CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

type Rep CreateApplication = D1 ('MetaData "CreateApplication" "Amazonka.AppConfig.CreateApplication" "libZSservicesZSamazonka-appconfigZSamazonka-appconfig" 'False) (C1 ('MetaCons "CreateApplication'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse CreateApplication Source # 
Instance details

Defined in Amazonka.AppConfig.CreateApplication

newCreateApplication Source #

Create a value of CreateApplication 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:description:CreateApplication', createApplication_description - A description of the application.

$sel:tags:CreateApplication', createApplication_tags - Metadata to assign to the application. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

$sel:name:CreateApplication', createApplication_name - A name for the application.

Request Lenses

createApplication_tags :: Lens' CreateApplication (Maybe (HashMap Text Text)) Source #

Metadata to assign to the application. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

Destructuring the Response

data Application Source #

See: newApplication smart constructor.

Constructors

Application' 

Fields

Instances

Instances details
Eq Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

Read Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

Show Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

Generic Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

Associated Types

type Rep Application :: Type -> Type #

NFData Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

Methods

rnf :: Application -> () #

Hashable Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

FromJSON Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

type Rep Application Source # 
Instance details

Defined in Amazonka.AppConfig.Types.Application

type Rep Application = D1 ('MetaData "Application" "Amazonka.AppConfig.Types.Application" "libZSservicesZSamazonka-appconfigZSamazonka-appconfig" 'False) (C1 ('MetaCons "Application'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newApplication :: Application Source #

Create a value of Application 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:name:Application', application_name - The application name.

$sel:id:Application', application_id - The application ID.

$sel:description:Application', application_description - The description of the application.

Response Lenses

application_name :: Lens' Application (Maybe Text) Source #

The application name.

application_description :: Lens' Application (Maybe Text) Source #

The description of the application.