GetSAMLProviderResponse

Contains the response to a successful GetSAMLProvider request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
SAMLMetadataDocument object
CreateDate object
ValidUntil object
Tags object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-getsamlproviderresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetSAMLProviderResponse",
  "title": "GetSAMLProviderResponse",
  "type": "object",
  "properties": {
    "SAMLMetadataDocument": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SAMLMetadataDocumentType"
        },
        {
          "description": "The XML metadata document that includes information about an identity provider."
        }
      ]
    },
    "CreateDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dateType"
        },
        {
          "description": "The date and time when the SAML provider was created."
        }
      ]
    },
    "ValidUntil": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dateType"
        },
        {
          "description": "The expiration date and time for the SAML provider."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/tagListType"
        },
        {
          "description": "A list of tags that are attached to the specified IAM SAML provider. The returned list of tags is sorted by tag key. For more information about tagging, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html\">Tagging IAM resources</a> in the <i>IAM User Guide</i>."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>GetSAMLProvider</a> request. "
}