Class CfnIdentityCenterConfiguration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.glue.CfnIdentityCenterConfiguration
All Implemented Interfaces:
IInspectable, IIdentityCenterConfigurationRef, IEnvironmentAware, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-11-20T23:37:22.589Z") @Stability(Stable) public class CfnIdentityCenterConfiguration extends CfnResource implements IInspectable, IIdentityCenterConfigurationRef
Resource Type definition for AWS::Glue::IdentityCenterConfiguration.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.glue.*;
 CfnIdentityCenterConfiguration cfnIdentityCenterConfiguration = CfnIdentityCenterConfiguration.Builder.create(this, "MyCfnIdentityCenterConfiguration")
         .instanceArn("instanceArn")
         // the properties below are optional
         .scopes(List.of("scopes"))
         .userBackgroundSessionsEnabled(false)
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnIdentityCenterConfiguration

      protected CfnIdentityCenterConfiguration(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnIdentityCenterConfiguration

      protected CfnIdentityCenterConfiguration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnIdentityCenterConfiguration

      @Stability(Stable) public CfnIdentityCenterConfiguration(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnIdentityCenterConfigurationProps props)
      Create a new AWS::Glue::IdentityCenterConfiguration.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrAccountId

      @Stability(Stable) @NotNull public String getAttrAccountId()
      The identifier for the specified AWS account.
    • getAttrApplicationArn

      @Stability(Stable) @NotNull public String getAttrApplicationArn()
      The Glue IAM identity center application arn.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getIdentityCenterConfigurationRef

      @Stability(Stable) @NotNull public IdentityCenterConfigurationReference getIdentityCenterConfigurationRef()
      A reference to a IdentityCenterConfiguration resource.
      Specified by:
      getIdentityCenterConfigurationRef in interface IIdentityCenterConfigurationRef
    • getInstanceArn

      @Stability(Stable) @NotNull public String getInstanceArn()
      The IAM identity center instance arn.
    • setInstanceArn

      @Stability(Stable) public void setInstanceArn(@NotNull String value)
      The IAM identity center instance arn.
    • getScopes

      @Stability(Stable) @Nullable public List<String> getScopes()
      The downstream scopes that Glue identity center configuration can access.
    • setScopes

      @Stability(Stable) public void setScopes(@Nullable List<String> value)
      The downstream scopes that Glue identity center configuration can access.
    • getUserBackgroundSessionsEnabled

      @Stability(Stable) @Nullable public Object getUserBackgroundSessionsEnabled()
      Enable or disable user background sessions for Glue Identity Center.

      Returns union: either Boolean or IResolvable

    • setUserBackgroundSessionsEnabled

      @Stability(Stable) public void setUserBackgroundSessionsEnabled(@Nullable Boolean value)
      Enable or disable user background sessions for Glue Identity Center.
    • setUserBackgroundSessionsEnabled

      @Stability(Stable) public void setUserBackgroundSessionsEnabled(@Nullable IResolvable value)
      Enable or disable user background sessions for Glue Identity Center.