SSMContactsClient#
Index > SSMContacts > SSMContactsClient
Auto-generated documentation for SSMContacts type annotations stubs module mypy-boto3-ssm-contacts.
SSMContactsClient#
Type annotations and code completion for boto3.client("ssm-contacts")
.
boto3 documentation
# SSMContactsClient usage example
from boto3.session import Session
from mypy_boto3_ssm_contacts.client import SSMContactsClient
def get_ssm-contacts_client() -> SSMContactsClient:
return Session().client("ssm-contacts")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("ssm-contacts").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("ssm-contacts")
try:
do_something(client)
except (
client.exceptions.AccessDeniedException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
client.exceptions.DataEncryptionException,
client.exceptions.InternalServerException,
client.exceptions.ResourceNotFoundException,
client.exceptions.ServiceQuotaExceededException,
client.exceptions.ThrottlingException,
client.exceptions.ValidationException,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_ssm_contacts.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods#
accept_page#
Used to acknowledge an engagement to a contact channel during an incident.
Type annotations and code completion for boto3.client("ssm-contacts").accept_page
method.
boto3 documentation
# accept_page method definition
def accept_page(
self,
*,
PageId: str,
AcceptType: AcceptTypeType, # (1)
AcceptCode: str,
ContactChannelId: str = ...,
Note: str = ...,
AcceptCodeValidation: AcceptCodeValidationType = ..., # (2)
) -> Dict[str, Any]:
...
# accept_page method usage example with argument unpacking
kwargs: AcceptPageRequestRequestTypeDef = { # (1)
"PageId": ...,
"AcceptType": ...,
"AcceptCode": ...,
}
parent.accept_page(**kwargs)
activate_contact_channel#
Activates a contact's contact channel.
Type annotations and code completion for boto3.client("ssm-contacts").activate_contact_channel
method.
boto3 documentation
# activate_contact_channel method definition
def activate_contact_channel(
self,
*,
ContactChannelId: str,
ActivationCode: str,
) -> Dict[str, Any]:
...
# activate_contact_channel method usage example with argument unpacking
kwargs: ActivateContactChannelRequestRequestTypeDef = { # (1)
"ContactChannelId": ...,
"ActivationCode": ...,
}
parent.activate_contact_channel(**kwargs)
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("ssm-contacts").can_paginate
method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("ssm-contacts").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
create_contact#
Contacts are either the contacts that Incident Manager engages during an incident or the escalation plans that Incident Manager uses to engage contacts in phases during an incident.
Type annotations and code completion for boto3.client("ssm-contacts").create_contact
method.
boto3 documentation
# create_contact method definition
def create_contact(
self,
*,
Alias: str,
Type: ContactTypeType, # (1)
Plan: PlanTypeDef, # (2)
DisplayName: str = ...,
Tags: Sequence[TagTypeDef] = ..., # (3)
IdempotencyToken: str = ...,
) -> CreateContactResultTypeDef: # (4)
...
- See ContactTypeType
- See PlanTypeDef
- See TagTypeDef
- See CreateContactResultTypeDef
# create_contact method usage example with argument unpacking
kwargs: CreateContactRequestRequestTypeDef = { # (1)
"Alias": ...,
"Type": ...,
"Plan": ...,
}
parent.create_contact(**kwargs)
create_contact_channel#
A contact channel is the method that Incident Manager uses to engage your contact.
Type annotations and code completion for boto3.client("ssm-contacts").create_contact_channel
method.
boto3 documentation
# create_contact_channel method definition
def create_contact_channel(
self,
*,
ContactId: str,
Name: str,
Type: ChannelTypeType, # (1)
DeliveryAddress: ContactChannelAddressTypeDef, # (2)
DeferActivation: bool = ...,
IdempotencyToken: str = ...,
) -> CreateContactChannelResultTypeDef: # (3)
...
# create_contact_channel method usage example with argument unpacking
kwargs: CreateContactChannelRequestRequestTypeDef = { # (1)
"ContactId": ...,
"Name": ...,
"Type": ...,
"DeliveryAddress": ...,
}
parent.create_contact_channel(**kwargs)
create_rotation#
Creates a rotation in an on-call schedule.
Type annotations and code completion for boto3.client("ssm-contacts").create_rotation
method.
boto3 documentation
# create_rotation method definition
def create_rotation(
self,
*,
Name: str,
ContactIds: Sequence[str],
TimeZoneId: str,
Recurrence: RecurrenceSettingsTypeDef, # (1)
StartTime: TimestampTypeDef = ...,
Tags: Sequence[TagTypeDef] = ..., # (2)
IdempotencyToken: str = ...,
) -> CreateRotationResultTypeDef: # (3)
...
# create_rotation method usage example with argument unpacking
kwargs: CreateRotationRequestRequestTypeDef = { # (1)
"Name": ...,
"ContactIds": ...,
"TimeZoneId": ...,
"Recurrence": ...,
}
parent.create_rotation(**kwargs)
create_rotation_override#
Creates an override for a rotation in an on-call schedule.
Type annotations and code completion for boto3.client("ssm-contacts").create_rotation_override
method.
boto3 documentation
# create_rotation_override method definition
def create_rotation_override(
self,
*,
RotationId: str,
NewContactIds: Sequence[str],
StartTime: TimestampTypeDef,
EndTime: TimestampTypeDef,
IdempotencyToken: str = ...,
) -> CreateRotationOverrideResultTypeDef: # (1)
...
# create_rotation_override method usage example with argument unpacking
kwargs: CreateRotationOverrideRequestRequestTypeDef = { # (1)
"RotationId": ...,
"NewContactIds": ...,
"StartTime": ...,
"EndTime": ...,
}
parent.create_rotation_override(**kwargs)
deactivate_contact_channel#
To no longer receive Incident Manager engagements to a contact channel, you can deactivate the channel.
Type annotations and code completion for boto3.client("ssm-contacts").deactivate_contact_channel
method.
boto3 documentation
# deactivate_contact_channel method definition
def deactivate_contact_channel(
self,
*,
ContactChannelId: str,
) -> Dict[str, Any]:
...
# deactivate_contact_channel method usage example with argument unpacking
kwargs: DeactivateContactChannelRequestRequestTypeDef = { # (1)
"ContactChannelId": ...,
}
parent.deactivate_contact_channel(**kwargs)
delete_contact#
To remove a contact from Incident Manager, you can delete the contact.
Type annotations and code completion for boto3.client("ssm-contacts").delete_contact
method.
boto3 documentation
# delete_contact method definition
def delete_contact(
self,
*,
ContactId: str,
) -> Dict[str, Any]:
...
# delete_contact method usage example with argument unpacking
kwargs: DeleteContactRequestRequestTypeDef = { # (1)
"ContactId": ...,
}
parent.delete_contact(**kwargs)
delete_contact_channel#
To no longer receive engagements on a contact channel, you can delete the channel from a contact.
Type annotations and code completion for boto3.client("ssm-contacts").delete_contact_channel
method.
boto3 documentation
# delete_contact_channel method definition
def delete_contact_channel(
self,
*,
ContactChannelId: str,
) -> Dict[str, Any]:
...
# delete_contact_channel method usage example with argument unpacking
kwargs: DeleteContactChannelRequestRequestTypeDef = { # (1)
"ContactChannelId": ...,
}
parent.delete_contact_channel(**kwargs)
delete_rotation#
Deletes a rotation from the system.
Type annotations and code completion for boto3.client("ssm-contacts").delete_rotation
method.
boto3 documentation
# delete_rotation method definition
def delete_rotation(
self,
*,
RotationId: str,
) -> Dict[str, Any]:
...
# delete_rotation method usage example with argument unpacking
kwargs: DeleteRotationRequestRequestTypeDef = { # (1)
"RotationId": ...,
}
parent.delete_rotation(**kwargs)
delete_rotation_override#
Deletes an existing override for an on-call rotation.
Type annotations and code completion for boto3.client("ssm-contacts").delete_rotation_override
method.
boto3 documentation
# delete_rotation_override method definition
def delete_rotation_override(
self,
*,
RotationId: str,
RotationOverrideId: str,
) -> Dict[str, Any]:
...
# delete_rotation_override method usage example with argument unpacking
kwargs: DeleteRotationOverrideRequestRequestTypeDef = { # (1)
"RotationId": ...,
"RotationOverrideId": ...,
}
parent.delete_rotation_override(**kwargs)
describe_engagement#
Incident Manager uses engagements to engage contacts and escalation plans during an incident.
Type annotations and code completion for boto3.client("ssm-contacts").describe_engagement
method.
boto3 documentation
# describe_engagement method definition
def describe_engagement(
self,
*,
EngagementId: str,
) -> DescribeEngagementResultTypeDef: # (1)
...
# describe_engagement method usage example with argument unpacking
kwargs: DescribeEngagementRequestRequestTypeDef = { # (1)
"EngagementId": ...,
}
parent.describe_engagement(**kwargs)
describe_page#
Lists details of the engagement to a contact channel.
Type annotations and code completion for boto3.client("ssm-contacts").describe_page
method.
boto3 documentation
# describe_page method definition
def describe_page(
self,
*,
PageId: str,
) -> DescribePageResultTypeDef: # (1)
...
# describe_page method usage example with argument unpacking
kwargs: DescribePageRequestRequestTypeDef = { # (1)
"PageId": ...,
}
parent.describe_page(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("ssm-contacts").generate_presigned_url
method.
boto3 documentation
# generate_presigned_url method definition
def generate_presigned_url(
self,
ClientMethod: str,
Params: Mapping[str, Any] = ...,
ExpiresIn: int = 3600,
HttpMethod: str = ...,
) -> str:
...
get_contact#
Retrieves information about the specified contact or escalation plan.
Type annotations and code completion for boto3.client("ssm-contacts").get_contact
method.
boto3 documentation
# get_contact method definition
def get_contact(
self,
*,
ContactId: str,
) -> GetContactResultTypeDef: # (1)
...
# get_contact method usage example with argument unpacking
kwargs: GetContactRequestRequestTypeDef = { # (1)
"ContactId": ...,
}
parent.get_contact(**kwargs)
get_contact_channel#
List details about a specific contact channel.
Type annotations and code completion for boto3.client("ssm-contacts").get_contact_channel
method.
boto3 documentation
# get_contact_channel method definition
def get_contact_channel(
self,
*,
ContactChannelId: str,
) -> GetContactChannelResultTypeDef: # (1)
...
# get_contact_channel method usage example with argument unpacking
kwargs: GetContactChannelRequestRequestTypeDef = { # (1)
"ContactChannelId": ...,
}
parent.get_contact_channel(**kwargs)
get_contact_policy#
Retrieves the resource policies attached to the specified contact or escalation plan.
Type annotations and code completion for boto3.client("ssm-contacts").get_contact_policy
method.
boto3 documentation
# get_contact_policy method definition
def get_contact_policy(
self,
*,
ContactArn: str,
) -> GetContactPolicyResultTypeDef: # (1)
...
# get_contact_policy method usage example with argument unpacking
kwargs: GetContactPolicyRequestRequestTypeDef = { # (1)
"ContactArn": ...,
}
parent.get_contact_policy(**kwargs)
get_rotation#
Retrieves information about an on-call rotation.
Type annotations and code completion for boto3.client("ssm-contacts").get_rotation
method.
boto3 documentation
# get_rotation method definition
def get_rotation(
self,
*,
RotationId: str,
) -> GetRotationResultTypeDef: # (1)
...
# get_rotation method usage example with argument unpacking
kwargs: GetRotationRequestRequestTypeDef = { # (1)
"RotationId": ...,
}
parent.get_rotation(**kwargs)
get_rotation_override#
Retrieves information about an override to an on-call rotation.
Type annotations and code completion for boto3.client("ssm-contacts").get_rotation_override
method.
boto3 documentation
# get_rotation_override method definition
def get_rotation_override(
self,
*,
RotationId: str,
RotationOverrideId: str,
) -> GetRotationOverrideResultTypeDef: # (1)
...
# get_rotation_override method usage example with argument unpacking
kwargs: GetRotationOverrideRequestRequestTypeDef = { # (1)
"RotationId": ...,
"RotationOverrideId": ...,
}
parent.get_rotation_override(**kwargs)
list_contact_channels#
Lists all contact channels for the specified contact.
Type annotations and code completion for boto3.client("ssm-contacts").list_contact_channels
method.
boto3 documentation
# list_contact_channels method definition
def list_contact_channels(
self,
*,
ContactId: str,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListContactChannelsResultTypeDef: # (1)
...
# list_contact_channels method usage example with argument unpacking
kwargs: ListContactChannelsRequestRequestTypeDef = { # (1)
"ContactId": ...,
}
parent.list_contact_channels(**kwargs)
list_contacts#
Lists all contacts and escalation plans in Incident Manager.
Type annotations and code completion for boto3.client("ssm-contacts").list_contacts
method.
boto3 documentation
# list_contacts method definition
def list_contacts(
self,
*,
NextToken: str = ...,
MaxResults: int = ...,
AliasPrefix: str = ...,
Type: ContactTypeType = ..., # (1)
) -> ListContactsResultTypeDef: # (2)
...
# list_contacts method usage example with argument unpacking
kwargs: ListContactsRequestRequestTypeDef = { # (1)
"NextToken": ...,
}
parent.list_contacts(**kwargs)
list_engagements#
Lists all engagements that have happened in an incident.
Type annotations and code completion for boto3.client("ssm-contacts").list_engagements
method.
boto3 documentation
# list_engagements method definition
def list_engagements(
self,
*,
NextToken: str = ...,
MaxResults: int = ...,
IncidentId: str = ...,
TimeRangeValue: TimeRangeTypeDef = ..., # (1)
) -> ListEngagementsResultTypeDef: # (2)
...
# list_engagements method usage example with argument unpacking
kwargs: ListEngagementsRequestRequestTypeDef = { # (1)
"NextToken": ...,
}
parent.list_engagements(**kwargs)
list_page_receipts#
Lists all of the engagements to contact channels that have been acknowledged.
Type annotations and code completion for boto3.client("ssm-contacts").list_page_receipts
method.
boto3 documentation
# list_page_receipts method definition
def list_page_receipts(
self,
*,
PageId: str,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListPageReceiptsResultTypeDef: # (1)
...
# list_page_receipts method usage example with argument unpacking
kwargs: ListPageReceiptsRequestRequestTypeDef = { # (1)
"PageId": ...,
}
parent.list_page_receipts(**kwargs)
list_page_resolutions#
Returns the resolution path of an engagement.
Type annotations and code completion for boto3.client("ssm-contacts").list_page_resolutions
method.
boto3 documentation
# list_page_resolutions method definition
def list_page_resolutions(
self,
*,
PageId: str,
NextToken: str = ...,
) -> ListPageResolutionsResultTypeDef: # (1)
...
# list_page_resolutions method usage example with argument unpacking
kwargs: ListPageResolutionsRequestRequestTypeDef = { # (1)
"PageId": ...,
}
parent.list_page_resolutions(**kwargs)
list_pages_by_contact#
Lists the engagements to a contact's contact channels.
Type annotations and code completion for boto3.client("ssm-contacts").list_pages_by_contact
method.
boto3 documentation
# list_pages_by_contact method definition
def list_pages_by_contact(
self,
*,
ContactId: str,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListPagesByContactResultTypeDef: # (1)
...
# list_pages_by_contact method usage example with argument unpacking
kwargs: ListPagesByContactRequestRequestTypeDef = { # (1)
"ContactId": ...,
}
parent.list_pages_by_contact(**kwargs)
list_pages_by_engagement#
Lists the engagements to contact channels that occurred by engaging a contact.
Type annotations and code completion for boto3.client("ssm-contacts").list_pages_by_engagement
method.
boto3 documentation
# list_pages_by_engagement method definition
def list_pages_by_engagement(
self,
*,
EngagementId: str,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListPagesByEngagementResultTypeDef: # (1)
...
# list_pages_by_engagement method usage example with argument unpacking
kwargs: ListPagesByEngagementRequestRequestTypeDef = { # (1)
"EngagementId": ...,
}
parent.list_pages_by_engagement(**kwargs)
list_preview_rotation_shifts#
Returns a list of shifts based on rotation configuration parameters.
Type annotations and code completion for boto3.client("ssm-contacts").list_preview_rotation_shifts
method.
boto3 documentation
# list_preview_rotation_shifts method definition
def list_preview_rotation_shifts(
self,
*,
EndTime: TimestampTypeDef,
Members: Sequence[str],
TimeZoneId: str,
Recurrence: RecurrenceSettingsTypeDef, # (1)
RotationStartTime: TimestampTypeDef = ...,
StartTime: TimestampTypeDef = ...,
Overrides: Sequence[PreviewOverrideTypeDef] = ..., # (2)
NextToken: str = ...,
MaxResults: int = ...,
) -> ListPreviewRotationShiftsResultTypeDef: # (3)
...
# list_preview_rotation_shifts method usage example with argument unpacking
kwargs: ListPreviewRotationShiftsRequestRequestTypeDef = { # (1)
"EndTime": ...,
"Members": ...,
"TimeZoneId": ...,
"Recurrence": ...,
}
parent.list_preview_rotation_shifts(**kwargs)
list_rotation_overrides#
Retrieves a list of overrides currently specified for an on-call rotation.
Type annotations and code completion for boto3.client("ssm-contacts").list_rotation_overrides
method.
boto3 documentation
# list_rotation_overrides method definition
def list_rotation_overrides(
self,
*,
RotationId: str,
StartTime: TimestampTypeDef,
EndTime: TimestampTypeDef,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListRotationOverridesResultTypeDef: # (1)
...
# list_rotation_overrides method usage example with argument unpacking
kwargs: ListRotationOverridesRequestRequestTypeDef = { # (1)
"RotationId": ...,
"StartTime": ...,
"EndTime": ...,
}
parent.list_rotation_overrides(**kwargs)
list_rotation_shifts#
Returns a list of shifts generated by an existing rotation in the system.
Type annotations and code completion for boto3.client("ssm-contacts").list_rotation_shifts
method.
boto3 documentation
# list_rotation_shifts method definition
def list_rotation_shifts(
self,
*,
RotationId: str,
EndTime: TimestampTypeDef,
StartTime: TimestampTypeDef = ...,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListRotationShiftsResultTypeDef: # (1)
...
# list_rotation_shifts method usage example with argument unpacking
kwargs: ListRotationShiftsRequestRequestTypeDef = { # (1)
"RotationId": ...,
"EndTime": ...,
}
parent.list_rotation_shifts(**kwargs)
list_rotations#
Retrieves a list of on-call rotations.
Type annotations and code completion for boto3.client("ssm-contacts").list_rotations
method.
boto3 documentation
# list_rotations method definition
def list_rotations(
self,
*,
RotationNamePrefix: str = ...,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListRotationsResultTypeDef: # (1)
...
# list_rotations method usage example with argument unpacking
kwargs: ListRotationsRequestRequestTypeDef = { # (1)
"RotationNamePrefix": ...,
}
parent.list_rotations(**kwargs)
list_tags_for_resource#
Lists the tags of an escalation plan or contact.
Type annotations and code completion for boto3.client("ssm-contacts").list_tags_for_resource
method.
boto3 documentation
# list_tags_for_resource method definition
def list_tags_for_resource(
self,
*,
ResourceARN: str,
) -> ListTagsForResourceResultTypeDef: # (1)
...
# list_tags_for_resource method usage example with argument unpacking
kwargs: ListTagsForResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
}
parent.list_tags_for_resource(**kwargs)
put_contact_policy#
Adds a resource policy to the specified contact or escalation plan.
Type annotations and code completion for boto3.client("ssm-contacts").put_contact_policy
method.
boto3 documentation
# put_contact_policy method definition
def put_contact_policy(
self,
*,
ContactArn: str,
Policy: str,
) -> Dict[str, Any]:
...
# put_contact_policy method usage example with argument unpacking
kwargs: PutContactPolicyRequestRequestTypeDef = { # (1)
"ContactArn": ...,
"Policy": ...,
}
parent.put_contact_policy(**kwargs)
send_activation_code#
Sends an activation code to a contact channel.
Type annotations and code completion for boto3.client("ssm-contacts").send_activation_code
method.
boto3 documentation
# send_activation_code method definition
def send_activation_code(
self,
*,
ContactChannelId: str,
) -> Dict[str, Any]:
...
# send_activation_code method usage example with argument unpacking
kwargs: SendActivationCodeRequestRequestTypeDef = { # (1)
"ContactChannelId": ...,
}
parent.send_activation_code(**kwargs)
start_engagement#
Starts an engagement to a contact or escalation plan.
Type annotations and code completion for boto3.client("ssm-contacts").start_engagement
method.
boto3 documentation
# start_engagement method definition
def start_engagement(
self,
*,
ContactId: str,
Sender: str,
Subject: str,
Content: str,
PublicSubject: str = ...,
PublicContent: str = ...,
IncidentId: str = ...,
IdempotencyToken: str = ...,
) -> StartEngagementResultTypeDef: # (1)
...
# start_engagement method usage example with argument unpacking
kwargs: StartEngagementRequestRequestTypeDef = { # (1)
"ContactId": ...,
"Sender": ...,
"Subject": ...,
"Content": ...,
}
parent.start_engagement(**kwargs)
stop_engagement#
Stops an engagement before it finishes the final stage of the escalation plan or engagement plan.
Type annotations and code completion for boto3.client("ssm-contacts").stop_engagement
method.
boto3 documentation
# stop_engagement method definition
def stop_engagement(
self,
*,
EngagementId: str,
Reason: str = ...,
) -> Dict[str, Any]:
...
# stop_engagement method usage example with argument unpacking
kwargs: StopEngagementRequestRequestTypeDef = { # (1)
"EngagementId": ...,
}
parent.stop_engagement(**kwargs)
tag_resource#
Tags a contact or escalation plan.
Type annotations and code completion for boto3.client("ssm-contacts").tag_resource
method.
boto3 documentation
# tag_resource method definition
def tag_resource(
self,
*,
ResourceARN: str,
Tags: Sequence[TagTypeDef], # (1)
) -> Dict[str, Any]:
...
- See TagTypeDef
# tag_resource method usage example with argument unpacking
kwargs: TagResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
"Tags": ...,
}
parent.tag_resource(**kwargs)
untag_resource#
Removes tags from the specified resource.
Type annotations and code completion for boto3.client("ssm-contacts").untag_resource
method.
boto3 documentation
# untag_resource method definition
def untag_resource(
self,
*,
ResourceARN: str,
TagKeys: Sequence[str],
) -> Dict[str, Any]:
...
# untag_resource method usage example with argument unpacking
kwargs: UntagResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
"TagKeys": ...,
}
parent.untag_resource(**kwargs)
update_contact#
Updates the contact or escalation plan specified.
Type annotations and code completion for boto3.client("ssm-contacts").update_contact
method.
boto3 documentation
# update_contact method definition
def update_contact(
self,
*,
ContactId: str,
DisplayName: str = ...,
Plan: PlanTypeDef = ..., # (1)
) -> Dict[str, Any]:
...
- See PlanTypeDef
# update_contact method usage example with argument unpacking
kwargs: UpdateContactRequestRequestTypeDef = { # (1)
"ContactId": ...,
}
parent.update_contact(**kwargs)
update_contact_channel#
Updates a contact's contact channel.
Type annotations and code completion for boto3.client("ssm-contacts").update_contact_channel
method.
boto3 documentation
# update_contact_channel method definition
def update_contact_channel(
self,
*,
ContactChannelId: str,
Name: str = ...,
DeliveryAddress: ContactChannelAddressTypeDef = ..., # (1)
) -> Dict[str, Any]:
...
# update_contact_channel method usage example with argument unpacking
kwargs: UpdateContactChannelRequestRequestTypeDef = { # (1)
"ContactChannelId": ...,
}
parent.update_contact_channel(**kwargs)
update_rotation#
Updates the information specified for an on-call rotation.
Type annotations and code completion for boto3.client("ssm-contacts").update_rotation
method.
boto3 documentation
# update_rotation method definition
def update_rotation(
self,
*,
RotationId: str,
Recurrence: RecurrenceSettingsTypeDef, # (1)
ContactIds: Sequence[str] = ...,
StartTime: TimestampTypeDef = ...,
TimeZoneId: str = ...,
) -> Dict[str, Any]:
...
# update_rotation method usage example with argument unpacking
kwargs: UpdateRotationRequestRequestTypeDef = { # (1)
"RotationId": ...,
"Recurrence": ...,
}
parent.update_rotation(**kwargs)
get_paginator#
Type annotations and code completion for boto3.client("ssm-contacts").get_paginator
method with overloads.
client.get_paginator("list_contact_channels")
-> ListContactChannelsPaginatorclient.get_paginator("list_contacts")
-> ListContactsPaginatorclient.get_paginator("list_engagements")
-> ListEngagementsPaginatorclient.get_paginator("list_page_receipts")
-> ListPageReceiptsPaginatorclient.get_paginator("list_page_resolutions")
-> ListPageResolutionsPaginatorclient.get_paginator("list_pages_by_contact")
-> ListPagesByContactPaginatorclient.get_paginator("list_pages_by_engagement")
-> ListPagesByEngagementPaginatorclient.get_paginator("list_preview_rotation_shifts")
-> ListPreviewRotationShiftsPaginatorclient.get_paginator("list_rotation_overrides")
-> ListRotationOverridesPaginatorclient.get_paginator("list_rotation_shifts")
-> ListRotationShiftsPaginatorclient.get_paginator("list_rotations")
-> ListRotationsPaginator