Skip to content

Get queue attributes

async_boto.validation.sqs.get_queue_attributes

GetQueueAttributesRequest

Bases: BaseModel

The request accepts the following data in JSON format.

ATTRIBUTE DESCRIPTION
AttributeNames

A list of attributes for which to retrieve information.

TYPE: Optional[List[str]]

QueueUrl

The URL of the Amazon SQS queue whose attribute information is retrieved.

TYPE: str

AttributeNames class-attribute instance-attribute

AttributeNames = None

QueueUrl instance-attribute

QueueUrl

GetQueueAttributesResponse

Bases: BaseModel

The response returned in JSON format by the service.

ATTRIBUTE DESCRIPTION
Attributes

A map of attributes to their respective values.

TYPE: Dict[str, str]

Attributes instance-attribute

Attributes