{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SAMLProviderListEntry",
"title": "SAMLProviderListEntry",
"type": "object",
"properties": {
"Arn": {
"allOf": [
{
"$ref": "#/components/schemas/arnType"
},
{
"description": "The Amazon Resource Name (ARN) of the SAML provider."
}
]
},
"ValidUntil": {
"allOf": [
{
"$ref": "#/components/schemas/dateType"
},
{
"description": "The expiration date and time for the SAML provider."
}
]
},
"CreateDate": {
"allOf": [
{
"$ref": "#/components/schemas/dateType"
},
{
"description": "The date and time when the SAML provider was created."
}
]
}
},
"description": "Contains the list of SAML providers for this account."
}