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 IAM identity center instance arn. |
| scopes? | string[] | The downstream scopes that Glue identity center configuration can access. |
| user | boolean | IResolvable | Enable or disable user background sessions for Glue Identity Center. |
instanceArn
Type:
string
The IAM identity center instance arn.
scopes?
Type:
string[]
(optional)
The downstream scopes that Glue identity center configuration can access.
userBackgroundSessionsEnabled?
Type:
boolean | IResolvable
(optional)
Enable or disable user background sessions for Glue Identity Center.

.NET
Go
Java
Python
TypeScript