Skip to content

GroundStationClient#

Index > GroundStation > GroundStationClient

Auto-generated documentation for GroundStation type annotations stubs module mypy-boto3-groundstation.

GroundStationClient#

Type annotations and code completion for boto3.client("groundstation"). boto3 documentation

# GroundStationClient usage example

from boto3.session import Session
from mypy_boto3_groundstation.client import GroundStationClient

def get_groundstation_client() -> GroundStationClient:
    return Session().client("groundstation")

Exceptions#

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("groundstation").exceptions structure.

# Exceptions.exceptions usage example

client = boto3.client("groundstation")

try:
    do_something(client)
except (
    client.exceptions.ClientError,
    client.exceptions.DependencyException,
    client.exceptions.InvalidParameterException,
    client.exceptions.ResourceLimitExceededException,
    client.exceptions.ResourceNotFoundException,
) as e:
    print(e)
# Exceptions.exceptions type checking example

from mypy_boto3_groundstation.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods#

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("groundstation").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

cancel_contact#

Cancels a contact with a specified contact ID.

Type annotations and code completion for boto3.client("groundstation").cancel_contact method. boto3 documentation

# cancel_contact method definition

def cancel_contact(
    self,
    *,
    contactId: str,
) -> ContactIdResponseTypeDef:  # (1)
    ...
  1. See ContactIdResponseTypeDef
# cancel_contact method usage example with argument unpacking

kwargs: CancelContactRequestRequestTypeDef = {  # (1)
    "contactId": ...,
}

parent.cancel_contact(**kwargs)
  1. See CancelContactRequestRequestTypeDef

close#

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("groundstation").close method. boto3 documentation

# close method definition

def close(
    self,
) -> None:
    ...

create_config#

Creates a Config with the specified configData parameters.

Type annotations and code completion for boto3.client("groundstation").create_config method. boto3 documentation

# create_config method definition

def create_config(
    self,
    *,
    configData: ConfigTypeDataTypeDef,  # (1)
    name: str,
    tags: Mapping[str, str] = ...,
) -> ConfigIdResponseTypeDef:  # (2)
    ...
  1. See ConfigTypeDataTypeDef
  2. See ConfigIdResponseTypeDef
# create_config method usage example with argument unpacking

kwargs: CreateConfigRequestRequestTypeDef = {  # (1)
    "configData": ...,
    "name": ...,
}

parent.create_config(**kwargs)
  1. See CreateConfigRequestRequestTypeDef

create_dataflow_endpoint_group#

Creates a DataflowEndpoint group containing the specified list of DataflowEndpoint objects.

Type annotations and code completion for boto3.client("groundstation").create_dataflow_endpoint_group method. boto3 documentation

# create_dataflow_endpoint_group method definition

def create_dataflow_endpoint_group(
    self,
    *,
    endpointDetails: Sequence[EndpointDetailsTypeDef],  # (1)
    contactPostPassDurationSeconds: int = ...,
    contactPrePassDurationSeconds: int = ...,
    tags: Mapping[str, str] = ...,
) -> DataflowEndpointGroupIdResponseTypeDef:  # (2)
    ...
  1. See EndpointDetailsTypeDef
  2. See DataflowEndpointGroupIdResponseTypeDef
# create_dataflow_endpoint_group method usage example with argument unpacking

kwargs: CreateDataflowEndpointGroupRequestRequestTypeDef = {  # (1)
    "endpointDetails": ...,
}

parent.create_dataflow_endpoint_group(**kwargs)
  1. See CreateDataflowEndpointGroupRequestRequestTypeDef

create_ephemeris#

Creates an Ephemeris with the specified EphemerisData.

Type annotations and code completion for boto3.client("groundstation").create_ephemeris method. boto3 documentation

# create_ephemeris method definition

def create_ephemeris(
    self,
    *,
    name: str,
    satelliteId: str,
    enabled: bool = ...,
    ephemeris: EphemerisDataTypeDef = ...,  # (1)
    expirationTime: Union[datetime, str] = ...,
    kmsKeyArn: str = ...,
    priority: int = ...,
    tags: Mapping[str, str] = ...,
) -> EphemerisIdResponseTypeDef:  # (2)
    ...
  1. See EphemerisDataTypeDef
  2. See EphemerisIdResponseTypeDef
# create_ephemeris method usage example with argument unpacking

kwargs: CreateEphemerisRequestRequestTypeDef = {  # (1)
    "name": ...,
    "satelliteId": ...,
}

parent.create_ephemeris(**kwargs)
  1. See CreateEphemerisRequestRequestTypeDef

create_mission_profile#

Creates a mission profile.

Type annotations and code completion for boto3.client("groundstation").create_mission_profile method. boto3 documentation

# create_mission_profile method definition

def create_mission_profile(
    self,
    *,
    dataflowEdges: Sequence[Sequence[str]],
    minimumViableContactDurationSeconds: int,
    name: str,
    trackingConfigArn: str,
    contactPostPassDurationSeconds: int = ...,
    contactPrePassDurationSeconds: int = ...,
    streamsKmsKey: KmsKeyTypeDef = ...,  # (1)
    streamsKmsRole: str = ...,
    tags: Mapping[str, str] = ...,
) -> MissionProfileIdResponseTypeDef:  # (2)
    ...
  1. See KmsKeyTypeDef
  2. See MissionProfileIdResponseTypeDef
# create_mission_profile method usage example with argument unpacking

kwargs: CreateMissionProfileRequestRequestTypeDef = {  # (1)
    "dataflowEdges": ...,
    "minimumViableContactDurationSeconds": ...,
    "name": ...,
    "trackingConfigArn": ...,
}

parent.create_mission_profile(**kwargs)
  1. See CreateMissionProfileRequestRequestTypeDef

delete_config#

Deletes a Config.

Type annotations and code completion for boto3.client("groundstation").delete_config method. boto3 documentation

# delete_config method definition

def delete_config(
    self,
    *,
    configId: str,
    configType: ConfigCapabilityTypeType,  # (1)
) -> ConfigIdResponseTypeDef:  # (2)
    ...
  1. See ConfigCapabilityTypeType
  2. See ConfigIdResponseTypeDef
# delete_config method usage example with argument unpacking

kwargs: DeleteConfigRequestRequestTypeDef = {  # (1)
    "configId": ...,
    "configType": ...,
}

parent.delete_config(**kwargs)
  1. See DeleteConfigRequestRequestTypeDef

delete_dataflow_endpoint_group#

Deletes a dataflow endpoint group.

Type annotations and code completion for boto3.client("groundstation").delete_dataflow_endpoint_group method. boto3 documentation

# delete_dataflow_endpoint_group method definition

def delete_dataflow_endpoint_group(
    self,
    *,
    dataflowEndpointGroupId: str,
) -> DataflowEndpointGroupIdResponseTypeDef:  # (1)
    ...
  1. See DataflowEndpointGroupIdResponseTypeDef
# delete_dataflow_endpoint_group method usage example with argument unpacking

kwargs: DeleteDataflowEndpointGroupRequestRequestTypeDef = {  # (1)
    "dataflowEndpointGroupId": ...,
}

parent.delete_dataflow_endpoint_group(**kwargs)
  1. See DeleteDataflowEndpointGroupRequestRequestTypeDef

delete_ephemeris#

Deletes an ephemeris See also: AWS API Documentation.

Type annotations and code completion for boto3.client("groundstation").delete_ephemeris method. boto3 documentation

# delete_ephemeris method definition

def delete_ephemeris(
    self,
    *,
    ephemerisId: str,
) -> EphemerisIdResponseTypeDef:  # (1)
    ...
  1. See EphemerisIdResponseTypeDef
# delete_ephemeris method usage example with argument unpacking

kwargs: DeleteEphemerisRequestRequestTypeDef = {  # (1)
    "ephemerisId": ...,
}

parent.delete_ephemeris(**kwargs)
  1. See DeleteEphemerisRequestRequestTypeDef

delete_mission_profile#

Deletes a mission profile.

Type annotations and code completion for boto3.client("groundstation").delete_mission_profile method. boto3 documentation

# delete_mission_profile method definition

def delete_mission_profile(
    self,
    *,
    missionProfileId: str,
) -> MissionProfileIdResponseTypeDef:  # (1)
    ...
  1. See MissionProfileIdResponseTypeDef
# delete_mission_profile method usage example with argument unpacking

kwargs: DeleteMissionProfileRequestRequestTypeDef = {  # (1)
    "missionProfileId": ...,
}

parent.delete_mission_profile(**kwargs)
  1. See DeleteMissionProfileRequestRequestTypeDef

describe_contact#

Describes an existing contact.

Type annotations and code completion for boto3.client("groundstation").describe_contact method. boto3 documentation

# describe_contact method definition

def describe_contact(
    self,
    *,
    contactId: str,
) -> DescribeContactResponseTypeDef:  # (1)
    ...
  1. See DescribeContactResponseTypeDef
# describe_contact method usage example with argument unpacking

kwargs: DescribeContactRequestRequestTypeDef = {  # (1)
    "contactId": ...,
}

parent.describe_contact(**kwargs)
  1. See DescribeContactRequestRequestTypeDef

describe_ephemeris#

Describes an existing ephemeris.

Type annotations and code completion for boto3.client("groundstation").describe_ephemeris method. boto3 documentation

# describe_ephemeris method definition

def describe_ephemeris(
    self,
    *,
    ephemerisId: str,
) -> DescribeEphemerisResponseTypeDef:  # (1)
    ...
  1. See DescribeEphemerisResponseTypeDef
# describe_ephemeris method usage example with argument unpacking

kwargs: DescribeEphemerisRequestRequestTypeDef = {  # (1)
    "ephemerisId": ...,
}

parent.describe_ephemeris(**kwargs)
  1. See DescribeEphemerisRequestRequestTypeDef

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("groundstation").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_agent_configuration#

.

Type annotations and code completion for boto3.client("groundstation").get_agent_configuration method. boto3 documentation

# get_agent_configuration method definition

def get_agent_configuration(
    self,
    *,
    agentId: str,
) -> GetAgentConfigurationResponseTypeDef:  # (1)
    ...
  1. See GetAgentConfigurationResponseTypeDef
# get_agent_configuration method usage example with argument unpacking

kwargs: GetAgentConfigurationRequestRequestTypeDef = {  # (1)
    "agentId": ...,
}

parent.get_agent_configuration(**kwargs)
  1. See GetAgentConfigurationRequestRequestTypeDef

get_config#

Returns Config information.

Type annotations and code completion for boto3.client("groundstation").get_config method. boto3 documentation

# get_config method definition

def get_config(
    self,
    *,
    configId: str,
    configType: ConfigCapabilityTypeType,  # (1)
) -> GetConfigResponseTypeDef:  # (2)
    ...
  1. See ConfigCapabilityTypeType
  2. See GetConfigResponseTypeDef
# get_config method usage example with argument unpacking

kwargs: GetConfigRequestRequestTypeDef = {  # (1)
    "configId": ...,
    "configType": ...,
}

parent.get_config(**kwargs)
  1. See GetConfigRequestRequestTypeDef

get_dataflow_endpoint_group#

Returns the dataflow endpoint group.

Type annotations and code completion for boto3.client("groundstation").get_dataflow_endpoint_group method. boto3 documentation

# get_dataflow_endpoint_group method definition

def get_dataflow_endpoint_group(
    self,
    *,
    dataflowEndpointGroupId: str,
) -> GetDataflowEndpointGroupResponseTypeDef:  # (1)
    ...
  1. See GetDataflowEndpointGroupResponseTypeDef
# get_dataflow_endpoint_group method usage example with argument unpacking

kwargs: GetDataflowEndpointGroupRequestRequestTypeDef = {  # (1)
    "dataflowEndpointGroupId": ...,
}

parent.get_dataflow_endpoint_group(**kwargs)
  1. See GetDataflowEndpointGroupRequestRequestTypeDef

get_minute_usage#

Returns the number of reserved minutes used by account.

Type annotations and code completion for boto3.client("groundstation").get_minute_usage method. boto3 documentation

# get_minute_usage method definition

def get_minute_usage(
    self,
    *,
    month: int,
    year: int,
) -> GetMinuteUsageResponseTypeDef:  # (1)
    ...
  1. See GetMinuteUsageResponseTypeDef
# get_minute_usage method usage example with argument unpacking

kwargs: GetMinuteUsageRequestRequestTypeDef = {  # (1)
    "month": ...,
    "year": ...,
}

parent.get_minute_usage(**kwargs)
  1. See GetMinuteUsageRequestRequestTypeDef

get_mission_profile#

Returns a mission profile.

Type annotations and code completion for boto3.client("groundstation").get_mission_profile method. boto3 documentation

# get_mission_profile method definition

def get_mission_profile(
    self,
    *,
    missionProfileId: str,
) -> GetMissionProfileResponseTypeDef:  # (1)
    ...
  1. See GetMissionProfileResponseTypeDef
# get_mission_profile method usage example with argument unpacking

kwargs: GetMissionProfileRequestRequestTypeDef = {  # (1)
    "missionProfileId": ...,
}

parent.get_mission_profile(**kwargs)
  1. See GetMissionProfileRequestRequestTypeDef

get_satellite#

Returns a satellite.

Type annotations and code completion for boto3.client("groundstation").get_satellite method. boto3 documentation

# get_satellite method definition

def get_satellite(
    self,
    *,
    satelliteId: str,
) -> GetSatelliteResponseTypeDef:  # (1)
    ...
  1. See GetSatelliteResponseTypeDef
# get_satellite method usage example with argument unpacking

kwargs: GetSatelliteRequestRequestTypeDef = {  # (1)
    "satelliteId": ...,
}

parent.get_satellite(**kwargs)
  1. See GetSatelliteRequestRequestTypeDef

list_configs#

Returns a list of Config objects.

Type annotations and code completion for boto3.client("groundstation").list_configs method. boto3 documentation

# list_configs method definition

def list_configs(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListConfigsResponseTypeDef:  # (1)
    ...
  1. See ListConfigsResponseTypeDef
# list_configs method usage example with argument unpacking

kwargs: ListConfigsRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_configs(**kwargs)
  1. See ListConfigsRequestRequestTypeDef

list_contacts#

Returns a list of contacts.

Type annotations and code completion for boto3.client("groundstation").list_contacts method. boto3 documentation

# list_contacts method definition

def list_contacts(
    self,
    *,
    endTime: Union[datetime, str],
    startTime: Union[datetime, str],
    statusList: Sequence[ContactStatusType],  # (1)
    groundStation: str = ...,
    maxResults: int = ...,
    missionProfileArn: str = ...,
    nextToken: str = ...,
    satelliteArn: str = ...,
) -> ListContactsResponseTypeDef:  # (2)
    ...
  1. See ContactStatusType
  2. See ListContactsResponseTypeDef
# list_contacts method usage example with argument unpacking

kwargs: ListContactsRequestRequestTypeDef = {  # (1)
    "endTime": ...,
    "startTime": ...,
    "statusList": ...,
}

parent.list_contacts(**kwargs)
  1. See ListContactsRequestRequestTypeDef

list_dataflow_endpoint_groups#

Returns a list of DataflowEndpoint groups.

Type annotations and code completion for boto3.client("groundstation").list_dataflow_endpoint_groups method. boto3 documentation

# list_dataflow_endpoint_groups method definition

def list_dataflow_endpoint_groups(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListDataflowEndpointGroupsResponseTypeDef:  # (1)
    ...
  1. See ListDataflowEndpointGroupsResponseTypeDef
# list_dataflow_endpoint_groups method usage example with argument unpacking

kwargs: ListDataflowEndpointGroupsRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_dataflow_endpoint_groups(**kwargs)
  1. See ListDataflowEndpointGroupsRequestRequestTypeDef

list_ephemerides#

List existing ephemerides.

Type annotations and code completion for boto3.client("groundstation").list_ephemerides method. boto3 documentation

# list_ephemerides method definition

def list_ephemerides(
    self,
    *,
    endTime: Union[datetime, str],
    satelliteId: str,
    startTime: Union[datetime, str],
    maxResults: int = ...,
    nextToken: str = ...,
    statusList: Sequence[EphemerisStatusType] = ...,  # (1)
) -> ListEphemeridesResponseTypeDef:  # (2)
    ...
  1. See EphemerisStatusType
  2. See ListEphemeridesResponseTypeDef
# list_ephemerides method usage example with argument unpacking

kwargs: ListEphemeridesRequestRequestTypeDef = {  # (1)
    "endTime": ...,
    "satelliteId": ...,
    "startTime": ...,
}

parent.list_ephemerides(**kwargs)
  1. See ListEphemeridesRequestRequestTypeDef

list_ground_stations#

Returns a list of ground stations.

Type annotations and code completion for boto3.client("groundstation").list_ground_stations method. boto3 documentation

# list_ground_stations method definition

def list_ground_stations(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
    satelliteId: str = ...,
) -> ListGroundStationsResponseTypeDef:  # (1)
    ...
  1. See ListGroundStationsResponseTypeDef
# list_ground_stations method usage example with argument unpacking

kwargs: ListGroundStationsRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_ground_stations(**kwargs)
  1. See ListGroundStationsRequestRequestTypeDef

list_mission_profiles#

Returns a list of mission profiles.

Type annotations and code completion for boto3.client("groundstation").list_mission_profiles method. boto3 documentation

# list_mission_profiles method definition

def list_mission_profiles(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListMissionProfilesResponseTypeDef:  # (1)
    ...
  1. See ListMissionProfilesResponseTypeDef
# list_mission_profiles method usage example with argument unpacking

kwargs: ListMissionProfilesRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_mission_profiles(**kwargs)
  1. See ListMissionProfilesRequestRequestTypeDef

list_satellites#

Returns a list of satellites.

Type annotations and code completion for boto3.client("groundstation").list_satellites method. boto3 documentation

# list_satellites method definition

def list_satellites(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListSatellitesResponseTypeDef:  # (1)
    ...
  1. See ListSatellitesResponseTypeDef
# list_satellites method usage example with argument unpacking

kwargs: ListSatellitesRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_satellites(**kwargs)
  1. See ListSatellitesRequestRequestTypeDef

list_tags_for_resource#

Returns a list of tags for a specified resource.

Type annotations and code completion for boto3.client("groundstation").list_tags_for_resource method. boto3 documentation

# list_tags_for_resource method definition

def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
# list_tags_for_resource method usage example with argument unpacking

kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

register_agent#

.

Type annotations and code completion for boto3.client("groundstation").register_agent method. boto3 documentation

# register_agent method definition

def register_agent(
    self,
    *,
    agentDetails: AgentDetailsTypeDef,  # (1)
    discoveryData: DiscoveryDataTypeDef,  # (2)
) -> RegisterAgentResponseTypeDef:  # (3)
    ...
  1. See AgentDetailsTypeDef
  2. See DiscoveryDataTypeDef
  3. See RegisterAgentResponseTypeDef
# register_agent method usage example with argument unpacking

kwargs: RegisterAgentRequestRequestTypeDef = {  # (1)
    "agentDetails": ...,
    "discoveryData": ...,
}

parent.register_agent(**kwargs)
  1. See RegisterAgentRequestRequestTypeDef

reserve_contact#

Reserves a contact using specified parameters.

Type annotations and code completion for boto3.client("groundstation").reserve_contact method. boto3 documentation

# reserve_contact method definition

def reserve_contact(
    self,
    *,
    endTime: Union[datetime, str],
    groundStation: str,
    missionProfileArn: str,
    satelliteArn: str,
    startTime: Union[datetime, str],
    tags: Mapping[str, str] = ...,
) -> ContactIdResponseTypeDef:  # (1)
    ...
  1. See ContactIdResponseTypeDef
# reserve_contact method usage example with argument unpacking

kwargs: ReserveContactRequestRequestTypeDef = {  # (1)
    "endTime": ...,
    "groundStation": ...,
    "missionProfileArn": ...,
    "satelliteArn": ...,
    "startTime": ...,
}

parent.reserve_contact(**kwargs)
  1. See ReserveContactRequestRequestTypeDef

tag_resource#

Assigns a tag to a resource.

Type annotations and code completion for boto3.client("groundstation").tag_resource method. boto3 documentation

# tag_resource method definition

def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...
# tag_resource method usage example with argument unpacking

kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

untag_resource#

Deassigns a resource tag.

Type annotations and code completion for boto3.client("groundstation").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)
  1. See UntagResourceRequestRequestTypeDef

update_agent_status#

.

Type annotations and code completion for boto3.client("groundstation").update_agent_status method. boto3 documentation

# update_agent_status method definition

def update_agent_status(
    self,
    *,
    agentId: str,
    aggregateStatus: AggregateStatusTypeDef,  # (1)
    componentStatuses: Sequence[ComponentStatusDataTypeDef],  # (2)
    taskId: str,
) -> UpdateAgentStatusResponseTypeDef:  # (3)
    ...
  1. See AggregateStatusTypeDef
  2. See ComponentStatusDataTypeDef
  3. See UpdateAgentStatusResponseTypeDef
# update_agent_status method usage example with argument unpacking

kwargs: UpdateAgentStatusRequestRequestTypeDef = {  # (1)
    "agentId": ...,
    "aggregateStatus": ...,
    "componentStatuses": ...,
    "taskId": ...,
}

parent.update_agent_status(**kwargs)
  1. See UpdateAgentStatusRequestRequestTypeDef

update_config#

Updates the Config used when scheduling contacts.

Type annotations and code completion for boto3.client("groundstation").update_config method. boto3 documentation

# update_config method definition

def update_config(
    self,
    *,
    configData: ConfigTypeDataTypeDef,  # (1)
    configId: str,
    configType: ConfigCapabilityTypeType,  # (2)
    name: str,
) -> ConfigIdResponseTypeDef:  # (3)
    ...
  1. See ConfigTypeDataTypeDef
  2. See ConfigCapabilityTypeType
  3. See ConfigIdResponseTypeDef
# update_config method usage example with argument unpacking

kwargs: UpdateConfigRequestRequestTypeDef = {  # (1)
    "configData": ...,
    "configId": ...,
    "configType": ...,
    "name": ...,
}

parent.update_config(**kwargs)
  1. See UpdateConfigRequestRequestTypeDef

update_ephemeris#

Updates an existing ephemeris See also: AWS API Documentation.

Type annotations and code completion for boto3.client("groundstation").update_ephemeris method. boto3 documentation

# update_ephemeris method definition

def update_ephemeris(
    self,
    *,
    enabled: bool,
    ephemerisId: str,
    name: str = ...,
    priority: int = ...,
) -> EphemerisIdResponseTypeDef:  # (1)
    ...
  1. See EphemerisIdResponseTypeDef
# update_ephemeris method usage example with argument unpacking

kwargs: UpdateEphemerisRequestRequestTypeDef = {  # (1)
    "enabled": ...,
    "ephemerisId": ...,
}

parent.update_ephemeris(**kwargs)
  1. See UpdateEphemerisRequestRequestTypeDef

update_mission_profile#

Updates a mission profile.

Type annotations and code completion for boto3.client("groundstation").update_mission_profile method. boto3 documentation

# update_mission_profile method definition

def update_mission_profile(
    self,
    *,
    missionProfileId: str,
    contactPostPassDurationSeconds: int = ...,
    contactPrePassDurationSeconds: int = ...,
    dataflowEdges: Sequence[Sequence[str]] = ...,
    minimumViableContactDurationSeconds: int = ...,
    name: str = ...,
    streamsKmsKey: KmsKeyTypeDef = ...,  # (1)
    streamsKmsRole: str = ...,
    trackingConfigArn: str = ...,
) -> MissionProfileIdResponseTypeDef:  # (2)
    ...
  1. See KmsKeyTypeDef
  2. See MissionProfileIdResponseTypeDef
# update_mission_profile method usage example with argument unpacking

kwargs: UpdateMissionProfileRequestRequestTypeDef = {  # (1)
    "missionProfileId": ...,
}

parent.update_mission_profile(**kwargs)
  1. See UpdateMissionProfileRequestRequestTypeDef

get_paginator#

Type annotations and code completion for boto3.client("groundstation").get_paginator method with overloads.

get_waiter#

Type annotations and code completion for boto3.client("groundstation").get_waiter method with overloads.