Class: Aws::RDS::Types::ModifyDBProxyEndpointRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::ModifyDBProxyEndpointRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_proxy_endpoint_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the DB proxy sociated with the DB proxy endpoint that you want to modify. 
- 
  
    
      #new_db_proxy_endpoint_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The new identifier for the ‘DBProxyEndpoint`. 
- 
  
    
      #vpc_security_group_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The VPC security group IDs for the DB proxy endpoint. 
Instance Attribute Details
#db_proxy_endpoint_name ⇒ String
The name of the DB proxy sociated with the DB proxy endpoint that you want to modify.
| 19229 19230 19231 19232 19233 19234 19235 | # File 'lib/aws-sdk-rds/types.rb', line 19229 class ModifyDBProxyEndpointRequest < Struct.new( :db_proxy_endpoint_name, :new_db_proxy_endpoint_name, :vpc_security_group_ids) SENSITIVE = [] include Aws::Structure end | 
#new_db_proxy_endpoint_name ⇒ String
The new identifier for the ‘DBProxyEndpoint`. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can’t end with a hyphen or contain two consecutive hyphens.
| 19229 19230 19231 19232 19233 19234 19235 | # File 'lib/aws-sdk-rds/types.rb', line 19229 class ModifyDBProxyEndpointRequest < Struct.new( :db_proxy_endpoint_name, :new_db_proxy_endpoint_name, :vpc_security_group_ids) SENSITIVE = [] include Aws::Structure end | 
#vpc_security_group_ids ⇒ Array<String>
The VPC security group IDs for the DB proxy endpoint. When the DB proxy endpoint uses a different VPC than the original proxy, you also specify a different set of security group IDs than for the original proxy.
| 19229 19230 19231 19232 19233 19234 19235 | # File 'lib/aws-sdk-rds/types.rb', line 19229 class ModifyDBProxyEndpointRequest < Struct.new( :db_proxy_endpoint_name, :new_db_proxy_endpoint_name, :vpc_security_group_ids) SENSITIVE = [] include Aws::Structure end |