Interface Queue.DefinitionStages.WithAuthorizationRule
-
- All Known Subinterfaces:
Queue.Definition,Queue.DefinitionStages.Blank,Queue.DefinitionStages.WithCreate
- Enclosing interface:
- Queue.DefinitionStages
public static interface Queue.DefinitionStages.WithAuthorizationRuleThe stage of the queue definition allowing to add an authorization rule for accessing the queue.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Queue.DefinitionStages.WithCreatewithNewListenRule(String name)Creates a listen authorization rule for the queue.Queue.DefinitionStages.WithCreatewithNewManageRule(String name)Creates a manage authorization rule for the queue.Queue.DefinitionStages.WithCreatewithNewSendRule(String name)Creates a send authorization rule for the queue.
-
-
-
Method Detail
-
withNewSendRule
Queue.DefinitionStages.WithCreate withNewSendRule(String name)
Creates a send authorization rule for the queue.- Parameters:
name- rule name- Returns:
- next stage of the queue definition
-
withNewListenRule
Queue.DefinitionStages.WithCreate withNewListenRule(String name)
Creates a listen authorization rule for the queue.- Parameters:
name- rule name- Returns:
- next stage of the queue definition
-
withNewManageRule
Queue.DefinitionStages.WithCreate withNewManageRule(String name)
Creates a manage authorization rule for the queue.- Parameters:
name- rule name- Returns:
- next stage of the queue definition
-
-