Class: Aws::Redshift::Types::AuthorizeEndpointAccessMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::AuthorizeEndpointAccessMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass AuthorizeEndpointAccessMessage data as a hash:
{
cluster_identifier: "String",
account: "String", # required
vpc_ids: ["String"],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account ⇒ String
The Amazon Web Services account ID to grant access to.
-
#cluster_identifier ⇒ String
The cluster identifier of the cluster to grant access to.
-
#vpc_ids ⇒ Array<String>
The virtual private cloud (VPC) identifiers to grant access to.
Instance Attribute Details
#account ⇒ String
The Amazon Web Services account ID to grant access to.
376 377 378 379 380 381 382 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 376 class AuthorizeEndpointAccessMessage < Struct.new( :cluster_identifier, :account, :vpc_ids) SENSITIVE = [] include Aws::Structure end |
#cluster_identifier ⇒ String
The cluster identifier of the cluster to grant access to.
376 377 378 379 380 381 382 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 376 class AuthorizeEndpointAccessMessage < Struct.new( :cluster_identifier, :account, :vpc_ids) SENSITIVE = [] include Aws::Structure end |
#vpc_ids ⇒ Array<String>
The virtual private cloud (VPC) identifiers to grant access to.
376 377 378 379 380 381 382 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 376 class AuthorizeEndpointAccessMessage < Struct.new( :cluster_identifier, :account, :vpc_ids) SENSITIVE = [] include Aws::Structure end |