Class: Aws::DataExchange::Types::UpdateEventActionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::UpdateEventActionRequest
- Defined in:
- gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb
Overview
Note:
When making an API call, you may pass UpdateEventActionRequest data as a hash:
{
action: {
export_revision_to_s3: {
encryption: {
kms_key_arn: "__string",
type: "aws:kms", # required, accepts aws:kms, AES256
},
revision_destination: { # required
bucket: "__string", # required
key_pattern: "__string",
},
},
},
event_action_id: "__string", # required
}
The request to update an event action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ Types::Action
What occurs after a certain event.
-
#event_action_id ⇒ String
Instance Attribute Details
#action ⇒ Types::Action
What occurs after a certain event.
3358 3359 3360 3361 3362 3363 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 3358 class UpdateEventActionRequest < Struct.new( :action, :event_action_id) SENSITIVE = [] include Aws::Structure end |
#event_action_id ⇒ String
3358 3359 3360 3361 3362 3363 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 3358 class UpdateEventActionRequest < Struct.new( :action, :event_action_id) SENSITIVE = [] include Aws::Structure end |