GreengrassV2Client#
Index > GreengrassV2 > GreengrassV2Client
Auto-generated documentation for GreengrassV2 type annotations stubs module types-boto3-greengrassv2.
GreengrassV2Client#
Type annotations and code completion for boto3.client("greengrassv2").
 boto3 documentation
# GreengrassV2Client usage example
from boto3.session import Session
from types_boto3_greengrassv2.client import GreengrassV2Client
def get_greengrassv2_client() -> GreengrassV2Client:
    return Session().client("greengrassv2")Exceptions#
boto3 client exceptions are generated in runtime.
This class provides code completion for boto3.client("greengrassv2").exceptions structure.
# Exceptions.exceptions usage example
client = boto3.client("greengrassv2")
try:
    do_something(client)
except (
    client.exceptions.AccessDeniedException,
    client.exceptions.ClientError,
    client.exceptions.ConflictException,
    client.exceptions.InternalServerException,
    client.exceptions.RequestAlreadyInProgressException,
    client.exceptions.ResourceNotFoundException,
    client.exceptions.ServiceQuotaExceededException,
    client.exceptions.ThrottlingException,
    client.exceptions.ValidationException,
) as e:
    print(e)# Exceptions.exceptions type checking example
from types_boto3_greengrassv2.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...Methods#
can_paginate#
Type annotations and code completion for boto3.client("greengrassv2").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("greengrassv2").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:
    ...associate_service_role_to_account#
Associates a Greengrass service role with IoT Greengrass for your Amazon Web Services account in this Amazon Web Services Region.
Type annotations and code completion for boto3.client("greengrassv2").associate_service_role_to_account method.
 boto3 documentation
# associate_service_role_to_account method definition
def associate_service_role_to_account(
    self,
    *,
    roleArn: str,
) -> AssociateServiceRoleToAccountResponseTypeDef:  # (1)
    ...# associate_service_role_to_account method usage example with argument unpacking
kwargs: AssociateServiceRoleToAccountRequestTypeDef = {  # (1)
    "roleArn": ...,
}
parent.associate_service_role_to_account(**kwargs)batch_associate_client_device_with_core_device#
Associates a list of client devices with a core device.
Type annotations and code completion for boto3.client("greengrassv2").batch_associate_client_device_with_core_device method.
 boto3 documentation
# batch_associate_client_device_with_core_device method definition
def batch_associate_client_device_with_core_device(
    self,
    *,
    coreDeviceThingName: str,
    entries: Sequence[AssociateClientDeviceWithCoreDeviceEntryTypeDef] = ...,  # (1)
) -> BatchAssociateClientDeviceWithCoreDeviceResponseTypeDef:  # (2)
    ...- See Sequence[AssociateClientDeviceWithCoreDeviceEntryTypeDef]
- See BatchAssociateClientDeviceWithCoreDeviceResponseTypeDef
# batch_associate_client_device_with_core_device method usage example with argument unpacking
kwargs: BatchAssociateClientDeviceWithCoreDeviceRequestTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}
parent.batch_associate_client_device_with_core_device(**kwargs)batch_disassociate_client_device_from_core_device#
Disassociates a list of client devices from a core device.
Type annotations and code completion for boto3.client("greengrassv2").batch_disassociate_client_device_from_core_device method.
 boto3 documentation
# batch_disassociate_client_device_from_core_device method definition
def batch_disassociate_client_device_from_core_device(
    self,
    *,
    coreDeviceThingName: str,
    entries: Sequence[DisassociateClientDeviceFromCoreDeviceEntryTypeDef] = ...,  # (1)
) -> BatchDisassociateClientDeviceFromCoreDeviceResponseTypeDef:  # (2)
    ...- See Sequence[DisassociateClientDeviceFromCoreDeviceEntryTypeDef]
- See BatchDisassociateClientDeviceFromCoreDeviceResponseTypeDef
# batch_disassociate_client_device_from_core_device method usage example with argument unpacking
kwargs: BatchDisassociateClientDeviceFromCoreDeviceRequestTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}
parent.batch_disassociate_client_device_from_core_device(**kwargs)cancel_deployment#
Cancels a deployment.
Type annotations and code completion for boto3.client("greengrassv2").cancel_deployment method.
 boto3 documentation
# cancel_deployment method definition
def cancel_deployment(
    self,
    *,
    deploymentId: str,
) -> CancelDeploymentResponseTypeDef:  # (1)
    ...# cancel_deployment method usage example with argument unpacking
kwargs: CancelDeploymentRequestTypeDef = {  # (1)
    "deploymentId": ...,
}
parent.cancel_deployment(**kwargs)create_component_version#
Creates a component.
Type annotations and code completion for boto3.client("greengrassv2").create_component_version method.
 boto3 documentation
# create_component_version method definition
def create_component_version(
    self,
    *,
    inlineRecipe: BlobTypeDef = ...,
    lambdaFunction: LambdaFunctionRecipeSourceTypeDef = ...,  # (1)
    tags: Mapping[str, str] = ...,
    clientToken: str = ...,
) -> CreateComponentVersionResponseTypeDef:  # (2)
    ...# create_component_version method usage example with argument unpacking
kwargs: CreateComponentVersionRequestTypeDef = {  # (1)
    "inlineRecipe": ...,
}
parent.create_component_version(**kwargs)create_deployment#
Creates a continuous deployment for a target, which is a Greengrass core device or group of core devices.
Type annotations and code completion for boto3.client("greengrassv2").create_deployment method.
 boto3 documentation
# create_deployment method definition
def create_deployment(
    self,
    *,
    targetArn: str,
    deploymentName: str = ...,
    components: Mapping[str, ComponentDeploymentSpecificationUnionTypeDef] = ...,  # (1)
    iotJobConfiguration: DeploymentIoTJobConfigurationUnionTypeDef = ...,  # (2)
    deploymentPolicies: DeploymentPoliciesTypeDef = ...,  # (3)
    parentTargetArn: str = ...,
    tags: Mapping[str, str] = ...,
    clientToken: str = ...,
) -> CreateDeploymentResponseTypeDef:  # (4)
    ...- See Mapping[str, ComponentDeploymentSpecificationUnionTypeDef]
- See DeploymentIoTJobConfigurationUnionTypeDef
- See DeploymentPoliciesTypeDef
- See CreateDeploymentResponseTypeDef
# create_deployment method usage example with argument unpacking
kwargs: CreateDeploymentRequestTypeDef = {  # (1)
    "targetArn": ...,
}
parent.create_deployment(**kwargs)delete_component#
Deletes a version of a component from IoT Greengrass.
Type annotations and code completion for boto3.client("greengrassv2").delete_component method.
 boto3 documentation
# delete_component method definition
def delete_component(
    self,
    *,
    arn: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...# delete_component method usage example with argument unpacking
kwargs: DeleteComponentRequestTypeDef = {  # (1)
    "arn": ...,
}
parent.delete_component(**kwargs)delete_core_device#
Deletes a Greengrass core device, which is an IoT thing.
Type annotations and code completion for boto3.client("greengrassv2").delete_core_device method.
 boto3 documentation
# delete_core_device method definition
def delete_core_device(
    self,
    *,
    coreDeviceThingName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...# delete_core_device method usage example with argument unpacking
kwargs: DeleteCoreDeviceRequestTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}
parent.delete_core_device(**kwargs)delete_deployment#
Deletes a deployment.
Type annotations and code completion for boto3.client("greengrassv2").delete_deployment method.
 boto3 documentation
# delete_deployment method definition
def delete_deployment(
    self,
    *,
    deploymentId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...# delete_deployment method usage example with argument unpacking
kwargs: DeleteDeploymentRequestTypeDef = {  # (1)
    "deploymentId": ...,
}
parent.delete_deployment(**kwargs)describe_component#
Retrieves metadata for a version of a component.
Type annotations and code completion for boto3.client("greengrassv2").describe_component method.
 boto3 documentation
# describe_component method definition
def describe_component(
    self,
    *,
    arn: str,
) -> DescribeComponentResponseTypeDef:  # (1)
    ...# describe_component method usage example with argument unpacking
kwargs: DescribeComponentRequestTypeDef = {  # (1)
    "arn": ...,
}
parent.describe_component(**kwargs)disassociate_service_role_from_account#
Disassociates the Greengrass service role from IoT Greengrass for your Amazon Web Services account in this Amazon Web Services Region.
Type annotations and code completion for boto3.client("greengrassv2").disassociate_service_role_from_account method.
 boto3 documentation
# disassociate_service_role_from_account method definition
def disassociate_service_role_from_account(
    self,
) -> DisassociateServiceRoleFromAccountResponseTypeDef:  # (1)
    ...get_component#
Gets the recipe for a version of a component.
Type annotations and code completion for boto3.client("greengrassv2").get_component method.
 boto3 documentation
# get_component method definition
def get_component(
    self,
    *,
    arn: str,
    recipeOutputFormat: RecipeOutputFormatType = ...,  # (1)
) -> GetComponentResponseTypeDef:  # (2)
    ...# get_component method usage example with argument unpacking
kwargs: GetComponentRequestTypeDef = {  # (1)
    "arn": ...,
}
parent.get_component(**kwargs)get_component_version_artifact#
Gets the pre-signed URL to download a public or a Lambda component artifact.
Type annotations and code completion for boto3.client("greengrassv2").get_component_version_artifact method.
 boto3 documentation
# get_component_version_artifact method definition
def get_component_version_artifact(
    self,
    *,
    arn: str,
    artifactName: str,
    s3EndpointType: S3EndpointTypeType = ...,  # (1)
    iotEndpointType: IotEndpointTypeType = ...,  # (2)
) -> GetComponentVersionArtifactResponseTypeDef:  # (3)
    ...# get_component_version_artifact method usage example with argument unpacking
kwargs: GetComponentVersionArtifactRequestTypeDef = {  # (1)
    "arn": ...,
    "artifactName": ...,
}
parent.get_component_version_artifact(**kwargs)get_connectivity_info#
Retrieves connectivity information for a Greengrass core device.
Type annotations and code completion for boto3.client("greengrassv2").get_connectivity_info method.
 boto3 documentation
# get_connectivity_info method definition
def get_connectivity_info(
    self,
    *,
    thingName: str,
) -> GetConnectivityInfoResponseTypeDef:  # (1)
    ...# get_connectivity_info method usage example with argument unpacking
kwargs: GetConnectivityInfoRequestTypeDef = {  # (1)
    "thingName": ...,
}
parent.get_connectivity_info(**kwargs)get_core_device#
Retrieves metadata for a Greengrass core device.
Type annotations and code completion for boto3.client("greengrassv2").get_core_device method.
 boto3 documentation
# get_core_device method definition
def get_core_device(
    self,
    *,
    coreDeviceThingName: str,
) -> GetCoreDeviceResponseTypeDef:  # (1)
    ...# get_core_device method usage example with argument unpacking
kwargs: GetCoreDeviceRequestTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}
parent.get_core_device(**kwargs)get_deployment#
Gets a deployment.
Type annotations and code completion for boto3.client("greengrassv2").get_deployment method.
 boto3 documentation
# get_deployment method definition
def get_deployment(
    self,
    *,
    deploymentId: str,
) -> GetDeploymentResponseTypeDef:  # (1)
    ...# get_deployment method usage example with argument unpacking
kwargs: GetDeploymentRequestTypeDef = {  # (1)
    "deploymentId": ...,
}
parent.get_deployment(**kwargs)get_service_role_for_account#
Gets the service role associated with IoT Greengrass for your Amazon Web Services account in this Amazon Web Services Region.
Type annotations and code completion for boto3.client("greengrassv2").get_service_role_for_account method.
 boto3 documentation
# get_service_role_for_account method definition
def get_service_role_for_account(
    self,
) -> GetServiceRoleForAccountResponseTypeDef:  # (1)
    ...list_client_devices_associated_with_core_device#
Retrieves a paginated list of client devices that are associated with a core device.
Type annotations and code completion for boto3.client("greengrassv2").list_client_devices_associated_with_core_device method.
 boto3 documentation
# list_client_devices_associated_with_core_device method definition
def list_client_devices_associated_with_core_device(
    self,
    *,
    coreDeviceThingName: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListClientDevicesAssociatedWithCoreDeviceResponseTypeDef:  # (1)
    ...# list_client_devices_associated_with_core_device method usage example with argument unpacking
kwargs: ListClientDevicesAssociatedWithCoreDeviceRequestTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}
parent.list_client_devices_associated_with_core_device(**kwargs)list_component_versions#
Retrieves a paginated list of all versions for a component.
Type annotations and code completion for boto3.client("greengrassv2").list_component_versions method.
 boto3 documentation
# list_component_versions method definition
def list_component_versions(
    self,
    *,
    arn: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListComponentVersionsResponseTypeDef:  # (1)
    ...# list_component_versions method usage example with argument unpacking
kwargs: ListComponentVersionsRequestTypeDef = {  # (1)
    "arn": ...,
}
parent.list_component_versions(**kwargs)list_components#
Retrieves a paginated list of component summaries.
Type annotations and code completion for boto3.client("greengrassv2").list_components method.
 boto3 documentation
# list_components method definition
def list_components(
    self,
    *,
    scope: ComponentVisibilityScopeType = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListComponentsResponseTypeDef:  # (2)
    ...# list_components method usage example with argument unpacking
kwargs: ListComponentsRequestTypeDef = {  # (1)
    "scope": ...,
}
parent.list_components(**kwargs)list_core_devices#
Retrieves a paginated list of Greengrass core devices.
Type annotations and code completion for boto3.client("greengrassv2").list_core_devices method.
 boto3 documentation
# list_core_devices method definition
def list_core_devices(
    self,
    *,
    thingGroupArn: str = ...,
    status: CoreDeviceStatusType = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    runtime: str = ...,
) -> ListCoreDevicesResponseTypeDef:  # (2)
    ...# list_core_devices method usage example with argument unpacking
kwargs: ListCoreDevicesRequestTypeDef = {  # (1)
    "thingGroupArn": ...,
}
parent.list_core_devices(**kwargs)list_deployments#
Retrieves a paginated list of deployments.
Type annotations and code completion for boto3.client("greengrassv2").list_deployments method.
 boto3 documentation
# list_deployments method definition
def list_deployments(
    self,
    *,
    targetArn: str = ...,
    historyFilter: DeploymentHistoryFilterType = ...,  # (1)
    parentTargetArn: str = ...,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListDeploymentsResponseTypeDef:  # (2)
    ...# list_deployments method usage example with argument unpacking
kwargs: ListDeploymentsRequestTypeDef = {  # (1)
    "targetArn": ...,
}
parent.list_deployments(**kwargs)list_effective_deployments#
Retrieves a paginated list of deployment jobs that IoT Greengrass sends to Greengrass core devices.
Type annotations and code completion for boto3.client("greengrassv2").list_effective_deployments method.
 boto3 documentation
# list_effective_deployments method definition
def list_effective_deployments(
    self,
    *,
    coreDeviceThingName: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListEffectiveDeploymentsResponseTypeDef:  # (1)
    ...# list_effective_deployments method usage example with argument unpacking
kwargs: ListEffectiveDeploymentsRequestTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}
parent.list_effective_deployments(**kwargs)list_installed_components#
Retrieves a paginated list of the components that a Greengrass core device runs.
Type annotations and code completion for boto3.client("greengrassv2").list_installed_components method.
 boto3 documentation
# list_installed_components method definition
def list_installed_components(
    self,
    *,
    coreDeviceThingName: str,
    maxResults: int = ...,
    nextToken: str = ...,
    topologyFilter: InstalledComponentTopologyFilterType = ...,  # (1)
) -> ListInstalledComponentsResponseTypeDef:  # (2)
    ...# list_installed_components method usage example with argument unpacking
kwargs: ListInstalledComponentsRequestTypeDef = {  # (1)
    "coreDeviceThingName": ...,
}
parent.list_installed_components(**kwargs)list_tags_for_resource#
Retrieves the list of tags for an IoT Greengrass resource.
Type annotations and code completion for boto3.client("greengrassv2").list_tags_for_resource method.
 boto3 documentation
# list_tags_for_resource method definition
def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...# list_tags_for_resource method usage example with argument unpacking
kwargs: ListTagsForResourceRequestTypeDef = {  # (1)
    "resourceArn": ...,
}
parent.list_tags_for_resource(**kwargs)resolve_component_candidates#
Retrieves a list of components that meet the component, version, and platform requirements of a deployment.
Type annotations and code completion for boto3.client("greengrassv2").resolve_component_candidates method.
 boto3 documentation
# resolve_component_candidates method definition
def resolve_component_candidates(
    self,
    *,
    platform: ComponentPlatformUnionTypeDef = ...,  # (1)
    componentCandidates: Sequence[ComponentCandidateTypeDef] = ...,  # (2)
) -> ResolveComponentCandidatesResponseTypeDef:  # (3)
    ...- See ComponentPlatformUnionTypeDef
- See Sequence[ComponentCandidateTypeDef]
- See ResolveComponentCandidatesResponseTypeDef
# resolve_component_candidates method usage example with argument unpacking
kwargs: ResolveComponentCandidatesRequestTypeDef = {  # (1)
    "platform": ...,
}
parent.resolve_component_candidates(**kwargs)tag_resource#
Adds tags to an IoT Greengrass resource.
Type annotations and code completion for boto3.client("greengrassv2").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: TagResourceRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}
parent.tag_resource(**kwargs)untag_resource#
Removes a tag from an IoT Greengrass resource.
Type annotations and code completion for boto3.client("greengrassv2").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: UntagResourceRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}
parent.untag_resource(**kwargs)update_connectivity_info#
Updates connectivity information for a Greengrass core device.
Type annotations and code completion for boto3.client("greengrassv2").update_connectivity_info method.
 boto3 documentation
# update_connectivity_info method definition
def update_connectivity_info(
    self,
    *,
    thingName: str,
    connectivityInfo: Sequence[ConnectivityInfoTypeDef],  # (1)
) -> UpdateConnectivityInfoResponseTypeDef:  # (2)
    ...- See Sequence[ConnectivityInfoTypeDef]
- See UpdateConnectivityInfoResponseTypeDef
# update_connectivity_info method usage example with argument unpacking
kwargs: UpdateConnectivityInfoRequestTypeDef = {  # (1)
    "thingName": ...,
    "connectivityInfo": ...,
}
parent.update_connectivity_info(**kwargs)get_paginator#
Type annotations and code completion for boto3.client("greengrassv2").get_paginator method with overloads.
- client.get_paginator("list_client_devices_associated_with_core_device")-> ListClientDevicesAssociatedWithCoreDevicePaginator
- client.get_paginator("list_component_versions")-> ListComponentVersionsPaginator
- client.get_paginator("list_components")-> ListComponentsPaginator
- client.get_paginator("list_core_devices")-> ListCoreDevicesPaginator
- client.get_paginator("list_deployments")-> ListDeploymentsPaginator
- client.get_paginator("list_effective_deployments")-> ListEffectiveDeploymentsPaginator
- client.get_paginator("list_installed_components")-> ListInstalledComponentsPaginator