interface ResourceServerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSO.CfnApplicationProvider.ResourceServerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssso#CfnApplicationProvider_ResourceServerConfigProperty |
Java | software.amazon.awscdk.services.sso.CfnApplicationProvider.ResourceServerConfigProperty |
Python | aws_cdk.aws_sso.CfnApplicationProvider.ResourceServerConfigProperty |
TypeScript | aws-cdk-lib » aws_sso » CfnApplicationProvider » ResourceServerConfigProperty |
A structure that describes the configuration of a resource server.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sso as sso } from 'aws-cdk-lib';
const resourceServerConfigProperty: sso.CfnApplicationProvider.ResourceServerConfigProperty = {
scopes: {
scopesKey: {
detailedTitle: 'detailedTitle',
longDescription: 'longDescription',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| scopes? | IResolvable | { [string]: IResolvable | Resource } | A map of IAM Identity Center access scopes associated with this resource server. |
scopes?
Type:
IResolvable | { [string]: IResolvable | Resource }
(optional)
A map of IAM Identity Center access scopes associated with this resource server.

.NET
Go
Java
Python
TypeScript