Class: Aws::RDS::Types::CreateDBSecurityGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::CreateDBSecurityGroupMessage
 
- Defined in:
- gems/aws-sdk-rds/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.
| 6205 6206 6207 6208 6209 6210 6211 | # File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 6205 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
| 6205 6206 6207 6208 6209 6210 6211 | # File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 6205 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.
| 6205 6206 6207 6208 6209 6210 6211 | # File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 6205 class CreateDBSecurityGroupMessage < Struct.new( :db_security_group_name, :db_security_group_description, :tags) SENSITIVE = [] include Aws::Structure end |