Uses of Class
software.amazon.awssdk.services.sqs.model.QueueAttributeName
-
Packages that use QueueAttributeName Package Description software.amazon.awssdk.services.sqs.model -
-
Uses of QueueAttributeName in software.amazon.awssdk.services.sqs.model
Methods in software.amazon.awssdk.services.sqs.model that return QueueAttributeName Modifier and Type Method Description static QueueAttributeName
QueueAttributeName. fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static QueueAttributeName
QueueAttributeName. valueOf(String name)
Returns the enum constant of this type with the specified name.static QueueAttributeName[]
QueueAttributeName. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in software.amazon.awssdk.services.sqs.model that return types with arguments of type QueueAttributeName Modifier and Type Method Description List<QueueAttributeName>
GetQueueAttributesRequest. attributeNames()
A list of attributes for which to retrieve information.List<QueueAttributeName>
ReceiveMessageRequest. attributeNames()
Deprecated.AttributeNames has been replaced by MessageSystemAttributeNamesMap<QueueAttributeName,String>
CreateQueueRequest. attributes()
A map of attributes with their corresponding values.Map<QueueAttributeName,String>
GetQueueAttributesResponse. attributes()
A map of attributes to their respective values.Map<QueueAttributeName,String>
SetQueueAttributesRequest. attributes()
A map of attributes to set.static Set<QueueAttributeName>
QueueAttributeName. knownValues()
Methods in software.amazon.awssdk.services.sqs.model with parameters of type QueueAttributeName Modifier and Type Method Description GetQueueAttributesRequest.Builder
GetQueueAttributesRequest.Builder. attributeNames(QueueAttributeName... attributeNames)
A list of attributes for which to retrieve information.ReceiveMessageRequest.Builder
ReceiveMessageRequest.Builder. attributeNames(QueueAttributeName... attributeNames)
Deprecated.AttributeNames has been replaced by MessageSystemAttributeNamesMethod parameters in software.amazon.awssdk.services.sqs.model with type arguments of type QueueAttributeName Modifier and Type Method Description GetQueueAttributesRequest.Builder
GetQueueAttributesRequest.Builder. attributeNames(Collection<QueueAttributeName> attributeNames)
A list of attributes for which to retrieve information.ReceiveMessageRequest.Builder
ReceiveMessageRequest.Builder. attributeNames(Collection<QueueAttributeName> attributeNames)
Deprecated.AttributeNames has been replaced by MessageSystemAttributeNamesCreateQueueRequest.Builder
CreateQueueRequest.Builder. attributes(Map<QueueAttributeName,String> attributes)
A map of attributes with their corresponding values.GetQueueAttributesResponse.Builder
GetQueueAttributesResponse.Builder. attributes(Map<QueueAttributeName,String> attributes)
A map of attributes to their respective values.SetQueueAttributesRequest.Builder
SetQueueAttributesRequest.Builder. attributes(Map<QueueAttributeName,String> attributes)
A map of attributes to set.
-