Class: Aws::Redshift::Types::ModifyEndpointAccessMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::ModifyEndpointAccessMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass ModifyEndpointAccessMessage data as a hash:
{
endpoint_name: "String", # required
vpc_security_group_ids: ["String"],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoint_name ⇒ String
The endpoint to be modified.
-
#vpc_security_group_ids ⇒ Array<String>
The complete list of VPC security groups associated with the endpoint after the endpoint is modified.
Instance Attribute Details
#endpoint_name ⇒ String
The endpoint to be modified.
8647 8648 8649 8650 8651 8652 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 8647 class ModifyEndpointAccessMessage < Struct.new( :endpoint_name, :vpc_security_group_ids) SENSITIVE = [] include Aws::Structure end |
#vpc_security_group_ids ⇒ Array<String>
The complete list of VPC security groups associated with the endpoint after the endpoint is modified.
8647 8648 8649 8650 8651 8652 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 8647 class ModifyEndpointAccessMessage < Struct.new( :endpoint_name, :vpc_security_group_ids) SENSITIVE = [] include Aws::Structure end |