Class: Aws::EventBridge::Types::RemovePermissionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::RemovePermissionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_bus_name ⇒ String
The name of the event bus to revoke permissions for.
-
#remove_all_permissions ⇒ Boolean
Specifies whether to remove all permissions.
-
#statement_id ⇒ String
The statement ID corresponding to the account that is no longer allowed to put events to the default event bus.
Instance Attribute Details
#event_bus_name ⇒ String
The name of the event bus to revoke permissions for. If you omit this, the default event bus is used.
4098 4099 4100 4101 4102 4103 4104 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4098 class RemovePermissionRequest < Struct.new( :statement_id, :remove_all_permissions, :event_bus_name) SENSITIVE = [] include Aws::Structure end |
#remove_all_permissions ⇒ Boolean
Specifies whether to remove all permissions.
4098 4099 4100 4101 4102 4103 4104 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4098 class RemovePermissionRequest < Struct.new( :statement_id, :remove_all_permissions, :event_bus_name) SENSITIVE = [] include Aws::Structure end |
#statement_id ⇒ String
The statement ID corresponding to the account that is no longer allowed to put events to the default event bus.
4098 4099 4100 4101 4102 4103 4104 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4098 class RemovePermissionRequest < Struct.new( :statement_id, :remove_all_permissions, :event_bus_name) SENSITIVE = [] include Aws::Structure end |