Class: Aws::SageMaker::Types::UpdateWorkteamRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::UpdateWorkteamRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass UpdateWorkteamRequest data as a hash:
{
workteam_name: "WorkteamName", # required
member_definitions: [
{
cognito_member_definition: {
user_pool: "CognitoUserPool", # required
user_group: "CognitoUserGroup", # required
client_id: "CognitoClientId", # required
},
},
],
description: "String200",
notification_configuration: {
notification_topic_arn: "NotificationTopicArn",
},
}
Instance Attribute Summary collapse
-
#description ⇒ String
An updated description for the work team.
-
#member_definitions ⇒ Array<Types::MemberDefinition>
A list of ‘MemberDefinition` objects that contain the updated work team members.
-
#notification_configuration ⇒ Types::NotificationConfiguration
Configures SNS topic notifications for available or expiring work items.
-
#workteam_name ⇒ String
The name of the work team to update.
Instance Attribute Details
#description ⇒ String
An updated description for the work team.
20439 20440 20441 20442 20443 20444 20445 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20439 class UpdateWorkteamRequest < Struct.new( :workteam_name, :member_definitions, :description, :notification_configuration) include Aws::Structure end |
#member_definitions ⇒ Array<Types::MemberDefinition>
A list of ‘MemberDefinition` objects that contain the updated work team members.
20439 20440 20441 20442 20443 20444 20445 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20439 class UpdateWorkteamRequest < Struct.new( :workteam_name, :member_definitions, :description, :notification_configuration) include Aws::Structure end |
#notification_configuration ⇒ Types::NotificationConfiguration
Configures SNS topic notifications for available or expiring work items
20439 20440 20441 20442 20443 20444 20445 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20439 class UpdateWorkteamRequest < Struct.new( :workteam_name, :member_definitions, :description, :notification_configuration) include Aws::Structure end |
#workteam_name ⇒ String
The name of the work team to update.
20439 20440 20441 20442 20443 20444 20445 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20439 class UpdateWorkteamRequest < Struct.new( :workteam_name, :member_definitions, :description, :notification_configuration) include Aws::Structure end |