amazonka-grafana-2.0: Amazon Managed Grafana 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.Grafana.Types.IdpMetadata

Description

 
Synopsis

Documentation

data IdpMetadata Source #

A structure containing the identity provider (IdP) metadata used to integrate the identity provider with this workspace. You can specify the metadata either by providing a URL to its location in the url parameter, or by specifying the full metadata in XML format in the xml parameter. Specifying both will cause an error.

See: newIdpMetadata smart constructor.

Constructors

IdpMetadata' 

Fields

  • url :: Maybe Text

    The URL of the location containing the IdP metadata.

  • xml :: Maybe Text

    The full IdP metadata, in XML format.

Instances

Instances details
FromJSON IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

ToJSON IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

Generic IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

Associated Types

type Rep IdpMetadata :: Type -> Type #

Read IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

Show IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

NFData IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

Methods

rnf :: IdpMetadata -> () #

Eq IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

Hashable IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

type Rep IdpMetadata Source # 
Instance details

Defined in Amazonka.Grafana.Types.IdpMetadata

type Rep IdpMetadata = D1 ('MetaData "IdpMetadata" "Amazonka.Grafana.Types.IdpMetadata" "amazonka-grafana-2.0-1hXXW2cgZWZJGJ3AoD5xOB" 'False) (C1 ('MetaCons "IdpMetadata'" 'PrefixI 'True) (S1 ('MetaSel ('Just "url") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "xml") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newIdpMetadata :: IdpMetadata Source #

Create a value of IdpMetadata 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:url:IdpMetadata', idpMetadata_url - The URL of the location containing the IdP metadata.

$sel:xml:IdpMetadata', idpMetadata_xml - The full IdP metadata, in XML format.

idpMetadata_url :: Lens' IdpMetadata (Maybe Text) Source #

The URL of the location containing the IdP metadata.

idpMetadata_xml :: Lens' IdpMetadata (Maybe Text) Source #

The full IdP metadata, in XML format.