Class: Aws::Redshift::Types::RevokeEndpointAccessMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::RevokeEndpointAccessMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass RevokeEndpointAccessMessage data as a hash:
{
cluster_identifier: "String",
account: "String",
vpc_ids: ["String"],
force: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account ⇒ String
The Amazon Web Services account ID whose access is to be revoked.
-
#cluster_identifier ⇒ String
The cluster to revoke access from.
-
#force ⇒ Boolean
Indicates whether to force the revoke action.
-
#vpc_ids ⇒ Array<String>
The virtual private cloud (VPC) identifiers for which access is to be revoked.
Instance Attribute Details
#account ⇒ String
The Amazon Web Services account ID whose access is to be revoked.
10845 10846 10847 10848 10849 10850 10851 10852 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10845 class RevokeEndpointAccessMessage < Struct.new( :cluster_identifier, :account, :vpc_ids, :force) SENSITIVE = [] include Aws::Structure end |
#cluster_identifier ⇒ String
The cluster to revoke access from.
10845 10846 10847 10848 10849 10850 10851 10852 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10845 class RevokeEndpointAccessMessage < Struct.new( :cluster_identifier, :account, :vpc_ids, :force) SENSITIVE = [] include Aws::Structure end |
#force ⇒ Boolean
Indicates whether to force the revoke action. If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.
10845 10846 10847 10848 10849 10850 10851 10852 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10845 class RevokeEndpointAccessMessage < Struct.new( :cluster_identifier, :account, :vpc_ids, :force) SENSITIVE = [] include Aws::Structure end |
#vpc_ids ⇒ Array<String>
The virtual private cloud (VPC) identifiers for which access is to be revoked.
10845 10846 10847 10848 10849 10850 10851 10852 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10845 class RevokeEndpointAccessMessage < Struct.new( :cluster_identifier, :account, :vpc_ids, :force) SENSITIVE = [] include Aws::Structure end |