Class: Aws::SageMaker::Types::CognitoMemberDefinition

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass CognitoMemberDefinition data as a hash:

{
  user_pool: "CognitoUserPool", # required
  user_group: "CognitoUserGroup", # required
  client_id: "CognitoClientId", # required
}

Identifies a Amazon Cognito user group. A user group can be used in on or more work teams.

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

An identifier for an application client. You must create the app client ID using Amazon Cognito.

Returns:

  • (String)


789
790
791
792
793
794
# File 'lib/aws-sdk-sagemaker/types.rb', line 789

class CognitoMemberDefinition < Struct.new(
  :user_pool,
  :user_group,
  :client_id)
  include Aws::Structure
end

#user_groupString

An identifier for a user group.

Returns:

  • (String)


789
790
791
792
793
794
# File 'lib/aws-sdk-sagemaker/types.rb', line 789

class CognitoMemberDefinition < Struct.new(
  :user_pool,
  :user_group,
  :client_id)
  include Aws::Structure
end

#user_poolString

An identifier for a user pool. The user pool must be in the same region as the service that you are calling.

Returns:

  • (String)


789
790
791
792
793
794
# File 'lib/aws-sdk-sagemaker/types.rb', line 789

class CognitoMemberDefinition < Struct.new(
  :user_pool,
  :user_group,
  :client_id)
  include Aws::Structure
end