Class: Aws::DataExchange::Types::CreateDataSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::CreateDataSetRequest
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
When making an API call, you may pass CreateDataSetRequest data as a hash:
{
asset_type: "S3_SNAPSHOT", # required, accepts S3_SNAPSHOT, REDSHIFT_DATA_SHARE, API_GATEWAY_API
description: "Description", # required
name: "Name", # required
tags: {
"__string" => "__string",
},
}
A request to create a data set that contains one or more revisions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_type ⇒ String
The type of asset that is added to a data set.
-
#description ⇒ String
A description for the data set.
-
#name ⇒ String
The name of the data set.
-
#tags ⇒ Hash<String,String>
A data set tag is an optional label that you can assign to a data set when you create it.
Instance Attribute Details
#asset_type ⇒ String
The type of asset that is added to a data set.
417 418 419 420 421 422 423 424 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 417 class CreateDataSetRequest < Struct.new( :asset_type, :description, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description for the data set. This value can be up to 16,348 characters long.
417 418 419 420 421 422 423 424 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 417 class CreateDataSetRequest < Struct.new( :asset_type, :description, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the data set.
417 418 419 420 421 422 423 424 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 417 class CreateDataSetRequest < Struct.new( :asset_type, :description, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A data set tag is an optional label that you can assign to a data set when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.
417 418 419 420 421 422 423 424 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 417 class CreateDataSetRequest < Struct.new( :asset_type, :description, :name, :tags) SENSITIVE = [] include Aws::Structure end |