Skip to content

Type definitions#

Index > UserNotifications > Type definitions

Auto-generated documentation for UserNotifications type annotations stubs module mypy-boto3-notifications.

TimestampTypeDef#

# TimestampTypeDef definition

TimestampTypeDef = Union[
    datetime,
    str,
]

AssociateChannelRequestRequestTypeDef#

# AssociateChannelRequestRequestTypeDef definition

class AssociateChannelRequestRequestTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,

CreateEventRuleRequestRequestTypeDef#

# CreateEventRuleRequestRequestTypeDef definition

class CreateEventRuleRequestRequestTypeDef(TypedDict):
    notificationConfigurationArn: str,
    source: str,
    eventType: str,
    regions: Sequence[str],
    eventPattern: NotRequired[str],

EventRuleStatusSummaryTypeDef#

# EventRuleStatusSummaryTypeDef definition

class EventRuleStatusSummaryTypeDef(TypedDict):
    status: EventRuleStatusType,  # (1)
    reason: str,
  1. See EventRuleStatusType

ResponseMetadataTypeDef#

# ResponseMetadataTypeDef definition

class ResponseMetadataTypeDef(TypedDict):
    RequestId: str,
    HTTPStatusCode: int,
    HTTPHeaders: Dict[str, str],
    RetryAttempts: int,
    HostId: NotRequired[str],

CreateNotificationConfigurationRequestRequestTypeDef#

# CreateNotificationConfigurationRequestRequestTypeDef definition

class CreateNotificationConfigurationRequestRequestTypeDef(TypedDict):
    name: str,
    description: str,
    aggregationDuration: NotRequired[AggregationDurationType],  # (1)
    tags: NotRequired[Mapping[str, str]],
  1. See AggregationDurationType

DeleteEventRuleRequestRequestTypeDef#

# DeleteEventRuleRequestRequestTypeDef definition

class DeleteEventRuleRequestRequestTypeDef(TypedDict):
    arn: str,

DeleteNotificationConfigurationRequestRequestTypeDef#

# DeleteNotificationConfigurationRequestRequestTypeDef definition

class DeleteNotificationConfigurationRequestRequestTypeDef(TypedDict):
    arn: str,

DeregisterNotificationHubRequestRequestTypeDef#

# DeregisterNotificationHubRequestRequestTypeDef definition

class DeregisterNotificationHubRequestRequestTypeDef(TypedDict):
    notificationHubRegion: str,

NotificationHubStatusSummaryTypeDef#

# NotificationHubStatusSummaryTypeDef definition

class NotificationHubStatusSummaryTypeDef(TypedDict):
    status: NotificationHubStatusType,  # (1)
    reason: str,
  1. See NotificationHubStatusType

DimensionTypeDef#

# DimensionTypeDef definition

class DimensionTypeDef(TypedDict):
    name: str,
    value: str,

DisassociateChannelRequestRequestTypeDef#

# DisassociateChannelRequestRequestTypeDef definition

class DisassociateChannelRequestRequestTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,

GetEventRuleRequestRequestTypeDef#

# GetEventRuleRequestRequestTypeDef definition

class GetEventRuleRequestRequestTypeDef(TypedDict):
    arn: str,

GetNotificationConfigurationRequestRequestTypeDef#

# GetNotificationConfigurationRequestRequestTypeDef definition

class GetNotificationConfigurationRequestRequestTypeDef(TypedDict):
    arn: str,

GetNotificationEventRequestRequestTypeDef#

# GetNotificationEventRequestRequestTypeDef definition

class GetNotificationEventRequestRequestTypeDef(TypedDict):
    arn: str,
    locale: NotRequired[LocaleCodeType],  # (1)
  1. See LocaleCodeType

PaginatorConfigTypeDef#

# PaginatorConfigTypeDef definition

class PaginatorConfigTypeDef(TypedDict):
    MaxItems: NotRequired[int],
    PageSize: NotRequired[int],
    StartingToken: NotRequired[str],

ListChannelsRequestRequestTypeDef#

# ListChannelsRequestRequestTypeDef definition

class ListChannelsRequestRequestTypeDef(TypedDict):
    notificationConfigurationArn: str,
    maxResults: NotRequired[int],
    nextToken: NotRequired[str],

ListEventRulesRequestRequestTypeDef#

# ListEventRulesRequestRequestTypeDef definition

class ListEventRulesRequestRequestTypeDef(TypedDict):
    notificationConfigurationArn: str,
    maxResults: NotRequired[int],
    nextToken: NotRequired[str],

ListNotificationConfigurationsRequestRequestTypeDef#

# ListNotificationConfigurationsRequestRequestTypeDef definition

class ListNotificationConfigurationsRequestRequestTypeDef(TypedDict):
    eventRuleSource: NotRequired[str],
    channelArn: NotRequired[str],
    status: NotRequired[NotificationConfigurationStatusType],  # (1)
    maxResults: NotRequired[int],
    nextToken: NotRequired[str],
  1. See NotificationConfigurationStatusType

NotificationConfigurationStructureTypeDef#

# NotificationConfigurationStructureTypeDef definition

class NotificationConfigurationStructureTypeDef(TypedDict):
    arn: str,
    name: str,
    description: str,
    status: NotificationConfigurationStatusType,  # (1)
    creationTime: datetime,
    aggregationDuration: NotRequired[AggregationDurationType],  # (2)
  1. See NotificationConfigurationStatusType
  2. See AggregationDurationType

ListNotificationHubsRequestRequestTypeDef#

# ListNotificationHubsRequestRequestTypeDef definition

class ListNotificationHubsRequestRequestTypeDef(TypedDict):
    maxResults: NotRequired[int],
    nextToken: NotRequired[str],

ListTagsForResourceRequestRequestTypeDef#

# ListTagsForResourceRequestRequestTypeDef definition

class ListTagsForResourceRequestRequestTypeDef(TypedDict):
    arn: str,

MediaElementTypeDef#

# MediaElementTypeDef definition

class MediaElementTypeDef(TypedDict):
    mediaId: str,
    type: MediaElementTypeType,  # (1)
    url: str,
    caption: str,
  1. See MediaElementTypeType

MessageComponentsSummaryTypeDef#

# MessageComponentsSummaryTypeDef definition

class MessageComponentsSummaryTypeDef(TypedDict):
    headline: str,

SourceEventMetadataSummaryTypeDef#

# SourceEventMetadataSummaryTypeDef definition

class SourceEventMetadataSummaryTypeDef(TypedDict):
    source: str,
    eventType: str,
    eventOriginRegion: NotRequired[str],

TextPartValueTypeDef#

# TextPartValueTypeDef definition

class TextPartValueTypeDef(TypedDict):
    type: TextPartTypeType,  # (1)
    displayText: NotRequired[str],
    textByLocale: NotRequired[Dict[LocaleCodeType, str]],  # (2)
    url: NotRequired[str],
  1. See TextPartTypeType
  2. See LocaleCodeType

RegisterNotificationHubRequestRequestTypeDef#

# RegisterNotificationHubRequestRequestTypeDef definition

class RegisterNotificationHubRequestRequestTypeDef(TypedDict):
    notificationHubRegion: str,

ResourceTypeDef#

# ResourceTypeDef definition

class ResourceTypeDef(TypedDict):
    id: NotRequired[str],
    arn: NotRequired[str],
    detailUrl: NotRequired[str],
    tags: NotRequired[List[str]],

TagResourceRequestRequestTypeDef#

# TagResourceRequestRequestTypeDef definition

class TagResourceRequestRequestTypeDef(TypedDict):
    arn: str,
    tags: Mapping[str, str],

UntagResourceRequestRequestTypeDef#

# UntagResourceRequestRequestTypeDef definition

class UntagResourceRequestRequestTypeDef(TypedDict):
    arn: str,
    tagKeys: Sequence[str],

UpdateEventRuleRequestRequestTypeDef#

# UpdateEventRuleRequestRequestTypeDef definition

class UpdateEventRuleRequestRequestTypeDef(TypedDict):
    arn: str,
    eventPattern: NotRequired[str],
    regions: NotRequired[Sequence[str]],

UpdateNotificationConfigurationRequestRequestTypeDef#

# UpdateNotificationConfigurationRequestRequestTypeDef definition

class UpdateNotificationConfigurationRequestRequestTypeDef(TypedDict):
    arn: str,
    name: NotRequired[str],
    description: NotRequired[str],
    aggregationDuration: NotRequired[AggregationDurationType],  # (1)
  1. See AggregationDurationType

EventRuleStructureTypeDef#

# EventRuleStructureTypeDef definition

class EventRuleStructureTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,
    creationTime: datetime,
    source: str,
    eventType: str,
    eventPattern: str,
    regions: List[str],
    managedRules: List[str],
    statusSummaryByRegion: Dict[str, EventRuleStatusSummaryTypeDef],  # (1)
  1. See EventRuleStatusSummaryTypeDef

CreateEventRuleResponseTypeDef#

# CreateEventRuleResponseTypeDef definition

class CreateEventRuleResponseTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,
    statusSummaryByRegion: Dict[str, EventRuleStatusSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See EventRuleStatusSummaryTypeDef
  2. See ResponseMetadataTypeDef

CreateNotificationConfigurationResponseTypeDef#

# CreateNotificationConfigurationResponseTypeDef definition

class CreateNotificationConfigurationResponseTypeDef(TypedDict):
    arn: str,
    status: NotificationConfigurationStatusType,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See NotificationConfigurationStatusType
  2. See ResponseMetadataTypeDef

GetEventRuleResponseTypeDef#

# GetEventRuleResponseTypeDef definition

class GetEventRuleResponseTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,
    creationTime: datetime,
    source: str,
    eventType: str,
    eventPattern: str,
    regions: List[str],
    managedRules: List[str],
    statusSummaryByRegion: Dict[str, EventRuleStatusSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See EventRuleStatusSummaryTypeDef
  2. See ResponseMetadataTypeDef

GetNotificationConfigurationResponseTypeDef#

# GetNotificationConfigurationResponseTypeDef definition

class GetNotificationConfigurationResponseTypeDef(TypedDict):
    arn: str,
    name: str,
    description: str,
    status: NotificationConfigurationStatusType,  # (1)
    creationTime: datetime,
    aggregationDuration: AggregationDurationType,  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See NotificationConfigurationStatusType
  2. See AggregationDurationType
  3. See ResponseMetadataTypeDef

ListChannelsResponseTypeDef#

# ListChannelsResponseTypeDef definition

class ListChannelsResponseTypeDef(TypedDict):
    channels: List[str],
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
    nextToken: NotRequired[str],
  1. See ResponseMetadataTypeDef

ListTagsForResourceResponseTypeDef#

# ListTagsForResourceResponseTypeDef definition

class ListTagsForResourceResponseTypeDef(TypedDict):
    tags: Dict[str, str],
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

UpdateEventRuleResponseTypeDef#

# UpdateEventRuleResponseTypeDef definition

class UpdateEventRuleResponseTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,
    statusSummaryByRegion: Dict[str, EventRuleStatusSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See EventRuleStatusSummaryTypeDef
  2. See ResponseMetadataTypeDef

UpdateNotificationConfigurationResponseTypeDef#

# UpdateNotificationConfigurationResponseTypeDef definition

class UpdateNotificationConfigurationResponseTypeDef(TypedDict):
    arn: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

DeregisterNotificationHubResponseTypeDef#

# DeregisterNotificationHubResponseTypeDef definition

class DeregisterNotificationHubResponseTypeDef(TypedDict):
    notificationHubRegion: str,
    statusSummary: NotificationHubStatusSummaryTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See NotificationHubStatusSummaryTypeDef
  2. See ResponseMetadataTypeDef

NotificationHubOverviewTypeDef#

# NotificationHubOverviewTypeDef definition

class NotificationHubOverviewTypeDef(TypedDict):
    notificationHubRegion: str,
    statusSummary: NotificationHubStatusSummaryTypeDef,  # (1)
    creationTime: datetime,
    lastActivationTime: NotRequired[datetime],
  1. See NotificationHubStatusSummaryTypeDef

RegisterNotificationHubResponseTypeDef#

# RegisterNotificationHubResponseTypeDef definition

class RegisterNotificationHubResponseTypeDef(TypedDict):
    notificationHubRegion: str,
    statusSummary: NotificationHubStatusSummaryTypeDef,  # (1)
    creationTime: datetime,
    lastActivationTime: datetime,
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See NotificationHubStatusSummaryTypeDef
  2. See ResponseMetadataTypeDef

MessageComponentsTypeDef#

# MessageComponentsTypeDef definition

class MessageComponentsTypeDef(TypedDict):
    headline: NotRequired[str],
    paragraphSummary: NotRequired[str],
    completeDescription: NotRequired[str],
    dimensions: NotRequired[List[DimensionTypeDef]],  # (1)
  1. See DimensionTypeDef

ListChannelsRequestListChannelsPaginateTypeDef#

# ListChannelsRequestListChannelsPaginateTypeDef definition

class ListChannelsRequestListChannelsPaginateTypeDef(TypedDict):
    notificationConfigurationArn: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListEventRulesRequestListEventRulesPaginateTypeDef#

# ListEventRulesRequestListEventRulesPaginateTypeDef definition

class ListEventRulesRequestListEventRulesPaginateTypeDef(TypedDict):
    notificationConfigurationArn: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListNotificationConfigurationsRequestListNotificationConfigurationsPaginateTypeDef#

# ListNotificationConfigurationsRequestListNotificationConfigurationsPaginateTypeDef definition

class ListNotificationConfigurationsRequestListNotificationConfigurationsPaginateTypeDef(TypedDict):
    eventRuleSource: NotRequired[str],
    channelArn: NotRequired[str],
    status: NotRequired[NotificationConfigurationStatusType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See NotificationConfigurationStatusType
  2. See PaginatorConfigTypeDef

ListNotificationHubsRequestListNotificationHubsPaginateTypeDef#

# ListNotificationHubsRequestListNotificationHubsPaginateTypeDef definition

class ListNotificationHubsRequestListNotificationHubsPaginateTypeDef(TypedDict):
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListNotificationConfigurationsResponseTypeDef#

# ListNotificationConfigurationsResponseTypeDef definition

class ListNotificationConfigurationsResponseTypeDef(TypedDict):
    notificationConfigurations: List[NotificationConfigurationStructureTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See NotificationConfigurationStructureTypeDef
  2. See ResponseMetadataTypeDef

ListNotificationEventsRequestListNotificationEventsPaginateTypeDef#

# ListNotificationEventsRequestListNotificationEventsPaginateTypeDef definition

class ListNotificationEventsRequestListNotificationEventsPaginateTypeDef(TypedDict):
    startTime: NotRequired[TimestampTypeDef],
    endTime: NotRequired[TimestampTypeDef],
    locale: NotRequired[LocaleCodeType],  # (1)
    source: NotRequired[str],
    includeChildEvents: NotRequired[bool],
    aggregateNotificationEventArn: NotRequired[str],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See LocaleCodeType
  2. See PaginatorConfigTypeDef

ListNotificationEventsRequestRequestTypeDef#

# ListNotificationEventsRequestRequestTypeDef definition

class ListNotificationEventsRequestRequestTypeDef(TypedDict):
    startTime: NotRequired[TimestampTypeDef],
    endTime: NotRequired[TimestampTypeDef],
    locale: NotRequired[LocaleCodeType],  # (1)
    source: NotRequired[str],
    includeChildEvents: NotRequired[bool],
    aggregateNotificationEventArn: NotRequired[str],
    maxResults: NotRequired[int],
    nextToken: NotRequired[str],
  1. See LocaleCodeType

NotificationEventSummaryTypeDef#

# NotificationEventSummaryTypeDef definition

class NotificationEventSummaryTypeDef(TypedDict):
    schemaVersion: SchemaVersionType,  # (1)
    sourceEventMetadata: SourceEventMetadataSummaryTypeDef,  # (2)
    messageComponents: MessageComponentsSummaryTypeDef,  # (3)
    eventStatus: EventStatusType,  # (4)
    notificationType: NotificationTypeType,  # (5)
  1. See SchemaVersionType
  2. See SourceEventMetadataSummaryTypeDef
  3. See MessageComponentsSummaryTypeDef
  4. See EventStatusType
  5. See NotificationTypeType

SourceEventMetadataTypeDef#

# SourceEventMetadataTypeDef definition

class SourceEventMetadataTypeDef(TypedDict):
    eventTypeVersion: str,
    sourceEventId: str,
    relatedAccount: str,
    source: str,
    eventOccurrenceTime: datetime,
    eventType: str,
    relatedResources: List[ResourceTypeDef],  # (1)
    eventOriginRegion: NotRequired[str],
  1. See ResourceTypeDef

ListEventRulesResponseTypeDef#

# ListEventRulesResponseTypeDef definition

class ListEventRulesResponseTypeDef(TypedDict):
    eventRules: List[EventRuleStructureTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See EventRuleStructureTypeDef
  2. See ResponseMetadataTypeDef

ListNotificationHubsResponseTypeDef#

# ListNotificationHubsResponseTypeDef definition

class ListNotificationHubsResponseTypeDef(TypedDict):
    notificationHubs: List[NotificationHubOverviewTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See NotificationHubOverviewTypeDef
  2. See ResponseMetadataTypeDef

NotificationEventOverviewTypeDef#

# NotificationEventOverviewTypeDef definition

class NotificationEventOverviewTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,
    relatedAccount: str,
    creationTime: datetime,
    notificationEvent: NotificationEventSummaryTypeDef,  # (1)
    aggregationEventType: NotRequired[AggregationEventTypeType],  # (2)
    aggregateNotificationEventArn: NotRequired[str],
  1. See NotificationEventSummaryTypeDef
  2. See AggregationEventTypeType

NotificationEventTypeDef#

# NotificationEventTypeDef definition

class NotificationEventTypeDef(TypedDict):
    schemaVersion: SchemaVersionType,  # (1)
    id: str,
    sourceEventMetadata: SourceEventMetadataTypeDef,  # (2)
    messageComponents: MessageComponentsTypeDef,  # (3)
    notificationType: NotificationTypeType,  # (4)
    textParts: Dict[str, TextPartValueTypeDef],  # (7)
    media: List[MediaElementTypeDef],  # (8)
    sourceEventDetailUrl: NotRequired[str],
    sourceEventDetailUrlDisplayText: NotRequired[str],
    eventStatus: NotRequired[EventStatusType],  # (5)
    aggregationEventType: NotRequired[AggregationEventTypeType],  # (6)
    aggregateNotificationEventArn: NotRequired[str],
    startTime: NotRequired[datetime],
    endTime: NotRequired[datetime],
  1. See SchemaVersionType
  2. See SourceEventMetadataTypeDef
  3. See MessageComponentsTypeDef
  4. See NotificationTypeType
  5. See EventStatusType
  6. See AggregationEventTypeType
  7. See TextPartValueTypeDef
  8. See MediaElementTypeDef

ListNotificationEventsResponseTypeDef#

# ListNotificationEventsResponseTypeDef definition

class ListNotificationEventsResponseTypeDef(TypedDict):
    notificationEvents: List[NotificationEventOverviewTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See NotificationEventOverviewTypeDef
  2. See ResponseMetadataTypeDef

GetNotificationEventResponseTypeDef#

# GetNotificationEventResponseTypeDef definition

class GetNotificationEventResponseTypeDef(TypedDict):
    arn: str,
    notificationConfigurationArn: str,
    creationTime: datetime,
    content: NotificationEventTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See NotificationEventTypeDef
  2. See ResponseMetadataTypeDef