IoTSiteWiseClient
Index > IoTSiteWise > IoTSiteWiseClient
Auto-generated documentation for IoTSiteWise type annotations stubs module mypy-boto3-iotsitewise.
IoTSiteWiseClient
Type annotations and code completion for boto3.client("iotsitewise")
.
boto3 documentation
from boto3.session import Session
from mypy_boto3_iotsitewise.client import IoTSiteWiseClient
def get_iotsitewise_client() -> IoTSiteWiseClient:
return Session().client("iotsitewise")
Exceptions
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("iotsitewise").exceptions
structure.
client = boto3.client("iotsitewise")
try:
do_something(client)
except (
client.ClientError,
client.ConflictingOperationException,
client.InternalFailureException,
client.InvalidRequestException,
client.LimitExceededException,
client.ResourceAlreadyExistsException,
client.ResourceNotFoundException,
client.ServiceUnavailableException,
client.ThrottlingException,
client.TooManyTagsException,
client.UnauthorizedException,
) as e:
print(e)
from mypy_boto3_iotsitewise.client import Exceptions
def handle_error(exc: Exceptions.ClientError) -> None:
...
Methods
associate_assets
Associates a child asset with the given parent asset through a hierarchy defined in the parent asset's model.
Type annotations and code completion for boto3.client("iotsitewise").associate_assets
method.
boto3 documentation
def associate_assets(
self,
*,
assetId: str,
hierarchyId: str,
childAssetId: str,
clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: AssociateAssetsRequestRequestTypeDef = { # (1)
"assetId": ...,
"hierarchyId": ...,
"childAssetId": ...,
}
parent.associate_assets(**kwargs)
associate_time_series_to_asset_property
Associates a time series (data stream) with an asset property.
Type annotations and code completion for boto3.client("iotsitewise").associate_time_series_to_asset_property
method.
boto3 documentation
def associate_time_series_to_asset_property(
self,
*,
alias: str,
assetId: str,
propertyId: str,
clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: AssociateTimeSeriesToAssetPropertyRequestRequestTypeDef = { # (1)
"alias": ...,
"assetId": ...,
"propertyId": ...,
}
parent.associate_time_series_to_asset_property(**kwargs)
batch_associate_project_assets
Associates a group (batch) of assets with an IoT SiteWise Monitor project.
Type annotations and code completion for boto3.client("iotsitewise").batch_associate_project_assets
method.
boto3 documentation
def batch_associate_project_assets(
self,
*,
projectId: str,
assetIds: Sequence[str],
clientToken: str = ...,
) -> BatchAssociateProjectAssetsResponseTypeDef: # (1)
...
kwargs: BatchAssociateProjectAssetsRequestRequestTypeDef = { # (1)
"projectId": ...,
"assetIds": ...,
}
parent.batch_associate_project_assets(**kwargs)
batch_disassociate_project_assets
Disassociates a group (batch) of assets from an IoT SiteWise Monitor project.
Type annotations and code completion for boto3.client("iotsitewise").batch_disassociate_project_assets
method.
boto3 documentation
def batch_disassociate_project_assets(
self,
*,
projectId: str,
assetIds: Sequence[str],
clientToken: str = ...,
) -> BatchDisassociateProjectAssetsResponseTypeDef: # (1)
...
kwargs: BatchDisassociateProjectAssetsRequestRequestTypeDef = { # (1)
"projectId": ...,
"assetIds": ...,
}
parent.batch_disassociate_project_assets(**kwargs)
batch_get_asset_property_aggregates
Gets aggregated values (for example, average, minimum, and maximum) for one or more asset properties.
Type annotations and code completion for boto3.client("iotsitewise").batch_get_asset_property_aggregates
method.
boto3 documentation
def batch_get_asset_property_aggregates(
self,
*,
entries: Sequence[BatchGetAssetPropertyAggregatesEntryTypeDef], # (1)
nextToken: str = ...,
maxResults: int = ...,
) -> BatchGetAssetPropertyAggregatesResponseTypeDef: # (2)
...
kwargs: BatchGetAssetPropertyAggregatesRequestRequestTypeDef = { # (1)
"entries": ...,
}
parent.batch_get_asset_property_aggregates(**kwargs)
batch_get_asset_property_value
Gets the current value for one or more asset properties.
Type annotations and code completion for boto3.client("iotsitewise").batch_get_asset_property_value
method.
boto3 documentation
def batch_get_asset_property_value(
self,
*,
entries: Sequence[BatchGetAssetPropertyValueEntryTypeDef], # (1)
nextToken: str = ...,
) -> BatchGetAssetPropertyValueResponseTypeDef: # (2)
...
kwargs: BatchGetAssetPropertyValueRequestRequestTypeDef = { # (1)
"entries": ...,
}
parent.batch_get_asset_property_value(**kwargs)
batch_get_asset_property_value_history
Gets the historical values for one or more asset properties.
Type annotations and code completion for boto3.client("iotsitewise").batch_get_asset_property_value_history
method.
boto3 documentation
def batch_get_asset_property_value_history(
self,
*,
entries: Sequence[BatchGetAssetPropertyValueHistoryEntryTypeDef], # (1)
nextToken: str = ...,
maxResults: int = ...,
) -> BatchGetAssetPropertyValueHistoryResponseTypeDef: # (2)
...
- See BatchGetAssetPropertyValueHistoryEntryTypeDef
- See BatchGetAssetPropertyValueHistoryResponseTypeDef
kwargs: BatchGetAssetPropertyValueHistoryRequestRequestTypeDef = { # (1)
"entries": ...,
}
parent.batch_get_asset_property_value_history(**kwargs)
batch_put_asset_property_value
Sends a list of asset property values to IoT SiteWise.
Type annotations and code completion for boto3.client("iotsitewise").batch_put_asset_property_value
method.
boto3 documentation
def batch_put_asset_property_value(
self,
*,
entries: Sequence[PutAssetPropertyValueEntryTypeDef], # (1)
) -> BatchPutAssetPropertyValueResponseTypeDef: # (2)
...
kwargs: BatchPutAssetPropertyValueRequestRequestTypeDef = { # (1)
"entries": ...,
}
parent.batch_put_asset_property_value(**kwargs)
can_paginate
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("iotsitewise").can_paginate
method.
boto3 documentation
close
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("iotsitewise").close
method.
boto3 documentation
create_access_policy
Creates an access policy that grants the specified identity (IAM Identity Center user, IAM Identity Center group, or IAM user) access to the specified IoT SiteWise Monitor portal or project resource.
Type annotations and code completion for boto3.client("iotsitewise").create_access_policy
method.
boto3 documentation
def create_access_policy(
self,
*,
accessPolicyIdentity: IdentityTypeDef, # (1)
accessPolicyResource: ResourceTypeDef, # (2)
accessPolicyPermission: PermissionType, # (3)
clientToken: str = ...,
tags: Mapping[str, str] = ...,
) -> CreateAccessPolicyResponseTypeDef: # (4)
...
kwargs: CreateAccessPolicyRequestRequestTypeDef = { # (1)
"accessPolicyIdentity": ...,
"accessPolicyResource": ...,
"accessPolicyPermission": ...,
}
parent.create_access_policy(**kwargs)
create_asset
Creates an asset from an existing asset model.
Type annotations and code completion for boto3.client("iotsitewise").create_asset
method.
boto3 documentation
def create_asset(
self,
*,
assetName: str,
assetModelId: str,
clientToken: str = ...,
tags: Mapping[str, str] = ...,
assetDescription: str = ...,
) -> CreateAssetResponseTypeDef: # (1)
...
kwargs: CreateAssetRequestRequestTypeDef = { # (1)
"assetName": ...,
"assetModelId": ...,
}
parent.create_asset(**kwargs)
create_asset_model
Creates an asset model from specified property and hierarchy definitions.
Type annotations and code completion for boto3.client("iotsitewise").create_asset_model
method.
boto3 documentation
def create_asset_model(
self,
*,
assetModelName: str,
assetModelDescription: str = ...,
assetModelProperties: Sequence[AssetModelPropertyDefinitionTypeDef] = ..., # (1)
assetModelHierarchies: Sequence[AssetModelHierarchyDefinitionTypeDef] = ..., # (2)
assetModelCompositeModels: Sequence[AssetModelCompositeModelDefinitionTypeDef] = ..., # (3)
clientToken: str = ...,
tags: Mapping[str, str] = ...,
) -> CreateAssetModelResponseTypeDef: # (4)
...
- See AssetModelPropertyDefinitionTypeDef
- See AssetModelHierarchyDefinitionTypeDef
- See AssetModelCompositeModelDefinitionTypeDef
- See CreateAssetModelResponseTypeDef
kwargs: CreateAssetModelRequestRequestTypeDef = { # (1)
"assetModelName": ...,
}
parent.create_asset_model(**kwargs)
create_bulk_import_job
Defines a job to ingest data to IoT SiteWise from Amazon S3.
Type annotations and code completion for boto3.client("iotsitewise").create_bulk_import_job
method.
boto3 documentation
def create_bulk_import_job(
self,
*,
jobName: str,
jobRoleArn: str,
files: Sequence[FileTypeDef], # (1)
errorReportLocation: ErrorReportLocationTypeDef, # (2)
jobConfiguration: JobConfigurationTypeDef, # (3)
) -> CreateBulkImportJobResponseTypeDef: # (4)
...
- See FileTypeDef
- See ErrorReportLocationTypeDef
- See JobConfigurationTypeDef
- See CreateBulkImportJobResponseTypeDef
kwargs: CreateBulkImportJobRequestRequestTypeDef = { # (1)
"jobName": ...,
"jobRoleArn": ...,
"files": ...,
"errorReportLocation": ...,
"jobConfiguration": ...,
}
parent.create_bulk_import_job(**kwargs)
create_dashboard
Creates a dashboard in an IoT SiteWise Monitor project.
Type annotations and code completion for boto3.client("iotsitewise").create_dashboard
method.
boto3 documentation
def create_dashboard(
self,
*,
projectId: str,
dashboardName: str,
dashboardDefinition: str,
dashboardDescription: str = ...,
clientToken: str = ...,
tags: Mapping[str, str] = ...,
) -> CreateDashboardResponseTypeDef: # (1)
...
kwargs: CreateDashboardRequestRequestTypeDef = { # (1)
"projectId": ...,
"dashboardName": ...,
"dashboardDefinition": ...,
}
parent.create_dashboard(**kwargs)
create_gateway
Creates a gateway, which is a virtual or edge device that delivers industrial data streams from local servers to IoT SiteWise.
Type annotations and code completion for boto3.client("iotsitewise").create_gateway
method.
boto3 documentation
def create_gateway(
self,
*,
gatewayName: str,
gatewayPlatform: GatewayPlatformTypeDef, # (1)
tags: Mapping[str, str] = ...,
) -> CreateGatewayResponseTypeDef: # (2)
...
kwargs: CreateGatewayRequestRequestTypeDef = { # (1)
"gatewayName": ...,
"gatewayPlatform": ...,
}
parent.create_gateway(**kwargs)
create_portal
Creates a portal, which can contain projects and dashboards.
Type annotations and code completion for boto3.client("iotsitewise").create_portal
method.
boto3 documentation
def create_portal(
self,
*,
portalName: str,
portalContactEmail: str,
roleArn: str,
portalDescription: str = ...,
clientToken: str = ...,
portalLogoImageFile: ImageFileTypeDef = ..., # (1)
tags: Mapping[str, str] = ...,
portalAuthMode: AuthModeType = ..., # (2)
notificationSenderEmail: str = ...,
alarms: AlarmsTypeDef = ..., # (3)
) -> CreatePortalResponseTypeDef: # (4)
...
- See ImageFileTypeDef
- See AuthModeType
- See AlarmsTypeDef
- See CreatePortalResponseTypeDef
kwargs: CreatePortalRequestRequestTypeDef = { # (1)
"portalName": ...,
"portalContactEmail": ...,
"roleArn": ...,
}
parent.create_portal(**kwargs)
create_project
Creates a project in the specified portal.
Type annotations and code completion for boto3.client("iotsitewise").create_project
method.
boto3 documentation
def create_project(
self,
*,
portalId: str,
projectName: str,
projectDescription: str = ...,
clientToken: str = ...,
tags: Mapping[str, str] = ...,
) -> CreateProjectResponseTypeDef: # (1)
...
kwargs: CreateProjectRequestRequestTypeDef = { # (1)
"portalId": ...,
"projectName": ...,
}
parent.create_project(**kwargs)
delete_access_policy
Deletes an access policy that grants the specified identity access to the specified IoT SiteWise Monitor resource.
Type annotations and code completion for boto3.client("iotsitewise").delete_access_policy
method.
boto3 documentation
def delete_access_policy(
self,
*,
accessPolicyId: str,
clientToken: str = ...,
) -> Dict[str, Any]:
...
kwargs: DeleteAccessPolicyRequestRequestTypeDef = { # (1)
"accessPolicyId": ...,
}
parent.delete_access_policy(**kwargs)
delete_asset
Deletes an asset.
Type annotations and code completion for boto3.client("iotsitewise").delete_asset
method.
boto3 documentation
def delete_asset(
self,
*,
assetId: str,
clientToken: str = ...,
) -> DeleteAssetResponseTypeDef: # (1)
...
kwargs: DeleteAssetRequestRequestTypeDef = { # (1)
"assetId": ...,
}
parent.delete_asset(**kwargs)
delete_asset_model
Deletes an asset model.
Type annotations and code completion for boto3.client("iotsitewise").delete_asset_model
method.
boto3 documentation
def delete_asset_model(
self,
*,
assetModelId: str,
clientToken: str = ...,
) -> DeleteAssetModelResponseTypeDef: # (1)
...
kwargs: DeleteAssetModelRequestRequestTypeDef = { # (1)
"assetModelId": ...,
}
parent.delete_asset_model(**kwargs)
delete_dashboard
Deletes a dashboard from IoT SiteWise Monitor.
Type annotations and code completion for boto3.client("iotsitewise").delete_dashboard
method.
boto3 documentation
def delete_dashboard(
self,
*,
dashboardId: str,
clientToken: str = ...,
) -> Dict[str, Any]:
...
kwargs: DeleteDashboardRequestRequestTypeDef = { # (1)
"dashboardId": ...,
}
parent.delete_dashboard(**kwargs)
delete_gateway
Deletes a gateway from IoT SiteWise.
Type annotations and code completion for boto3.client("iotsitewise").delete_gateway
method.
boto3 documentation
def delete_gateway(
self,
*,
gatewayId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteGatewayRequestRequestTypeDef = { # (1)
"gatewayId": ...,
}
parent.delete_gateway(**kwargs)
delete_portal
Deletes a portal from IoT SiteWise Monitor.
Type annotations and code completion for boto3.client("iotsitewise").delete_portal
method.
boto3 documentation
def delete_portal(
self,
*,
portalId: str,
clientToken: str = ...,
) -> DeletePortalResponseTypeDef: # (1)
...
kwargs: DeletePortalRequestRequestTypeDef = { # (1)
"portalId": ...,
}
parent.delete_portal(**kwargs)
delete_project
Deletes a project from IoT SiteWise Monitor.
Type annotations and code completion for boto3.client("iotsitewise").delete_project
method.
boto3 documentation
def delete_project(
self,
*,
projectId: str,
clientToken: str = ...,
) -> Dict[str, Any]:
...
kwargs: DeleteProjectRequestRequestTypeDef = { # (1)
"projectId": ...,
}
parent.delete_project(**kwargs)
delete_time_series
Deletes a time series (data stream).
Type annotations and code completion for boto3.client("iotsitewise").delete_time_series
method.
boto3 documentation
def delete_time_series(
self,
*,
alias: str = ...,
assetId: str = ...,
propertyId: str = ...,
clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteTimeSeriesRequestRequestTypeDef = { # (1)
"alias": ...,
}
parent.delete_time_series(**kwargs)
describe_access_policy
Describes an access policy, which specifies an identity's access to an IoT SiteWise Monitor portal or project.
Type annotations and code completion for boto3.client("iotsitewise").describe_access_policy
method.
boto3 documentation
def describe_access_policy(
self,
*,
accessPolicyId: str,
) -> DescribeAccessPolicyResponseTypeDef: # (1)
...
kwargs: DescribeAccessPolicyRequestRequestTypeDef = { # (1)
"accessPolicyId": ...,
}
parent.describe_access_policy(**kwargs)
describe_asset
Retrieves information about an asset.
Type annotations and code completion for boto3.client("iotsitewise").describe_asset
method.
boto3 documentation
def describe_asset(
self,
*,
assetId: str,
excludeProperties: bool = ...,
) -> DescribeAssetResponseTypeDef: # (1)
...
kwargs: DescribeAssetRequestRequestTypeDef = { # (1)
"assetId": ...,
}
parent.describe_asset(**kwargs)
describe_asset_model
Retrieves information about an asset model.
Type annotations and code completion for boto3.client("iotsitewise").describe_asset_model
method.
boto3 documentation
def describe_asset_model(
self,
*,
assetModelId: str,
excludeProperties: bool = ...,
) -> DescribeAssetModelResponseTypeDef: # (1)
...
kwargs: DescribeAssetModelRequestRequestTypeDef = { # (1)
"assetModelId": ...,
}
parent.describe_asset_model(**kwargs)
describe_asset_property
Retrieves information about an asset property.
Type annotations and code completion for boto3.client("iotsitewise").describe_asset_property
method.
boto3 documentation
def describe_asset_property(
self,
*,
assetId: str,
propertyId: str,
) -> DescribeAssetPropertyResponseTypeDef: # (1)
...
kwargs: DescribeAssetPropertyRequestRequestTypeDef = { # (1)
"assetId": ...,
"propertyId": ...,
}
parent.describe_asset_property(**kwargs)
describe_bulk_import_job
Retrieves information about a bulk import job request.
Type annotations and code completion for boto3.client("iotsitewise").describe_bulk_import_job
method.
boto3 documentation
def describe_bulk_import_job(
self,
*,
jobId: str,
) -> DescribeBulkImportJobResponseTypeDef: # (1)
...
kwargs: DescribeBulkImportJobRequestRequestTypeDef = { # (1)
"jobId": ...,
}
parent.describe_bulk_import_job(**kwargs)
describe_dashboard
Retrieves information about a dashboard.
Type annotations and code completion for boto3.client("iotsitewise").describe_dashboard
method.
boto3 documentation
def describe_dashboard(
self,
*,
dashboardId: str,
) -> DescribeDashboardResponseTypeDef: # (1)
...
kwargs: DescribeDashboardRequestRequestTypeDef = { # (1)
"dashboardId": ...,
}
parent.describe_dashboard(**kwargs)
describe_default_encryption_configuration
Retrieves information about the default encryption configuration for the Amazon Web Services account in the default or specified Region.
Type annotations and code completion for boto3.client("iotsitewise").describe_default_encryption_configuration
method.
boto3 documentation
def describe_default_encryption_configuration(
self,
) -> DescribeDefaultEncryptionConfigurationResponseTypeDef: # (1)
...
describe_gateway
Retrieves information about a gateway.
Type annotations and code completion for boto3.client("iotsitewise").describe_gateway
method.
boto3 documentation
def describe_gateway(
self,
*,
gatewayId: str,
) -> DescribeGatewayResponseTypeDef: # (1)
...
kwargs: DescribeGatewayRequestRequestTypeDef = { # (1)
"gatewayId": ...,
}
parent.describe_gateway(**kwargs)
describe_gateway_capability_configuration
Retrieves information about a gateway capability configuration.
Type annotations and code completion for boto3.client("iotsitewise").describe_gateway_capability_configuration
method.
boto3 documentation
def describe_gateway_capability_configuration(
self,
*,
gatewayId: str,
capabilityNamespace: str,
) -> DescribeGatewayCapabilityConfigurationResponseTypeDef: # (1)
...
kwargs: DescribeGatewayCapabilityConfigurationRequestRequestTypeDef = { # (1)
"gatewayId": ...,
"capabilityNamespace": ...,
}
parent.describe_gateway_capability_configuration(**kwargs)
describe_logging_options
Retrieves the current IoT SiteWise logging options.
Type annotations and code completion for boto3.client("iotsitewise").describe_logging_options
method.
boto3 documentation
def describe_logging_options(
self,
) -> DescribeLoggingOptionsResponseTypeDef: # (1)
...
describe_portal
Retrieves information about a portal.
Type annotations and code completion for boto3.client("iotsitewise").describe_portal
method.
boto3 documentation
def describe_portal(
self,
*,
portalId: str,
) -> DescribePortalResponseTypeDef: # (1)
...
kwargs: DescribePortalRequestRequestTypeDef = { # (1)
"portalId": ...,
}
parent.describe_portal(**kwargs)
describe_project
Retrieves information about a project.
Type annotations and code completion for boto3.client("iotsitewise").describe_project
method.
boto3 documentation
def describe_project(
self,
*,
projectId: str,
) -> DescribeProjectResponseTypeDef: # (1)
...
kwargs: DescribeProjectRequestRequestTypeDef = { # (1)
"projectId": ...,
}
parent.describe_project(**kwargs)
describe_storage_configuration
Retrieves information about the storage configuration for IoT SiteWise.
Type annotations and code completion for boto3.client("iotsitewise").describe_storage_configuration
method.
boto3 documentation
def describe_storage_configuration(
self,
) -> DescribeStorageConfigurationResponseTypeDef: # (1)
...
describe_time_series
Retrieves information about a time series (data stream).
Type annotations and code completion for boto3.client("iotsitewise").describe_time_series
method.
boto3 documentation
def describe_time_series(
self,
*,
alias: str = ...,
assetId: str = ...,
propertyId: str = ...,
) -> DescribeTimeSeriesResponseTypeDef: # (1)
...
kwargs: DescribeTimeSeriesRequestRequestTypeDef = { # (1)
"alias": ...,
}
parent.describe_time_series(**kwargs)
disassociate_assets
Disassociates a child asset from the given parent asset through a hierarchy defined in the parent asset's model.
Type annotations and code completion for boto3.client("iotsitewise").disassociate_assets
method.
boto3 documentation
def disassociate_assets(
self,
*,
assetId: str,
hierarchyId: str,
childAssetId: str,
clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DisassociateAssetsRequestRequestTypeDef = { # (1)
"assetId": ...,
"hierarchyId": ...,
"childAssetId": ...,
}
parent.disassociate_assets(**kwargs)
disassociate_time_series_from_asset_property
Disassociates a time series (data stream) from an asset property.
Type annotations and code completion for boto3.client("iotsitewise").disassociate_time_series_from_asset_property
method.
boto3 documentation
def disassociate_time_series_from_asset_property(
self,
*,
alias: str,
assetId: str,
propertyId: str,
clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DisassociateTimeSeriesFromAssetPropertyRequestRequestTypeDef = { # (1)
"alias": ...,
"assetId": ...,
"propertyId": ...,
}
parent.disassociate_time_series_from_asset_property(**kwargs)
generate_presigned_url
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("iotsitewise").generate_presigned_url
method.
boto3 documentation
def generate_presigned_url(
self,
ClientMethod: str,
Params: Mapping[str, Any] = ...,
ExpiresIn: int = 3600,
HttpMethod: str = ...,
) -> str:
...
get_asset_property_aggregates
Gets aggregated values for an asset property.
Type annotations and code completion for boto3.client("iotsitewise").get_asset_property_aggregates
method.
boto3 documentation
def get_asset_property_aggregates(
self,
*,
aggregateTypes: Sequence[AggregateTypeType], # (1)
resolution: str,
startDate: Union[datetime, str],
endDate: Union[datetime, str],
assetId: str = ...,
propertyId: str = ...,
propertyAlias: str = ...,
qualities: Sequence[QualityType] = ..., # (2)
timeOrdering: TimeOrderingType = ..., # (3)
nextToken: str = ...,
maxResults: int = ...,
) -> GetAssetPropertyAggregatesResponseTypeDef: # (4)
...
- See AggregateTypeType
- See QualityType
- See TimeOrderingType
- See GetAssetPropertyAggregatesResponseTypeDef
kwargs: GetAssetPropertyAggregatesRequestRequestTypeDef = { # (1)
"aggregateTypes": ...,
"resolution": ...,
"startDate": ...,
"endDate": ...,
}
parent.get_asset_property_aggregates(**kwargs)
get_asset_property_value
Gets an asset property's current value.
Type annotations and code completion for boto3.client("iotsitewise").get_asset_property_value
method.
boto3 documentation
def get_asset_property_value(
self,
*,
assetId: str = ...,
propertyId: str = ...,
propertyAlias: str = ...,
) -> GetAssetPropertyValueResponseTypeDef: # (1)
...
kwargs: GetAssetPropertyValueRequestRequestTypeDef = { # (1)
"assetId": ...,
}
parent.get_asset_property_value(**kwargs)
get_asset_property_value_history
Gets the history of an asset property's values.
Type annotations and code completion for boto3.client("iotsitewise").get_asset_property_value_history
method.