Amazon IAM Identity Center · Schema
CreatePermissionSetRequest
CreatePermissionSetRequest schema from AWS IAM Identity Center
Access ControlAuthenticationIdentity ManagementSingle Sign-On
Properties
| Name | Type | Description |
|---|---|---|
| Name | object | |
| Description | object | |
| InstanceArn | object | |
| SessionDuration | object | |
| RelayState | object | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-schema/sso-admin-create-permission-set-request-schema.json",
"title": "CreatePermissionSetRequest",
"description": "CreatePermissionSetRequest schema from AWS IAM Identity Center",
"type": "object",
"properties": {
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/PermissionSetName"
},
{
"description": "The name of the <a>PermissionSet</a>."
}
]
},
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/PermissionSetDescription"
},
{
"description": "The description of the <a>PermissionSet</a>."
}
]
},
"InstanceArn": {
"allOf": [
{
"$ref": "#/components/schemas/InstanceArn"
},
{
"description": "The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href=\"/general/latest/gr/aws-arns-and-namespaces.html\">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>."
}
]
},
"SessionDuration": {
"allOf": [
{
"$ref": "#/components/schemas/Duration"
},
{
"description": "The length of time that the application user sessions are valid in the ISO-8601 standard."
}
]
},
"RelayState": {
"allOf": [
{
"$ref": "#/components/schemas/RelayState"
},
{
"description": "Used to redirect users within the application during the federation authentication process."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "The tags to attach to the new <a>PermissionSet</a>."
}
]
}
},
"required": [
"Name",
"InstanceArn"
]
}