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

Description

Retrieve information about a configuration profile.

Synopsis

Creating a Request

data GetConfigurationProfile Source #

See: newGetConfigurationProfile smart constructor.

Constructors

GetConfigurationProfile' 

Fields

Instances

Instances details
Eq GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

Read GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

Show GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

Generic GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

Associated Types

type Rep GetConfigurationProfile :: Type -> Type #

NFData GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

Methods

rnf :: GetConfigurationProfile -> () #

Hashable GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

AWSRequest GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

ToHeaders GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

ToPath GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

ToQuery GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

type Rep GetConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.GetConfigurationProfile

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

Defined in Amazonka.AppConfig.GetConfigurationProfile

newGetConfigurationProfile Source #

Create a value of GetConfigurationProfile 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:applicationId:GetConfigurationProfile', getConfigurationProfile_applicationId - The ID of the application that includes the configuration profile you want to get.

$sel:configurationProfileId:GetConfigurationProfile', getConfigurationProfile_configurationProfileId - The ID of the configuration profile you want to get.

Request Lenses

getConfigurationProfile_applicationId :: Lens' GetConfigurationProfile Text Source #

The ID of the application that includes the configuration profile you want to get.

getConfigurationProfile_configurationProfileId :: Lens' GetConfigurationProfile Text Source #

The ID of the configuration profile you want to get.

Destructuring the Response

data ConfigurationProfile Source #

See: newConfigurationProfile smart constructor.

Constructors

ConfigurationProfile' 

Fields

Instances

Instances details
Eq ConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.Types.ConfigurationProfile

Show ConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.Types.ConfigurationProfile

Generic ConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.Types.ConfigurationProfile

Associated Types

type Rep ConfigurationProfile :: Type -> Type #

NFData ConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.Types.ConfigurationProfile

Methods

rnf :: ConfigurationProfile -> () #

Hashable ConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.Types.ConfigurationProfile

FromJSON ConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.Types.ConfigurationProfile

type Rep ConfigurationProfile Source # 
Instance details

Defined in Amazonka.AppConfig.Types.ConfigurationProfile

type Rep ConfigurationProfile = D1 ('MetaData "ConfigurationProfile" "Amazonka.AppConfig.Types.ConfigurationProfile" "libZSservicesZSamazonka-appconfigZSamazonka-appconfig" 'False) (C1 ('MetaCons "ConfigurationProfile'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "retrievalRoleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "validators") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Validator])) :*: S1 ('MetaSel ('Just "locationUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: 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))))))

newConfigurationProfile :: ConfigurationProfile Source #

Create a value of ConfigurationProfile 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:retrievalRoleArn:ConfigurationProfile', configurationProfile_retrievalRoleArn - The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

$sel:validators:ConfigurationProfile', configurationProfile_validators - A list of methods for validating the configuration.

$sel:locationUri:ConfigurationProfile', configurationProfile_locationUri - The URI location of the configuration.

$sel:applicationId:ConfigurationProfile', configurationProfile_applicationId - The application ID.

$sel:name:ConfigurationProfile', configurationProfile_name - The name of the configuration profile.

$sel:id:ConfigurationProfile', configurationProfile_id - The configuration profile ID.

$sel:description:ConfigurationProfile', configurationProfile_description - The configuration profile description.

Response Lenses

configurationProfile_retrievalRoleArn :: Lens' ConfigurationProfile (Maybe Text) Source #

The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

configurationProfile_validators :: Lens' ConfigurationProfile (Maybe [Validator]) Source #

A list of methods for validating the configuration.

configurationProfile_locationUri :: Lens' ConfigurationProfile (Maybe Text) Source #

The URI location of the configuration.

configurationProfile_name :: Lens' ConfigurationProfile (Maybe Text) Source #

The name of the configuration profile.

configurationProfile_description :: Lens' ConfigurationProfile (Maybe Text) Source #

The configuration profile description.