CfnIdentityCenterConfigurationProps
- class aws_cdk.aws_glue.CfnIdentityCenterConfigurationProps(*, instance_arn, scopes=None, user_background_sessions_enabled=None)
Bases:
objectProperties for defining a
CfnIdentityCenterConfiguration.- Parameters:
instance_arn (
str) – The Amazon Resource Name (ARN) of the Identity Center instance associated with the AWS Glue configuration.scopes (
Optional[Sequence[str]]) – A list of Identity Center scopes that define the permissions and access levels for the AWS Glue configuration.user_background_sessions_enabled (
Union[bool,IResolvable,None]) – Indicates whether users can run background sessions when using Identity Center authentication with AWS Glue services.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_glue as glue cfn_identity_center_configuration_props = glue.CfnIdentityCenterConfigurationProps( instance_arn="instanceArn", # the properties below are optional scopes=["scopes"], user_background_sessions_enabled=False )
Attributes
- instance_arn
The Amazon Resource Name (ARN) of the Identity Center instance associated with the AWS Glue configuration.
- scopes
A list of Identity Center scopes that define the permissions and access levels for the AWS Glue configuration.
- user_background_sessions_enabled
Indicates whether users can run background sessions when using Identity Center authentication with AWS Glue services.