Skip to content

Bedrock  >  Unions  >  RequestMetadataFilters

RequestMetadataFilters

Union Type

RequestMetadataFilters module-attribute

Rules for filtering invocation logs. A filter can be a mapping of a metadata key to a value that it should or should not equal (a base filter), or a list of base filters that are all applied with AND or OR logical operators

Union Member Types

RequestMetadataFiltersEquals dataclass

Include results where the key equals the value.

Attributes

value instance-attribute
value: dict[str, str]

RequestMetadataFiltersNotEquals dataclass

Include results where the key does not equal the value.

Attributes

value instance-attribute
value: dict[str, str]

RequestMetadataFiltersAndAll dataclass

Include results where all of the based filters match.

Attributes

value instance-attribute

RequestMetadataFiltersOrAll dataclass

Include results where any of the base filters match.

Attributes

value instance-attribute

RequestMetadataFiltersUnknown dataclass

Represents an unknown variant.

If you receive this value, you will need to update your library to receive the parsed value.

This value may not be deliberately sent.

Attributes

tag instance-attribute
tag: str