Class: Aws::SageMaker::Types::RoleGroupAssignment
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::RoleGroupAssignment
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Defines the mapping between an in-app role and the Amazon Web Services IAM Identity Center group patterns that should be assigned to that role within the SageMaker Partner AI App.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_patterns ⇒ Array<String>
A list of Amazon Web Services IAM Identity Center group patterns that should be assigned to the specified role.
-
#role_name ⇒ String
The name of the in-app role within the SageMaker Partner AI App.
Instance Attribute Details
#group_patterns ⇒ Array<String>
A list of Amazon Web Services IAM Identity Center group patterns that should be assigned to the specified role. Group patterns support wildcard matching using ‘*`.
46171 46172 46173 46174 46175 46176 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 46171 class RoleGroupAssignment < Struct.new( :role_name, :group_patterns) SENSITIVE = [] include Aws::Structure end |
#role_name ⇒ String
The name of the in-app role within the SageMaker Partner AI App. The specific roles available depend on the app type and version.
46171 46172 46173 46174 46175 46176 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 46171 class RoleGroupAssignment < Struct.new( :role_name, :group_patterns) SENSITIVE = [] include Aws::Structure end |