Class: Aws::DataExchange::Types::AutoExportRevisionDestinationEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::AutoExportRevisionDestinationEntry
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
Note:
When making an API call, you may pass AutoExportRevisionDestinationEntry data as a hash:
{
bucket: "__string", # required
key_pattern: "__string",
}
A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The S3 bucket that is the destination for the event action.
-
#key_pattern ⇒ String
A string representing the pattern for generated names of the individual assets in the revision.
Instance Attribute Details
#bucket ⇒ String
The S3 bucket that is the destination for the event action.
295 296 297 298 299 300 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 295 class AutoExportRevisionDestinationEntry < Struct.new( :bucket, :key_pattern) SENSITIVE = [] include Aws::Structure end |
#key_pattern ⇒ String
A string representing the pattern for generated names of the individual assets in the revision. For more information about key patterns, see Key patterns when exporting revisions.
295 296 297 298 299 300 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 295 class AutoExportRevisionDestinationEntry < Struct.new( :bucket, :key_pattern) SENSITIVE = [] include Aws::Structure end |