Class: Aws::RDS::Types::CreateDBSecurityGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::CreateDBSecurityGroupMessage
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_security_group_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The description for the DB security group. 
- 
  
    
      #db_security_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name for the DB security group. 
- 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Tags to assign to the DB security group. 
Instance Attribute Details
#db_security_group_description ⇒ String
The description for the DB security group.
| 5802 5803 5804 5805 5806 5807 5808 | # File 'lib/aws-sdk-rds/types.rb', line 5802 class CreateDBSecurityGroupMessage < Struct.new( :db_security_group_name, :db_security_group_description, :tags) SENSITIVE = [] include Aws::Structure end | 
#db_security_group_name ⇒ String
The name for the DB security group. This value is stored as a lowercase string.
Constraints:
- 
Must be 1 to 255 letters, numbers, or hyphens. 
- 
First character must be a letter 
- 
Can’t end with a hyphen or contain two consecutive hyphens 
- 
Must not be “Default” 
Example: ‘mysecuritygroup`
| 5802 5803 5804 5805 5806 5807 5808 | # File 'lib/aws-sdk-rds/types.rb', line 5802 class CreateDBSecurityGroupMessage < Struct.new( :db_security_group_name, :db_security_group_description, :tags) SENSITIVE = [] include Aws::Structure end | 
#tags ⇒ Array<Types::Tag>
Tags to assign to the DB security group.
| 5802 5803 5804 5805 5806 5807 5808 | # File 'lib/aws-sdk-rds/types.rb', line 5802 class CreateDBSecurityGroupMessage < Struct.new( :db_security_group_name, :db_security_group_description, :tags) SENSITIVE = [] include Aws::Structure end |