Class: Aws::CognitoIdentityProvider::Types::UpdateGroupRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::UpdateGroupRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A string containing the new description of the group.
 - 
  
    
      #group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the group.
 - 
  
    
      #precedence  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The new precedence value for the group.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The new role Amazon Resource Name (ARN) for the group.
 - 
  
    
      #user_pool_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the user pool.
 
Instance Attribute Details
#description ⇒ String
A string containing the new description of the group.
      10893 10894 10895 10896 10897 10898 10899 10900 10901  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10893 class UpdateGroupRequest < Struct.new( :group_name, :user_pool_id, :description, :role_arn, :precedence) SENSITIVE = [] include Aws::Structure end  | 
  
#group_name ⇒ String
The name of the group.
      10893 10894 10895 10896 10897 10898 10899 10900 10901  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10893 class UpdateGroupRequest < Struct.new( :group_name, :user_pool_id, :description, :role_arn, :precedence) SENSITIVE = [] include Aws::Structure end  | 
  
#precedence ⇒ Integer
The new precedence value for the group. For more information about this parameter, see [CreateGroup].
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_CreateGroup.html
      10893 10894 10895 10896 10897 10898 10899 10900 10901  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10893 class UpdateGroupRequest < Struct.new( :group_name, :user_pool_id, :description, :role_arn, :precedence) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
The new role Amazon Resource Name (ARN) for the group. This is used for setting the ‘cognito:roles` and `cognito:preferred_role` claims in the token.
      10893 10894 10895 10896 10897 10898 10899 10900 10901  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10893 class UpdateGroupRequest < Struct.new( :group_name, :user_pool_id, :description, :role_arn, :precedence) SENSITIVE = [] include Aws::Structure end  | 
  
#user_pool_id ⇒ String
The ID of the user pool.
      10893 10894 10895 10896 10897 10898 10899 10900 10901  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10893 class UpdateGroupRequest < Struct.new( :group_name, :user_pool_id, :description, :role_arn, :precedence) SENSITIVE = [] include Aws::Structure end  |