interface CfnIdentityCenterConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnIdentityCenterConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnIdentityCenterConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnIdentityCenterConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnIdentityCenterConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnIdentityCenterConfigurationMixinProps |
Properties for CfnIdentityCenterConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const cfnIdentityCenterConfigurationMixinProps: glue_mixins.CfnIdentityCenterConfigurationMixinProps = {
instanceArn: 'instanceArn',
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
(optional)
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