Class: Aws::DataExchange::Types::CreateRevisionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::CreateRevisionRequest
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
When making an API call, you may pass CreateRevisionRequest data as a hash:
{
comment: "__stringMin0Max16384",
data_set_id: "__string", # required
tags: {
"__string" => "__string",
},
}
Creates a revision for a data set. When they're created, revisions are not published to products, and therefore are not available to subscribers. To publish a revision to a data set in a product, the revision must first be finalized.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
An optional comment about the revision.
-
#data_set_id ⇒ String
-
#tags ⇒ Hash<String,String>
A revision tag is an optional label that you can assign to a revision when you create it.
Instance Attribute Details
#comment ⇒ String
An optional comment about the revision.
758 759 760 761 762 763 764 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 758 class CreateRevisionRequest < Struct.new( :comment, :data_set_id, :tags) SENSITIVE = [] include Aws::Structure end |
#data_set_id ⇒ String
758 759 760 761 762 763 764 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 758 class CreateRevisionRequest < Struct.new( :comment, :data_set_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A revision tag is an optional label that you can assign to a revision 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.
758 759 760 761 762 763 764 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 758 class CreateRevisionRequest < Struct.new( :comment, :data_set_id, :tags) SENSITIVE = [] include Aws::Structure end |