CloudWatchOmniClient#
Index > CloudWatchOmni > CloudWatchOmniClient
Auto-generated documentation for CloudWatchOmni type annotations stubs module mypy-boto3-cloudwatchomni.
CloudWatchOmniClient#
Type annotations and code completion for boto3.client("cloudwatchomni").
boto3 documentation
# CloudWatchOmniClient usage example
from boto3.session import Session
from mypy_boto3_cloudwatchomni.client import CloudWatchOmniClient
def get_cloudwatchomni_client() -> CloudWatchOmniClient:
return Session().client("cloudwatchomni")
Exceptions#
boto3 client exceptions are generated in runtime.
This class provides code completion for boto3.client("cloudwatchomni").exceptions structure.
# Exceptions.exceptions usage example
client = boto3.client("cloudwatchomni")
try:
do_something(client)
except (
client.exceptions.AccessDeniedException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
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_cloudwatchomni.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods#
can_paginate#
Type annotations and code completion for boto3.client("cloudwatchomni").can_paginate method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
generate_presigned_url#
Type annotations and code completion for boto3.client("cloudwatchomni").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:
...
create_access_grant#
Creates an AccessGrant that authorizes a principal to perform a set of actions on resources in a space.
Type annotations and code completion for boto3.client("cloudwatchomni").create_access_grant method.
boto3 documentation
# create_access_grant method definition
def create_access_grant(
self,
*,
domainId: str,
spaceId: str,
name: str,
principal: AccessGrantPrincipalUnionTypeDef, # (1)
permission: AccessGrantPermissionType, # (2)
scopedActions: Sequence[ScopedActionsUnionTypeDef] = ..., # (3)
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateAccessGrantOutputTypeDef: # (4)
...
- See AccessGrantPrincipalUnionTypeDef
- See AccessGrantPermissionType
- See
Sequence[ScopedActionsUnionTypeDef] - See CreateAccessGrantOutputTypeDef
# create_access_grant method usage example with argument unpacking
kwargs: CreateAccessGrantInputTypeDef = { # (1)
"domainId": ...,
"spaceId": ...,
"name": ...,
"principal": ...,
"permission": ...,
}
parent.create_access_grant(**kwargs)
create_access_profile#
Creates an access profile in a space.
Type annotations and code completion for boto3.client("cloudwatchomni").create_access_profile method.
boto3 documentation
# create_access_profile method definition
def create_access_profile(
self,
*,
spaceId: str,
name: str,
description: str = ...,
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateAccessProfileOutputTypeDef: # (1)
...
# create_access_profile method usage example with argument unpacking
kwargs: CreateAccessProfileInputTypeDef = { # (1)
"spaceId": ...,
"name": ...,
}
parent.create_access_profile(**kwargs)
create_alert#
Creates a new alert within a space.
Type annotations and code completion for boto3.client("cloudwatchomni").create_alert method.
boto3 documentation
# create_alert method definition
def create_alert(
self,
*,
spaceId: str,
profileId: str,
name: str,
rule: RuleTypeDef, # (1)
description: str = ...,
notificationsEnabled: bool = ...,
tags: Mapping[str, str] = ...,
notificationRules: Sequence[NotificationRuleUnionTypeDef] = ..., # (2)
clientToken: str = ...,
) -> CreateAlertOutputTypeDef: # (3)
...
- See RuleTypeDef
- See
Sequence[NotificationRuleUnionTypeDef] - See CreateAlertOutputTypeDef
# create_alert method usage example with argument unpacking
kwargs: CreateAlertInputTypeDef = { # (1)
"spaceId": ...,
"profileId": ...,
"name": ...,
"rule": ...,
}
parent.create_alert(**kwargs)
create_domain#
Creates a domain with identity provider configuration.
Type annotations and code completion for boto3.client("cloudwatchomni").create_domain method.
boto3 documentation
# create_domain method definition
def create_domain(
self,
*,
name: str,
identityProviders: Sequence[IdentityProviderType], # (1)
identityProviderConfiguration: IdentityProviderConfigurationTypeDef = ..., # (2)
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateDomainOutputTypeDef: # (3)
...
- See
Sequence[IdentityProviderType] - See IdentityProviderConfigurationTypeDef
- See CreateDomainOutputTypeDef
# create_domain method usage example with argument unpacking
kwargs: CreateDomainInputTypeDef = { # (1)
"name": ...,
"identityProviders": ...,
}
parent.create_domain(**kwargs)
create_domain_access_grant_for_organization#
Creates an AccessGrant that authorizes a principal to administer an organization domain.
Type annotations and code completion for boto3.client("cloudwatchomni").create_domain_access_grant_for_organization method.
boto3 documentation
# create_domain_access_grant_for_organization method definition
def create_domain_access_grant_for_organization(
self,
*,
domainId: str,
name: str,
principal: OrganizationAccessGrantPrincipalUnionTypeDef, # (1)
permission: OrganizationGrantPermissionType, # (2)
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateDomainAccessGrantForOrganizationOutputTypeDef: # (3)
...
- See OrganizationAccessGrantPrincipalUnionTypeDef
- See OrganizationGrantPermissionType
- See CreateDomainAccessGrantForOrganizationOutputTypeDef
# create_domain_access_grant_for_organization method usage example with argument unpacking
kwargs: CreateDomainAccessGrantForOrganizationInputTypeDef = { # (1)
"domainId": ...,
"name": ...,
"principal": ...,
"permission": ...,
}
parent.create_domain_access_grant_for_organization(**kwargs)
create_domain_for_organization#
Creates an organization-scoped domain for the caller's AWS Organization.
Type annotations and code completion for boto3.client("cloudwatchomni").create_domain_for_organization method.
boto3 documentation
# create_domain_for_organization method definition
def create_domain_for_organization(
self,
*,
name: str,
identityProviders: Sequence[IdentityProviderType], # (1)
domainAccessRoleArn: str,
identityProviderConfiguration: IdentityProviderConfigurationTypeDef = ..., # (2)
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateDomainForOrganizationOutputTypeDef: # (3)
...
- See
Sequence[IdentityProviderType] - See IdentityProviderConfigurationTypeDef
- See CreateDomainForOrganizationOutputTypeDef
# create_domain_for_organization method usage example with argument unpacking
kwargs: CreateDomainForOrganizationInputTypeDef = { # (1)
"name": ...,
"identityProviders": ...,
"domainAccessRoleArn": ...,
}
parent.create_domain_for_organization(**kwargs)
create_integration#
Creates an integration with a third-party provider.
Type annotations and code completion for boto3.client("cloudwatchomni").create_integration method.
boto3 documentation
# create_integration method definition
def create_integration(
self,
*,
integrationType: IntegrationTypeType, # (1)
name: str,
credential: IntegrationCredentialTypeDef = ..., # (2)
integrationAttributes: Mapping[str, str] = ...,
roleArn: str = ...,
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateIntegrationOutputTypeDef: # (3)
...
# create_integration method usage example with argument unpacking
kwargs: CreateIntegrationInputTypeDef = { # (1)
"integrationType": ...,
"name": ...,
}
parent.create_integration(**kwargs)
create_omni_dashboard#
Creates a new dashboard within a space.
Type annotations and code completion for boto3.client("cloudwatchomni").create_omni_dashboard method.
boto3 documentation
# create_omni_dashboard method definition
def create_omni_dashboard(
self,
*,
spaceId: str,
name: str,
body: str,
description: str = ...,
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateOmniDashboardOutputTypeDef: # (1)
...
# create_omni_dashboard method usage example with argument unpacking
kwargs: CreateOmniDashboardInputTypeDef = { # (1)
"spaceId": ...,
"name": ...,
"body": ...,
}
parent.create_omni_dashboard(**kwargs)
create_one_time_deep_link_code#
Generates a one-time code for deep-link authentication.
Type annotations and code completion for boto3.client("cloudwatchomni").create_one_time_deep_link_code method.
boto3 documentation
# create_one_time_deep_link_code method definition
def create_one_time_deep_link_code(
self,
*,
domainId: str,
ttlSeconds: int = ...,
redirectUrl: str = ...,
) -> CreateOneTimeDeepLinkCodeOutputTypeDef: # (1)
...
# create_one_time_deep_link_code method usage example with argument unpacking
kwargs: CreateOneTimeDeepLinkCodeInputTypeDef = { # (1)
"domainId": ...,
}
parent.create_one_time_deep_link_code(**kwargs)
create_space#
Creates a space in a domain.
Type annotations and code completion for boto3.client("cloudwatchomni").create_space method.
boto3 documentation
# create_space method definition
def create_space(
self,
*,
name: str,
domainId: str,
dataAccessRoleArn: str,
agentCoreEvaluationRoleArn: str = ...,
encryptionConfiguration: EncryptionConfigurationTypeDef = ..., # (1)
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateSpaceOutputTypeDef: # (2)
...
# create_space method usage example with argument unpacking
kwargs: CreateSpaceInputTypeDef = { # (1)
"name": ...,
"domainId": ...,
"dataAccessRoleArn": ...,
}
parent.create_space(**kwargs)
create_view#
Creates a new SQL view.
Type annotations and code completion for boto3.client("cloudwatchomni").create_view method.
boto3 documentation
# create_view method definition
def create_view(
self,
*,
name: str,
definition: str,
description: str = ...,
tags: Mapping[str, str] = ...,
clientToken: str = ...,
) -> CreateViewResponseTypeDef: # (1)
...
# create_view method usage example with argument unpacking
kwargs: CreateViewRequestTypeDef = { # (1)
"name": ...,
"definition": ...,
}
parent.create_view(**kwargs)
delete_access_grant#
Removes an existing AccessGrant, revoking the access it granted.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_access_grant method.
boto3 documentation
# delete_access_grant method definition
def delete_access_grant(
self,
*,
grantId: str,
) -> dict[str, Any]:
...
# delete_access_grant method usage example with argument unpacking
kwargs: DeleteAccessGrantInputTypeDef = { # (1)
"grantId": ...,
}
parent.delete_access_grant(**kwargs)
delete_access_profile#
Removes an access profile.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_access_profile method.
boto3 documentation
# delete_access_profile method definition
def delete_access_profile(
self,
*,
spaceId: str,
profileId: str,
) -> dict[str, Any]:
...
# delete_access_profile method usage example with argument unpacking
kwargs: DeleteAccessProfileInputTypeDef = { # (1)
"spaceId": ...,
"profileId": ...,
}
parent.delete_access_profile(**kwargs)
delete_alert#
Deletes an alert by its identifier.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_alert method.
boto3 documentation
# delete_alert method definition
def delete_alert(
self,
*,
spaceId: str,
alertId: str,
) -> dict[str, Any]:
...
# delete_alert method usage example with argument unpacking
kwargs: DeleteAlertInputTypeDef = { # (1)
"spaceId": ...,
"alertId": ...,
}
parent.delete_alert(**kwargs)
delete_domain#
Removes a domain and all of its resources.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_domain method.
boto3 documentation
# delete_domain method definition
def delete_domain(
self,
*,
domainId: str,
) -> dict[str, Any]:
...
# delete_domain method usage example with argument unpacking
kwargs: DeleteDomainInputTypeDef = { # (1)
"domainId": ...,
}
parent.delete_domain(**kwargs)
delete_domain_access_grant_for_organization#
Removes an existing organization access grant, revoking the access it granted.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_domain_access_grant_for_organization method.
boto3 documentation
# delete_domain_access_grant_for_organization method definition
def delete_domain_access_grant_for_organization(
self,
*,
grantId: str,
) -> dict[str, Any]:
...
# delete_domain_access_grant_for_organization method usage example with argument unpacking
kwargs: DeleteDomainAccessGrantForOrganizationInputTypeDef = { # (1)
"grantId": ...,
}
parent.delete_domain_access_grant_for_organization(**kwargs)
delete_domain_for_organization#
Removes an organization domain and all of its resources.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_domain_for_organization method.
boto3 documentation
# delete_domain_for_organization method definition
def delete_domain_for_organization(
self,
*,
domainId: str,
) -> dict[str, Any]:
...
# delete_domain_for_organization method usage example with argument unpacking
kwargs: DeleteDomainForOrganizationInputTypeDef = { # (1)
"domainId": ...,
}
parent.delete_domain_for_organization(**kwargs)
delete_integration#
Deletes an integration.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_integration method.
boto3 documentation
# delete_integration method definition
def delete_integration(
self,
*,
identifier: IntegrationIdentifierTypeDef, # (1)
) -> dict[str, Any]:
...
# delete_integration method usage example with argument unpacking
kwargs: DeleteIntegrationInputTypeDef = { # (1)
"identifier": ...,
}
parent.delete_integration(**kwargs)
delete_omni_dashboard#
Removes a dashboard from a space.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_omni_dashboard method.
boto3 documentation
# delete_omni_dashboard method definition
def delete_omni_dashboard(
self,
*,
spaceId: str,
dashboardId: str,
) -> dict[str, Any]:
...
# delete_omni_dashboard method usage example with argument unpacking
kwargs: DeleteOmniDashboardInputTypeDef = { # (1)
"spaceId": ...,
"dashboardId": ...,
}
parent.delete_omni_dashboard(**kwargs)
delete_space#
Removes a space and all of its resources.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_space method.
boto3 documentation
# delete_space method definition
def delete_space(
self,
*,
spaceId: str,
) -> dict[str, Any]:
...
# delete_space method usage example with argument unpacking
kwargs: DeleteSpaceInputTypeDef = { # (1)
"spaceId": ...,
}
parent.delete_space(**kwargs)
delete_view#
Deletes the specified view.
Type annotations and code completion for boto3.client("cloudwatchomni").delete_view method.
boto3 documentation
# delete_view method definition
def delete_view(
self,
*,
name: str,
) -> dict[str, Any]:
...
# delete_view method usage example with argument unpacking
kwargs: DeleteViewRequestTypeDef = { # (1)
"name": ...,
}
parent.delete_view(**kwargs)
get_access_grant#
Retrieves the full detail of a single AccessGrant by ID.
Type annotations and code completion for boto3.client("cloudwatchomni").get_access_grant method.
boto3 documentation
# get_access_grant method definition
def get_access_grant(
self,
*,
grantId: str,
) -> GetAccessGrantOutputTypeDef: # (1)
...
# get_access_grant method usage example with argument unpacking
kwargs: GetAccessGrantInputTypeDef = { # (1)
"grantId": ...,
}
parent.get_access_grant(**kwargs)
get_access_profile#
Retrieves an access profile by ID.
Type annotations and code completion for boto3.client("cloudwatchomni").get_access_profile method.
boto3 documentation
# get_access_profile method definition
def get_access_profile(
self,
*,
spaceId: str,
profileId: str,
) -> GetAccessProfileOutputTypeDef: # (1)
...
# get_access_profile method usage example with argument unpacking
kwargs: GetAccessProfileInputTypeDef = { # (1)
"spaceId": ...,
"profileId": ...,
}
parent.get_access_profile(**kwargs)
get_alert#
Retrieves a single alert by its identifier.
Type annotations and code completion for boto3.client("cloudwatchomni").get_alert method.
boto3 documentation
# get_alert method definition
def get_alert(
self,
*,
spaceId: str,
alertId: str,
) -> GetAlertOutputTypeDef: # (1)
...
# get_alert method usage example with argument unpacking
kwargs: GetAlertInputTypeDef = { # (1)
"spaceId": ...,
"alertId": ...,
}
parent.get_alert(**kwargs)
get_context_graph#
Queries the context graph with filtering, traversal, and pagination support.
Type annotations and code completion for boto3.client("cloudwatchomni").get_context_graph method.
boto3 documentation
# get_context_graph method definition
def get_context_graph(
self,
*,
startTime: TimestampTypeDef,
endTime: TimestampTypeDef,
nodeFilters: NodeFiltersTypeDef = ..., # (1)
edgeFilters: EdgeFiltersTypeDef = ..., # (2)
depth: int = ...,
maxResults: int = ...,
maxEdgesPerNode: int = ...,
includeMetadata: bool = ...,
nextToken: str = ...,
) -> GetContextGraphOutputTypeDef: # (3)
...
# get_context_graph method usage example with argument unpacking
kwargs: GetContextGraphInputTypeDef = { # (1)
"startTime": ...,
"endTime": ...,
}
parent.get_context_graph(**kwargs)
get_domain#
Retrieves the details of a domain by ID.
Type annotations and code completion for boto3.client("cloudwatchomni").get_domain method.
boto3 documentation
# get_domain method definition
def get_domain(
self,
*,
domainId: str,
) -> GetDomainOutputTypeDef: # (1)
...
# get_domain method usage example with argument unpacking
kwargs: GetDomainInputTypeDef = { # (1)
"domainId": ...,
}
parent.get_domain(**kwargs)
get_domain_access_grant_for_organization#
Retrieves the full detail of a single organization access grant by ID.
Type annotations and code completion for boto3.client("cloudwatchomni").get_domain_access_grant_for_organization method.
boto3 documentation
# get_domain_access_grant_for_organization method definition
def get_domain_access_grant_for_organization(
self,
*,
grantId: str,
) -> GetDomainAccessGrantForOrganizationOutputTypeDef: # (1)
...
# get_domain_access_grant_for_organization method usage example with argument unpacking
kwargs: GetDomainAccessGrantForOrganizationInputTypeDef = { # (1)
"grantId": ...,
}
parent.get_domain_access_grant_for_organization(**kwargs)
get_domain_for_organization#
Retrieves the details of an organization domain by ID.
Type annotations and code completion for boto3.client("cloudwatchomni").get_domain_for_organization method.
boto3 documentation
# get_domain_for_organization method definition
def get_domain_for_organization(
self,
*,
domainId: str,
) -> GetDomainForOrganizationOutputTypeDef: # (1)
...
# get_domain_for_organization method usage example with argument unpacking
kwargs: GetDomainForOrganizationInputTypeDef = { # (1)
"domainId": ...,
}
parent.get_domain_for_organization(**kwargs)
get_integration#
Returns the details of a single integration, identified by its identifier, Amazon Resource Name, or name.
Type annotations and code completion for boto3.client("cloudwatchomni").get_integration method.
boto3 documentation
# get_integration method definition
def get_integration(
self,
*,
identifier: IntegrationIdentifierTypeDef, # (1)
) -> GetIntegrationOutputTypeDef: # (2)
...
# get_integration method usage example with argument unpacking
kwargs: GetIntegrationInputTypeDef = { # (1)
"identifier": ...,
}
parent.get_integration(**kwargs)
get_intelligence_configuration#
Retrieves the intelligence configuration for the calling account.
Type annotations and code completion for boto3.client("cloudwatchomni").get_intelligence_configuration method.
boto3 documentation
# get_intelligence_configuration method definition
def get_intelligence_configuration(
self,
) -> GetIntelligenceConfigurationOutputTypeDef: # (1)
...
get_omni_dashboard#
Retrieves a dashboard by ID within a space.
Type annotations and code completion for boto3.client("cloudwatchomni").get_omni_dashboard method.
boto3 documentation
# get_omni_dashboard method definition
def get_omni_dashboard(
self,
*,
spaceId: str,
dashboardId: str,
) -> GetOmniDashboardOutputTypeDef: # (1)
...
# get_omni_dashboard method usage example with argument unpacking
kwargs: GetOmniDashboardInputTypeDef = { # (1)
"spaceId": ...,
"dashboardId": ...,
}
parent.get_omni_dashboard(**kwargs)
get_space#
Retrieves the details of a space by ID.
Type annotations and code completion for boto3.client("cloudwatchomni").get_space method.
boto3 documentation
# get_space method definition
def get_space(
self,
*,
spaceId: str,
) -> GetSpaceOutputTypeDef: # (1)
...
# get_space method usage example with argument unpacking
kwargs: GetSpaceInputTypeDef = { # (1)
"spaceId": ...,
}
parent.get_space(**kwargs)
get_space_credentials_for_organization#
Returns temporary credentials for a space in an organization member account.
Type annotations and code completion for boto3.client("cloudwatchomni").get_space_credentials_for_organization method.
boto3 documentation
# get_space_credentials_for_organization method definition
def get_space_credentials_for_organization(
self,
*,
context: SpaceCredentialRequestContextTypeDef, # (1)
credentialType: OrganizationCredentialTypeType, # (2)
) -> GetSpaceCredentialsForOrganizationOutputTypeDef: # (3)
...
- See SpaceCredentialRequestContextTypeDef
- See OrganizationCredentialTypeType
- See GetSpaceCredentialsForOrganizationOutputTypeDef
# get_space_credentials_for_organization method usage example with argument unpacking
kwargs: GetSpaceCredentialsForOrganizationInputTypeDef = { # (1)
"context": ...,
"credentialType": ...,
}
parent.get_space_credentials_for_organization(**kwargs)
get_telemetry_query_results#
Returns the results for the specified query.
Type annotations and code completion for boto3.client("cloudwatchomni").get_telemetry_query_results method.
boto3 documentation
# get_telemetry_query_results method definition
def get_telemetry_query_results(
self,
*,
queryId: str,
nextToken: str = ...,
maxResults: int = ...,
) -> GetTelemetryQueryResultsResponseTypeDef: # (1)
...
# get_telemetry_query_results method usage example with argument unpacking
kwargs: GetTelemetryQueryResultsRequestTypeDef = { # (1)
"queryId": ...,
}
parent.get_telemetry_query_results(**kwargs)
get_view#
Returns the definition and metadata of the specified view.
Type annotations and code completion for boto3.client("cloudwatchomni").get_view method.
boto3 documentation
# get_view method definition
def get_view(
self,
*,
name: str,
) -> GetViewResponseTypeDef: # (1)
...
# get_view method usage example with argument unpacking
kwargs: GetViewRequestTypeDef = { # (1)
"name": ...,
}
parent.get_view(**kwargs)
list_access_grants#
Returns AccessGrants, with optional filtering by domain, space, principal, or permission.
Type annotations and code completion for boto3.client("cloudwatchomni").list_access_grants method.
boto3 documentation
# list_access_grants method definition
def list_access_grants(
self,
*,
domainId: str = ...,
spaceId: str = ...,
principalId: str = ...,
principalType: AccessGrantPrincipalTypeType = ..., # (1)
permission: AccessGrantPermissionType = ..., # (2)
nextToken: str = ...,
maxResults: int = ...,
) -> ListAccessGrantsOutputTypeDef: # (3)
...
# list_access_grants method usage example with argument unpacking
kwargs: ListAccessGrantsInputTypeDef = { # (1)
"domainId": ...,
}
parent.list_access_grants(**kwargs)
list_access_profiles#
Returns the access profiles in a space.
Type annotations and code completion for boto3.client("cloudwatchomni").list_access_profiles method.
boto3 documentation
# list_access_profiles method definition
def list_access_profiles(
self,
*,
spaceId: str,
nextToken: str = ...,
maxResults: int = ...,
) -> ListAccessProfilesOutputTypeDef: # (1)
...
# list_access_profiles method usage example with argument unpacking
kwargs: ListAccessProfilesInputTypeDef = { # (1)
"spaceId": ...,
}
parent.list_access_profiles(**kwargs)
list_alerts#
Lists alerts within a space, optionally filtered by exact name(s), a single name prefix, or exact alertId(s), with pagination.
Type annotations and code completion for boto3.client("cloudwatchomni").list_alerts method.
boto3 documentation
# list_alerts method definition
def list_alerts(
self,
*,
spaceId: str,
filterCriteria: AlertFilterCriteriaTypeDef = ..., # (1)
sortBy: AlertSortFieldType = ..., # (2)
sortOrder: AlertSortOrderType = ..., # (3)
nextToken: str = ...,
maxResults: int = ...,
) -> ListAlertsOutputTypeDef: # (4)
...
- See AlertFilterCriteriaTypeDef
- See AlertSortFieldType
- See AlertSortOrderType
- See ListAlertsOutputTypeDef
# list_alerts method usage example with argument unpacking
kwargs: ListAlertsInputTypeDef = { # (1)
"spaceId": ...,
}
parent.list_alerts(**kwargs)
list_domain_access_grants_for_organization#
Returns organization-level domain access grants, with optional filtering by domain, principal, or permission.
Type annotations and code completion for boto3.client("cloudwatchomni").list_domain_access_grants_for_organization method.
boto3 documentation
# list_domain_access_grants_for_organization method definition
def list_domain_access_grants_for_organization(
self,
*,
domainId: str = ...,
principalId: str = ...,
principalType: OrganizationGrantPrincipalTypeType = ..., # (1)
permission: OrganizationGrantPermissionType = ..., # (2)
nextToken: str = ...,
maxResults: int = ...,
) -> ListDomainAccessGrantsForOrganizationOutputTypeDef: # (3)
...
- See OrganizationGrantPrincipalTypeType
- See OrganizationGrantPermissionType
- See ListDomainAccessGrantsForOrganizationOutputTypeDef
# list_domain_access_grants_for_organization method usage example with argument unpacking
kwargs: ListDomainAccessGrantsForOrganizationInputTypeDef = { # (1)
"domainId": ...,
}
parent.list_domain_access_grants_for_organization(**kwargs)
list_domains#
Returns the caller's domains: the account-scoped domain and the organization-scoped domain, if either exists.
Type annotations and code completion for boto3.client("cloudwatchomni").list_domains method.
boto3 documentation
# list_domains method definition
def list_domains(
self,
*,
nextToken: str = ...,
maxResults: int = ...,
) -> ListDomainsOutputTypeDef: # (1)
...
# list_domains method usage example with argument unpacking
kwargs: ListDomainsInputTypeDef = { # (1)
"nextToken": ...,
}
parent.list_domains(**kwargs)
list_integrations#
Lists the integrations in the account, optionally filtered by type, status, or name.
Type annotations and code completion for boto3.client("cloudwatchomni").list_integrations method.
boto3 documentation
# list_integrations method definition
def list_integrations(
self,
*,
integrationType: IntegrationTypeType = ..., # (1)
status: IntegrationStatusType = ..., # (2)
name: str = ...,
nextToken: str = ...,
maxResults: int = ...,
) -> ListIntegrationsOutputTypeDef: # (3)
...
# list_integrations method usage example with argument unpacking
kwargs: ListIntegrationsInputTypeDef = { # (1)
"integrationType": ...,
}
parent.list_integrations(**kwargs)
list_omni_dashboards#
Returns the dashboards in a space, optionally filtered by name prefix.
Type annotations and code completion for boto3.client("cloudwatchomni").list_omni_dashboards method.
boto3 documentation
# list_omni_dashboards method definition
def list_omni_dashboards(
self,
*,
spaceId: str,
namePrefix: str = ...,
nextToken: str = ...,
maxResults: int = ...,
) -> ListOmniDashboardsOutputTypeDef: # (1)
...
# list_omni_dashboards method usage example with argument unpacking
kwargs: ListOmniDashboardsInputTypeDef = { # (1)
"spaceId": ...,
}
parent.list_omni_dashboards(**kwargs)
list_spaces#
Returns the spaces in the account, optionally filtered by domain.
Type annotations and code completion for boto3.client("cloudwatchomni").list_spaces method.
boto3 documentation
# list_spaces method definition
def list_spaces(
self,
*,
domainId: str = ...,
nextToken: str = ...,
maxResults: int = ...,
) -> ListSpacesOutputTypeDef: # (1)
...
# list_spaces method usage example with argument unpacking
kwargs: ListSpacesInputTypeDef = { # (1)
"domainId": ...,
}
parent.list_spaces(**kwargs)
list_spaces_for_organization#
Returns the spaces across all member accounts in the organization.
Type annotations and code completion for boto3.client("cloudwatchomni").list_spaces_for_organization method.
boto3 documentation
# list_spaces_for_organization method definition
def list_spaces_for_organization(
self,
*,
nextToken: str = ...,
maxResults: int = ...,
) -> ListSpacesForOrganizationOutputTypeDef: # (1)
...
# list_spaces_for_organization method usage example with argument unpacking
kwargs: ListSpacesForOrganizationInputTypeDef = { # (1)
"nextToken": ...,
}
parent.list_spaces_for_organization(**kwargs)
list_telemetry_fields#
Lists fields available for telemetry queries.
Type annotations and code completion for boto3.client("cloudwatchomni").list_telemetry_fields method.
boto3 documentation
# list_telemetry_fields method definition
def list_telemetry_fields(
self,
*,
dataSetName: str,
telemetryType: TelemetryTypeType = ..., # (1)
startTime: TimestampTypeDef = ...,
endTime: TimestampTypeDef = ...,
nextToken: str = ...,
) -> ListTelemetryFieldsResponseTypeDef: # (2)
...
# list_telemetry_fields method usage example with argument unpacking
kwargs: ListTelemetryFieldsRequestTypeDef = { # (1)
"dataSetName": ...,
}
parent.list_telemetry_fields(**kwargs)
list_telemetry_query_sessions#
Lists telemetry query sessions.
Type annotations and code completion for boto3.client("cloudwatchomni").list_telemetry_query_sessions method.
boto3 documentation
# list_telemetry_query_sessions method definition
def list_telemetry_query_sessions(
self,
*,
nextToken: str = ...,
maxResults: int = ...,
) -> ListTelemetryQuerySessionsResponseTypeDef: # (1)
...
# list_telemetry_query_sessions method usage example with argument unpacking
kwargs: ListTelemetryQuerySessionsRequestTypeDef = { # (1)
"nextToken": ...,
}
parent.list_telemetry_query_sessions(**kwargs)
list_views#
Lists the views in the caller's account and region.
Type annotations and code completion for boto3.client("cloudwatchomni").list_views method.
boto3 documentation
# list_views method definition
def list_views(
self,
*,
type: ViewTypeType = ..., # (1)
maxResults: int = ...,
nextToken: str = ...,
) -> ListViewsResponseTypeDef: # (2)
...
- See ViewTypeType
- See ListViewsResponseTypeDef
# list_views method usage example with argument unpacking
kwargs: ListViewsRequestTypeDef = { # (1)
"type": ...,
}
parent.list_views(**kwargs)
put_intelligence_configuration#
Creates or updates the intelligence configuration for the calling account.
Type annotations and code completion for boto3.client("cloudwatchomni").put_intelligence_configuration method.
boto3 documentation
# put_intelligence_configuration method definition
def put_intelligence_configuration(
self,
*,
kmsKeyArn: str = ...,
removeKmsKey: bool = ...,
clientToken: str = ...,
) -> PutIntelligenceConfigurationOutputTypeDef: # (1)
...
# put_intelligence_configuration method usage example with argument unpacking
kwargs: PutIntelligenceConfigurationInputTypeDef = { # (1)
"kmsKeyArn": ...,
}
parent.put_intelligence_configuration(**kwargs)
search_principals#
Searches Identity Center for users and groups in a domain.
Type annotations and code completion for boto3.client("cloudwatchomni").search_principals method.
boto3 documentation
# search_principals method definition
def search_principals(
self,
*,
domainId: str,
searchQuery: str,
maxResults: int = ...,
nextToken: str = ...,
) -> SearchPrincipalsOutputTypeDef: # (1)
...
# search_principals method usage example with argument unpacking
kwargs: SearchPrincipalsInputTypeDef = { # (1)
"domainId": ...,
"searchQuery": ...,
}
parent.search_principals(**kwargs)
start_telemetry_query#
Starts a telemetry query within a session.
Type annotations and code completion for boto3.client("cloudwatchomni").start_telemetry_query method.
boto3 documentation
# start_telemetry_query method definition
def start_telemetry_query(
self,
*,
queryString: str,
sessionId: str,
) -> StartTelemetryQueryResponseTypeDef: # (1)
...
# start_telemetry_query method usage example with argument unpacking
kwargs: StartTelemetryQueryRequestTypeDef = { # (1)
"queryString": ...,
"sessionId": ...,
}
parent.start_telemetry_query(**kwargs)
start_telemetry_query_session#
Starts a new telemetry query session.
Type annotations and code completion for boto3.client("cloudwatchomni").start_telemetry_query_session method.
boto3 documentation
# start_telemetry_query_session method definition
def start_telemetry_query_session(
self,
*,
sessionName: str = ...,
) -> StartTelemetryQuerySessionResponseTypeDef: # (1)
...
# start_telemetry_query_session method usage example with argument unpacking
kwargs: StartTelemetryQuerySessionRequestTypeDef = { # (1)
"sessionName": ...,
}
parent.start_telemetry_query_session(**kwargs)
stop_telemetry_query#
Stops a running telemetry query.
Type annotations and code completion for boto3.client("cloudwatchomni").stop_telemetry_query method.
boto3 documentation
# stop_telemetry_query method definition
def stop_telemetry_query(
self,
*,
queryId: str,
) -> dict[str, Any]:
...
# stop_telemetry_query method usage example with argument unpacking
kwargs: StopTelemetryQueryRequestTypeDef = { # (1)
"queryId": ...,
}
parent.stop_telemetry_query(**kwargs)
stop_telemetry_query_session#
Stops a telemetry query session.
Type annotations and code completion for boto3.client("cloudwatchomni").stop_telemetry_query_session method.
boto3 documentation
# stop_telemetry_query_session method definition
def stop_telemetry_query_session(
self,
*,
sessionId: str,
) -> dict[str, Any]:
...
# stop_telemetry_query_session method usage example with argument unpacking
kwargs: StopTelemetryQuerySessionRequestTypeDef = { # (1)
"sessionId": ...,
}
parent.stop_telemetry_query_session(**kwargs)
update_access_profile#
Updates the name or description of an access profile.
Type annotations and code completion for boto3.client("cloudwatchomni").update_access_profile method.
boto3 documentation
# update_access_profile method definition
def update_access_profile(
self,
*,
spaceId: str,
profileId: str,
name: str = ...,
description: str = ...,
) -> UpdateAccessProfileOutputTypeDef: # (1)
...
# update_access_profile method usage example with argument unpacking
kwargs: UpdateAccessProfileInputTypeDef = { # (1)
"spaceId": ...,
"profileId": ...,
}
parent.update_access_profile(**kwargs)
update_alert#
Updates an existing alert.
Type annotations and code completion for boto3.client("cloudwatchomni").update_alert method.
boto3 documentation
# update_alert method definition
def update_alert(
self,
*,
spaceId: str,
alertId: str,
profileId: str = ...,
name: str = ...,
description: str = ...,
rule: RuleTypeDef = ..., # (1)
notificationsEnabled: bool = ...,
notificationRules: Sequence[NotificationRuleUnionTypeDef] = ..., # (2)
) -> dict[str, Any]:
...
- See RuleTypeDef
- See
Sequence[NotificationRuleUnionTypeDef]
# update_alert method usage example with argument unpacking
kwargs: UpdateAlertInputTypeDef = { # (1)
"spaceId": ...,
"alertId": ...,
}
parent.update_alert(**kwargs)
update_domain#
Updates a domain's name or identity provider configuration.
Type annotations and code completion for boto3.client("cloudwatchomni").update_domain method.
boto3 documentation
# update_domain method definition
def update_domain(
self,
*,
domainId: str,
name: str = ...,
identityProviders: Sequence[IdentityProviderType] = ..., # (1)
identityProviderConfiguration: IdentityProviderConfigurationTypeDef = ..., # (2)
) -> UpdateDomainOutputTypeDef: # (3)
...
- See
Sequence[IdentityProviderType] - See IdentityProviderConfigurationTypeDef
- See UpdateDomainOutputTypeDef
# update_domain method usage example with argument unpacking
kwargs: UpdateDomainInputTypeDef = { # (1)
"domainId": ...,
}
parent.update_domain(**kwargs)
update_domain_for_organization#
Updates an organization domain's name or identity provider configuration.
Type annotations and code completion for boto3.client("cloudwatchomni").update_domain_for_organization method.
boto3 documentation
# update_domain_for_organization method definition
def update_domain_for_organization(
self,
*,
domainId: str,
name: str = ...,
identityProviders: Sequence[IdentityProviderType] = ..., # (1)
identityProviderConfiguration: IdentityProviderConfigurationTypeDef = ..., # (2)
) -> UpdateDomainForOrganizationOutputTypeDef: # (3)
...
- See
Sequence[IdentityProviderType] - See IdentityProviderConfigurationTypeDef
- See UpdateDomainForOrganizationOutputTypeDef
# update_domain_for_organization method usage example with argument unpacking
kwargs: UpdateDomainForOrganizationInputTypeDef = { # (1)
"domainId": ...,
}
parent.update_domain_for_organization(**kwargs)
update_integration#
Updates an existing integration, identified by its id, ARN, or name.
Type annotations and code completion for boto3.client("cloudwatchomni").update_integration method.
boto3 documentation
# update_integration method definition
def update_integration(
self,
*,
identifier: IntegrationIdentifierTypeDef, # (1)
credential: IntegrationCredentialTypeDef = ..., # (2)
integrationAttributes: Mapping[str, str] = ...,
roleArn: str = ...,
) -> UpdateIntegrationOutputTypeDef: # (3)
...
- See IntegrationIdentifierTypeDef
- See IntegrationCredentialTypeDef
- See UpdateIntegrationOutputTypeDef
# update_integration method usage example with argument unpacking
kwargs: UpdateIntegrationInputTypeDef = { # (1)
"identifier": ...,
}
parent.update_integration(**kwargs)
update_omni_dashboard#
Updates an existing dashboard within a space.
Type annotations and code completion for boto3.client("cloudwatchomni").update_omni_dashboard method.
boto3 documentation
# update_omni_dashboard method definition
def update_omni_dashboard(
self,
*,
spaceId: str,
dashboardId: str,
body: str = ...,
name: str = ...,
description: str = ...,
) -> UpdateOmniDashboardOutputTypeDef: # (1)
...
# update_omni_dashboard method usage example with argument unpacking
kwargs: UpdateOmniDashboardInputTypeDef = { # (1)
"spaceId": ...,
"dashboardId": ...,
}
parent.update_omni_dashboard(**kwargs)
update_space#
Updates a space.
Type annotations and code completion for boto3.client("cloudwatchomni").update_space method.
boto3 documentation
# update_space method definition
def update_space(
self,
*,
spaceId: str,
name: str = ...,
encryptionConfiguration: EncryptionConfigurationTypeDef = ..., # (1)
) -> UpdateSpaceOutputTypeDef: # (2)
...
# update_space method usage example with argument unpacking
kwargs: UpdateSpaceInputTypeDef = { # (1)
"spaceId": ...,
}
parent.update_space(**kwargs)
update_view#
Updates an existing view's definition and/or description.
Type annotations and code completion for boto3.client("cloudwatchomni").update_view method.
boto3 documentation
# update_view method definition
def update_view(
self,
*,
name: str,
definition: str = ...,
description: str = ...,
) -> UpdateViewResponseTypeDef: # (1)
...
# update_view method usage example with argument unpacking
kwargs: UpdateViewRequestTypeDef = { # (1)
"name": ...,
}
parent.update_view(**kwargs)
get_paginator#
Type annotations and code completion for boto3.client("cloudwatchomni").get_paginator method with overloads.
client.get_paginator("get_context_graph")-> GetContextGraphPaginatorclient.get_paginator("get_telemetry_query_results")-> GetTelemetryQueryResultsPaginatorclient.get_paginator("list_access_grants")-> ListAccessGrantsPaginatorclient.get_paginator("list_access_profiles")-> ListAccessProfilesPaginatorclient.get_paginator("list_alerts")-> ListAlertsPaginatorclient.get_paginator("list_domain_access_grants_for_organization")-> ListDomainAccessGrantsForOrganizationPaginatorclient.get_paginator("list_domains")-> ListDomainsPaginatorclient.get_paginator("list_integrations")-> ListIntegrationsPaginatorclient.get_paginator("list_omni_dashboards")-> ListOmniDashboardsPaginatorclient.get_paginator("list_spaces_for_organization")-> ListSpacesForOrganizationPaginatorclient.get_paginator("list_spaces")-> ListSpacesPaginatorclient.get_paginator("list_telemetry_fields")-> ListTelemetryFieldsPaginatorclient.get_paginator("list_telemetry_query_sessions")-> ListTelemetryQuerySessionsPaginatorclient.get_paginator("list_views")-> ListViewsPaginatorclient.get_paginator("search_principals")-> SearchPrincipalsPaginator