Skip to content

Save AWS Identity Center configuration

PUT
/v1/integrations/aws-identity-center/config
curl --request PUT \
--url https://example.com/v1/integrations/aws-identity-center/config \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Tenant-ID: 2489E9AD-2EE2-8E00-8EC9-32D5F69181C0' \
--data '{ "sso_instance_arn": "arn:aws:sso:::instance/ssoins-0123456789abcdef0", "role_arn": "arn:aws:iam::123456789012:role/JitsudoIdentityCenterRole", "region": "us-east-1" }'
X-Tenant-ID
required
string format: uuid

Tenant identifier. Must match the tenant associated with the credential. Returns 403 tenant_mismatch if the credential and header belong to different tenants.

Media type application/json
object
sso_instance_arn
required
string
Example
arn:aws:sso:::instance/ssoins-0123456789abcdef0
role_arn
required
string
Example
arn:aws:iam::123456789012:role/JitsudoIdentityCenterRole
region
required
string
Example
us-east-1

Saved config

Media type application/json
object
sso_instance_arn
string
nullable
role_arn
string
nullable
region
string
nullable
configured
required

True when both sso_instance_arn and role_arn are non-empty

boolean
Example
{
"sso_instance_arn": "arn:aws:sso:::instance/ssoins-0123456789abcdef0",
"role_arn": "arn:aws:iam::123456789012:role/JitsudoIdentityCenterRole",
"region": "us-east-1"
}

Bad request

Media type application/json
object
code
required

Machine-readable error code (e.g. “not_found”, “tenant_mismatch”).

string
message
required

Human-readable description of the error.

string
details

Optional additional context about the error.

object
key
additional properties
any
notices

Policy notices from determining Cedar rules, if applicable.

Array<string>
Example generated
{
"code": "example",
"message": "example",
"details": {},
"notices": [
"example"
]
}

Unauthenticated

Media type application/json
object
code
required

Machine-readable error code (e.g. “not_found”, “tenant_mismatch”).

string
message
required

Human-readable description of the error.

string
details

Optional additional context about the error.

object
key
additional properties
any
notices

Policy notices from determining Cedar rules, if applicable.

Array<string>
Example generated
{
"code": "example",
"message": "example",
"details": {},
"notices": [
"example"
]
}