CfnIdentityCenterConfigurationProps

class aws_cdk.aws_glue.CfnIdentityCenterConfigurationProps(*, instance_arn, scopes=None, user_background_sessions_enabled=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-instancearn

scopes

A list of Identity Center scopes that define the permissions and access levels for the AWS Glue configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-scopes

user_background_sessions_enabled

Indicates whether users can run background sessions when using Identity Center authentication with AWS Glue services.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#cfn-glue-identitycenterconfiguration-userbackgroundsessionsenabled