interface CfnIdentityCenterConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnIdentityCenterConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnIdentityCenterConfigurationProps |
Java | software.amazon.awscdk.services.glue.CfnIdentityCenterConfigurationProps |
Python | aws_cdk.aws_glue.CfnIdentityCenterConfigurationProps |
TypeScript | aws-cdk-lib » aws_glue » CfnIdentityCenterConfigurationProps |
Properties for defining a CfnIdentityCenterConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const cfnIdentityCenterConfigurationProps: glue.CfnIdentityCenterConfigurationProps = {
instanceArn: 'instanceArn',
// the properties below are optional
scopes: ['scopes'],
userBackgroundSessionsEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The Amazon Resource Name (ARN) of the Identity Center instance associated with the AWS Glue configuration. |
| scopes? | string[] | A list of Identity Center scopes that define the permissions and access levels for the AWS Glue configuration. |
| user | boolean | IResolvable | Indicates whether users can run background sessions when using Identity Center authentication with AWS Glue services. |
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the Identity Center instance associated with the AWS Glue configuration.
scopes?
Type:
string[]
(optional)
A list of Identity Center scopes that define the permissions and access levels for the AWS Glue configuration.
userBackgroundSessionsEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether users can run background sessions when using Identity Center authentication with AWS Glue services.

.NET
Go
Java
Python
TypeScript