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 IAM identity center instance arn.scopes (
Optional[Sequence[str]]) – The downstream scopes that Glue identity center configuration can access.user_background_sessions_enabled (
Union[bool,IResolvable,None]) – Enable or disable user background sessions for Glue Identity Center.
- 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 IAM identity center instance arn.
- scopes
The downstream scopes that Glue identity center configuration can access.
- user_background_sessions_enabled
Enable or disable user background sessions for Glue Identity Center.