Skip to content

Connecthealth  >  Operations  >  get_domain

get_domain

Operation

get_domain async

get_domain(input: GetDomainInput, plugins: list[Plugin] | None = None) -> GetDomainOutput

Retrieves information about a Domain.

Parameters:

Name Type Description Default
input GetDomainInput

An instance of GetDomainInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
GetDomainOutput

An instance of GetDomainOutput.

Input

GetDomainInput dataclass

Dataclass for GetDomainInput structure.

Attributes

domain_id class-attribute instance-attribute
domain_id: str | None = None

The id of the Domain to get

Output

GetDomainOutput dataclass

Dataclass for GetDomainOutput structure.

Attributes

arn instance-attribute
arn: str
created_at instance-attribute
created_at: datetime
domain_id instance-attribute
domain_id: str
encryption_context class-attribute instance-attribute
encryption_context: EncryptionContext | None = None
kms_key_arn class-attribute instance-attribute
kms_key_arn: str | None = None
name instance-attribute
name: str
status instance-attribute
status: DomainStatus
tags class-attribute instance-attribute
tags: dict[str, str] | None = None

Tags associated with the Domain

web_app_configuration class-attribute instance-attribute
web_app_configuration: WebAppConfiguration | None = None
web_app_url class-attribute instance-attribute
web_app_url: str | None = None