Class: Aws::Redshift::Types::AuthorizeDataShareMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::AuthorizeDataShareMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass AuthorizeDataShareMessage data as a hash:
{
data_share_arn: "String", # required
consumer_identifier: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#consumer_identifier ⇒ String
The identifier of the data consumer that is authorized to access the datashare.
-
#data_share_arn ⇒ String
The Amazon Resource Name (ARN) of the datashare that producers are to authorize sharing for.
Instance Attribute Details
#consumer_identifier ⇒ String
The identifier of the data consumer that is authorized to access the datashare. This identifier is an Amazon Web Services account ID or a keyword, such as ADX.
346 347 348 349 350 351 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 346 class AuthorizeDataShareMessage < Struct.new( :data_share_arn, :consumer_identifier) SENSITIVE = [] include Aws::Structure end |
#data_share_arn ⇒ String
The Amazon Resource Name (ARN) of the datashare that producers are to authorize sharing for.
346 347 348 349 350 351 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 346 class AuthorizeDataShareMessage < Struct.new( :data_share_arn, :consumer_identifier) SENSITIVE = [] include Aws::Structure end |