{
"$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 Tagging IAM resources in the IAM User Guide."
}
]
}
},
"description": "Contains the response to a successful GetSAMLProvider request. "
}