Skip to content

Type definitions#

Index > IoTSiteWise > Type definitions

Auto-generated documentation for IoTSiteWise type annotations stubs module types-boto3-iotsitewise.

TimestampTypeDef#

# TimestampTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import TimestampTypeDef


def get_value() -> TimestampTypeDef:
    return ...


# TimestampTypeDef definition

TimestampTypeDef = Union[
    datetime,
    str,
]

BlobTypeDef#

# BlobTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import BlobTypeDef


def get_value() -> BlobTypeDef:
    return ...


# BlobTypeDef definition

BlobTypeDef = Union[
    str,
    bytes,
    IO[Any],
    StreamingBody,
]

PortalTypeEntryUnionTypeDef#

# PortalTypeEntryUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import PortalTypeEntryUnionTypeDef


def get_value() -> PortalTypeEntryUnionTypeDef:
    return ...


# PortalTypeEntryUnionTypeDef definition

PortalTypeEntryUnionTypeDef = Union[
    PortalTypeEntryTypeDef,  # (1)
    PortalTypeEntryOutputTypeDef,  # (2)
]
  1. See PortalTypeEntryTypeDef
  2. See PortalTypeEntryOutputTypeDef

VariableValueUnionTypeDef#

# VariableValueUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import VariableValueUnionTypeDef


def get_value() -> VariableValueUnionTypeDef:
    return ...


# VariableValueUnionTypeDef definition

VariableValueUnionTypeDef = Union[
    VariableValueTypeDef,  # (1)
    VariableValueOutputTypeDef,  # (2)
]
  1. See VariableValueTypeDef
  2. See VariableValueOutputTypeDef

JobConfigurationUnionTypeDef#

# JobConfigurationUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import JobConfigurationUnionTypeDef


def get_value() -> JobConfigurationUnionTypeDef:
    return ...


# JobConfigurationUnionTypeDef definition

JobConfigurationUnionTypeDef = Union[
    JobConfigurationTypeDef,  # (1)
    JobConfigurationOutputTypeDef,  # (2)
]
  1. See JobConfigurationTypeDef
  2. See JobConfigurationOutputTypeDef

ExpressionVariableUnionTypeDef#

# ExpressionVariableUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import ExpressionVariableUnionTypeDef


def get_value() -> ExpressionVariableUnionTypeDef:
    return ...


# ExpressionVariableUnionTypeDef definition

ExpressionVariableUnionTypeDef = Union[
    ExpressionVariableTypeDef,  # (1)
    ExpressionVariableOutputTypeDef,  # (2)
]
  1. See ExpressionVariableTypeDef
  2. See ExpressionVariableOutputTypeDef

MetricUnionTypeDef#

# MetricUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import MetricUnionTypeDef


def get_value() -> MetricUnionTypeDef:
    return ...


# MetricUnionTypeDef definition

MetricUnionTypeDef = Union[
    MetricTypeDef,  # (1)
    MetricOutputTypeDef,  # (2)
]
  1. See MetricTypeDef
  2. See MetricOutputTypeDef

TransformUnionTypeDef#

# TransformUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import TransformUnionTypeDef


def get_value() -> TransformUnionTypeDef:
    return ...


# TransformUnionTypeDef definition

TransformUnionTypeDef = Union[
    TransformTypeDef,  # (1)
    TransformOutputTypeDef,  # (2)
]
  1. See TransformTypeDef
  2. See TransformOutputTypeDef

PropertyTypeUnionTypeDef#

# PropertyTypeUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import PropertyTypeUnionTypeDef


def get_value() -> PropertyTypeUnionTypeDef:
    return ...


# PropertyTypeUnionTypeDef definition

PropertyTypeUnionTypeDef = Union[
    PropertyTypeTypeDef,  # (1)
    PropertyTypeOutputTypeDef,  # (2)
]
  1. See PropertyTypeTypeDef
  2. See PropertyTypeOutputTypeDef

AssetModelPropertyUnionTypeDef#

# AssetModelPropertyUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import AssetModelPropertyUnionTypeDef


def get_value() -> AssetModelPropertyUnionTypeDef:
    return ...


# AssetModelPropertyUnionTypeDef definition

AssetModelPropertyUnionTypeDef = Union[
    AssetModelPropertyTypeDef,  # (1)
    AssetModelPropertyOutputTypeDef,  # (2)
]
  1. See AssetModelPropertyTypeDef
  2. See AssetModelPropertyOutputTypeDef

AssetModelCompositeModelUnionTypeDef#

# AssetModelCompositeModelUnionTypeDef Union usage example

from types_boto3_iotsitewise.type_defs import AssetModelCompositeModelUnionTypeDef


def get_value() -> AssetModelCompositeModelUnionTypeDef:
    return ...


# AssetModelCompositeModelUnionTypeDef definition

AssetModelCompositeModelUnionTypeDef = Union[
    AssetModelCompositeModelTypeDef,  # (1)
    AssetModelCompositeModelOutputTypeDef,  # (2)
]
  1. See AssetModelCompositeModelTypeDef
  2. See AssetModelCompositeModelOutputTypeDef

AccessDeniedExceptionTypeDef#

# AccessDeniedExceptionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AccessDeniedExceptionTypeDef


def get_value() -> AccessDeniedExceptionTypeDef:
    return {
        "message": ...,
    }


# AccessDeniedExceptionTypeDef definition

class AccessDeniedExceptionTypeDef(TypedDict):
    message: NotRequired[str],

ActionDefinitionTypeDef#

# ActionDefinitionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ActionDefinitionTypeDef


def get_value() -> ActionDefinitionTypeDef:
    return {
        "actionDefinitionId": ...,
    }


# ActionDefinitionTypeDef definition

class ActionDefinitionTypeDef(TypedDict):
    actionDefinitionId: str,
    actionName: str,
    actionType: str,

ActionPayloadTypeDef#

# ActionPayloadTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ActionPayloadTypeDef


def get_value() -> ActionPayloadTypeDef:
    return {
        "stringValue": ...,
    }


# ActionPayloadTypeDef definition

class ActionPayloadTypeDef(TypedDict):
    stringValue: str,

TargetResourceTypeDef#

# TargetResourceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TargetResourceTypeDef


def get_value() -> TargetResourceTypeDef:
    return {
        "assetId": ...,
    }


# TargetResourceTypeDef definition

class TargetResourceTypeDef(TypedDict):
    assetId: str,

AggregatesTypeDef#

# AggregatesTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AggregatesTypeDef


def get_value() -> AggregatesTypeDef:
    return {
        "average": ...,
    }


# AggregatesTypeDef definition

class AggregatesTypeDef(TypedDict):
    average: NotRequired[float],
    count: NotRequired[float],
    maximum: NotRequired[float],
    minimum: NotRequired[float],
    sum: NotRequired[float],
    standardDeviation: NotRequired[float],

AlarmsTypeDef#

# AlarmsTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AlarmsTypeDef


def get_value() -> AlarmsTypeDef:
    return {
        "alarmRoleArn": ...,
    }


# AlarmsTypeDef definition

class AlarmsTypeDef(TypedDict):
    alarmRoleArn: str,
    notificationLambdaArn: NotRequired[str],

AssetCompositeModelPathSegmentTypeDef#

# AssetCompositeModelPathSegmentTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetCompositeModelPathSegmentTypeDef


def get_value() -> AssetCompositeModelPathSegmentTypeDef:
    return {
        "id": ...,
    }


# AssetCompositeModelPathSegmentTypeDef definition

class AssetCompositeModelPathSegmentTypeDef(TypedDict):
    id: NotRequired[str],
    name: NotRequired[str],

AssetErrorDetailsTypeDef#

# AssetErrorDetailsTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetErrorDetailsTypeDef


def get_value() -> AssetErrorDetailsTypeDef:
    return {
        "assetId": ...,
    }


# AssetErrorDetailsTypeDef definition

class AssetErrorDetailsTypeDef(TypedDict):
    assetId: str,
    code: AssetErrorCodeType,  # (1)
    message: str,
  1. See AssetErrorCodeType

AssetHierarchyInfoTypeDef#

# AssetHierarchyInfoTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetHierarchyInfoTypeDef


def get_value() -> AssetHierarchyInfoTypeDef:
    return {
        "parentAssetId": ...,
    }


# AssetHierarchyInfoTypeDef definition

class AssetHierarchyInfoTypeDef(TypedDict):
    parentAssetId: NotRequired[str],
    childAssetId: NotRequired[str],

AssetHierarchyTypeDef#

# AssetHierarchyTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetHierarchyTypeDef


def get_value() -> AssetHierarchyTypeDef:
    return {
        "id": ...,
    }


# AssetHierarchyTypeDef definition

class AssetHierarchyTypeDef(TypedDict):
    name: str,
    id: NotRequired[str],
    externalId: NotRequired[str],

AssetModelCompositeModelPathSegmentTypeDef#

# AssetModelCompositeModelPathSegmentTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelCompositeModelPathSegmentTypeDef


def get_value() -> AssetModelCompositeModelPathSegmentTypeDef:
    return {
        "id": ...,
    }


# AssetModelCompositeModelPathSegmentTypeDef definition

class AssetModelCompositeModelPathSegmentTypeDef(TypedDict):
    id: NotRequired[str],
    name: NotRequired[str],

AssetModelHierarchyDefinitionTypeDef#

# AssetModelHierarchyDefinitionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelHierarchyDefinitionTypeDef


def get_value() -> AssetModelHierarchyDefinitionTypeDef:
    return {
        "id": ...,
    }


# AssetModelHierarchyDefinitionTypeDef definition

class AssetModelHierarchyDefinitionTypeDef(TypedDict):
    name: str,
    childAssetModelId: str,
    id: NotRequired[str],
    externalId: NotRequired[str],

AssetModelHierarchyTypeDef#

# AssetModelHierarchyTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelHierarchyTypeDef


def get_value() -> AssetModelHierarchyTypeDef:
    return {
        "id": ...,
    }


# AssetModelHierarchyTypeDef definition

class AssetModelHierarchyTypeDef(TypedDict):
    name: str,
    childAssetModelId: str,
    id: NotRequired[str],
    externalId: NotRequired[str],

AssetModelPropertyPathSegmentTypeDef#

# AssetModelPropertyPathSegmentTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelPropertyPathSegmentTypeDef


def get_value() -> AssetModelPropertyPathSegmentTypeDef:
    return {
        "id": ...,
    }


# AssetModelPropertyPathSegmentTypeDef definition

class AssetModelPropertyPathSegmentTypeDef(TypedDict):
    id: NotRequired[str],
    name: NotRequired[str],

AssetPropertyPathSegmentTypeDef#

# AssetPropertyPathSegmentTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetPropertyPathSegmentTypeDef


def get_value() -> AssetPropertyPathSegmentTypeDef:
    return {
        "id": ...,
    }


# AssetPropertyPathSegmentTypeDef definition

class AssetPropertyPathSegmentTypeDef(TypedDict):
    id: NotRequired[str],
    name: NotRequired[str],

PropertyNotificationTypeDef#

# PropertyNotificationTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PropertyNotificationTypeDef


def get_value() -> PropertyNotificationTypeDef:
    return {
        "topic": ...,
    }


# PropertyNotificationTypeDef definition

class PropertyNotificationTypeDef(TypedDict):
    topic: str,
    state: PropertyNotificationStateType,  # (1)
  1. See PropertyNotificationStateType

TimeInNanosTypeDef#

# TimeInNanosTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TimeInNanosTypeDef


def get_value() -> TimeInNanosTypeDef:
    return {
        "timeInSeconds": ...,
    }


# TimeInNanosTypeDef definition

class TimeInNanosTypeDef(TypedDict):
    timeInSeconds: int,
    offsetInNanos: NotRequired[int],

AssociateAssetsRequestTypeDef#

# AssociateAssetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssociateAssetsRequestTypeDef


def get_value() -> AssociateAssetsRequestTypeDef:
    return {
        "assetId": ...,
    }


# AssociateAssetsRequestTypeDef definition

class AssociateAssetsRequestTypeDef(TypedDict):
    assetId: str,
    hierarchyId: str,
    childAssetId: str,
    clientToken: NotRequired[str],

AssociateTimeSeriesToAssetPropertyRequestTypeDef#

# AssociateTimeSeriesToAssetPropertyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssociateTimeSeriesToAssetPropertyRequestTypeDef


def get_value() -> AssociateTimeSeriesToAssetPropertyRequestTypeDef:
    return {
        "alias": ...,
    }


# AssociateTimeSeriesToAssetPropertyRequestTypeDef definition

class AssociateTimeSeriesToAssetPropertyRequestTypeDef(TypedDict):
    alias: str,
    assetId: str,
    propertyId: str,
    clientToken: NotRequired[str],

AttributeTypeDef#

# AttributeTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AttributeTypeDef


def get_value() -> AttributeTypeDef:
    return {
        "defaultValue": ...,
    }


# AttributeTypeDef definition

class AttributeTypeDef(TypedDict):
    defaultValue: NotRequired[str],

BatchAssociateProjectAssetsRequestTypeDef#

# BatchAssociateProjectAssetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchAssociateProjectAssetsRequestTypeDef


def get_value() -> BatchAssociateProjectAssetsRequestTypeDef:
    return {
        "projectId": ...,
    }


# BatchAssociateProjectAssetsRequestTypeDef definition

class BatchAssociateProjectAssetsRequestTypeDef(TypedDict):
    projectId: str,
    assetIds: Sequence[str],
    clientToken: NotRequired[str],

ResponseMetadataTypeDef#

# ResponseMetadataTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ResponseMetadataTypeDef


def get_value() -> ResponseMetadataTypeDef:
    return {
        "RequestId": ...,
    }


# ResponseMetadataTypeDef definition

class ResponseMetadataTypeDef(TypedDict):
    RequestId: str,
    HTTPStatusCode: int,
    HTTPHeaders: Dict[str, str],
    RetryAttempts: int,
    HostId: NotRequired[str],

BatchDisassociateProjectAssetsRequestTypeDef#

# BatchDisassociateProjectAssetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchDisassociateProjectAssetsRequestTypeDef


def get_value() -> BatchDisassociateProjectAssetsRequestTypeDef:
    return {
        "projectId": ...,
    }


# BatchDisassociateProjectAssetsRequestTypeDef definition

class BatchDisassociateProjectAssetsRequestTypeDef(TypedDict):
    projectId: str,
    assetIds: Sequence[str],
    clientToken: NotRequired[str],

BatchGetAssetPropertyAggregatesErrorEntryTypeDef#

# BatchGetAssetPropertyAggregatesErrorEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyAggregatesErrorEntryTypeDef


def get_value() -> BatchGetAssetPropertyAggregatesErrorEntryTypeDef:
    return {
        "errorCode": ...,
    }


# BatchGetAssetPropertyAggregatesErrorEntryTypeDef definition

class BatchGetAssetPropertyAggregatesErrorEntryTypeDef(TypedDict):
    errorCode: BatchGetAssetPropertyAggregatesErrorCodeType,  # (1)
    errorMessage: str,
    entryId: str,
  1. See BatchGetAssetPropertyAggregatesErrorCodeType

BatchGetAssetPropertyAggregatesErrorInfoTypeDef#

# BatchGetAssetPropertyAggregatesErrorInfoTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyAggregatesErrorInfoTypeDef


def get_value() -> BatchGetAssetPropertyAggregatesErrorInfoTypeDef:
    return {
        "errorCode": ...,
    }


# BatchGetAssetPropertyAggregatesErrorInfoTypeDef definition

class BatchGetAssetPropertyAggregatesErrorInfoTypeDef(TypedDict):
    errorCode: BatchGetAssetPropertyAggregatesErrorCodeType,  # (1)
    errorTimestamp: datetime,
  1. See BatchGetAssetPropertyAggregatesErrorCodeType

BatchGetAssetPropertyValueEntryTypeDef#

# BatchGetAssetPropertyValueEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyValueEntryTypeDef definition

class BatchGetAssetPropertyValueEntryTypeDef(TypedDict):
    entryId: str,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],

BatchGetAssetPropertyValueErrorEntryTypeDef#

# BatchGetAssetPropertyValueErrorEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueErrorEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueErrorEntryTypeDef:
    return {
        "errorCode": ...,
    }


# BatchGetAssetPropertyValueErrorEntryTypeDef definition

class BatchGetAssetPropertyValueErrorEntryTypeDef(TypedDict):
    errorCode: BatchGetAssetPropertyValueErrorCodeType,  # (1)
    errorMessage: str,
    entryId: str,
  1. See BatchGetAssetPropertyValueErrorCodeType

BatchGetAssetPropertyValueErrorInfoTypeDef#

# BatchGetAssetPropertyValueErrorInfoTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueErrorInfoTypeDef


def get_value() -> BatchGetAssetPropertyValueErrorInfoTypeDef:
    return {
        "errorCode": ...,
    }


# BatchGetAssetPropertyValueErrorInfoTypeDef definition

class BatchGetAssetPropertyValueErrorInfoTypeDef(TypedDict):
    errorCode: BatchGetAssetPropertyValueErrorCodeType,  # (1)
    errorTimestamp: datetime,
  1. See BatchGetAssetPropertyValueErrorCodeType

BatchGetAssetPropertyValueHistoryErrorEntryTypeDef#

# BatchGetAssetPropertyValueHistoryErrorEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueHistoryErrorEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueHistoryErrorEntryTypeDef:
    return {
        "errorCode": ...,
    }


# BatchGetAssetPropertyValueHistoryErrorEntryTypeDef definition

class BatchGetAssetPropertyValueHistoryErrorEntryTypeDef(TypedDict):
    errorCode: BatchGetAssetPropertyValueHistoryErrorCodeType,  # (1)
    errorMessage: str,
    entryId: str,
  1. See BatchGetAssetPropertyValueHistoryErrorCodeType

BatchGetAssetPropertyValueHistoryErrorInfoTypeDef#

# BatchGetAssetPropertyValueHistoryErrorInfoTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueHistoryErrorInfoTypeDef


def get_value() -> BatchGetAssetPropertyValueHistoryErrorInfoTypeDef:
    return {
        "errorCode": ...,
    }


# BatchGetAssetPropertyValueHistoryErrorInfoTypeDef definition

class BatchGetAssetPropertyValueHistoryErrorInfoTypeDef(TypedDict):
    errorCode: BatchGetAssetPropertyValueHistoryErrorCodeType,  # (1)
    errorTimestamp: datetime,
  1. See BatchGetAssetPropertyValueHistoryErrorCodeType

ContentTypeDef#

# ContentTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ContentTypeDef


def get_value() -> ContentTypeDef:
    return {
        "text": ...,
    }


# ContentTypeDef definition

class ContentTypeDef(TypedDict):
    text: NotRequired[str],

ColumnTypeTypeDef#

# ColumnTypeTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ColumnTypeTypeDef


def get_value() -> ColumnTypeTypeDef:
    return {
        "scalarType": ...,
    }


# ColumnTypeTypeDef definition

class ColumnTypeTypeDef(TypedDict):
    scalarType: NotRequired[ScalarTypeType],  # (1)
  1. See ScalarTypeType

CompositionRelationshipItemTypeDef#

# CompositionRelationshipItemTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CompositionRelationshipItemTypeDef


def get_value() -> CompositionRelationshipItemTypeDef:
    return {
        "id": ...,
    }


# CompositionRelationshipItemTypeDef definition

class CompositionRelationshipItemTypeDef(TypedDict):
    id: NotRequired[str],

CompositionRelationshipSummaryTypeDef#

# CompositionRelationshipSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CompositionRelationshipSummaryTypeDef


def get_value() -> CompositionRelationshipSummaryTypeDef:
    return {
        "assetModelId": ...,
    }


# CompositionRelationshipSummaryTypeDef definition

class CompositionRelationshipSummaryTypeDef(TypedDict):
    assetModelId: str,
    assetModelCompositeModelId: str,
    assetModelCompositeModelType: str,

ConfigurationErrorDetailsTypeDef#

# ConfigurationErrorDetailsTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ConfigurationErrorDetailsTypeDef


def get_value() -> ConfigurationErrorDetailsTypeDef:
    return {
        "code": ...,
    }


# ConfigurationErrorDetailsTypeDef definition

class ConfigurationErrorDetailsTypeDef(TypedDict):
    code: ErrorCodeType,  # (1)
    message: str,
  1. See ErrorCodeType

ConflictingOperationExceptionTypeDef#

# ConflictingOperationExceptionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ConflictingOperationExceptionTypeDef


def get_value() -> ConflictingOperationExceptionTypeDef:
    return {
        "message": ...,
    }


# ConflictingOperationExceptionTypeDef definition

class ConflictingOperationExceptionTypeDef(TypedDict):
    message: str,
    resourceId: str,
    resourceArn: str,

CreateAssetRequestTypeDef#

# CreateAssetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAssetRequestTypeDef


def get_value() -> CreateAssetRequestTypeDef:
    return {
        "assetName": ...,
    }


# CreateAssetRequestTypeDef definition

class CreateAssetRequestTypeDef(TypedDict):
    assetName: str,
    assetModelId: str,
    clientToken: NotRequired[str],
    tags: NotRequired[Mapping[str, str]],
    assetDescription: NotRequired[str],
    assetId: NotRequired[str],
    assetExternalId: NotRequired[str],

ErrorReportLocationTypeDef#

# ErrorReportLocationTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ErrorReportLocationTypeDef


def get_value() -> ErrorReportLocationTypeDef:
    return {
        "bucket": ...,
    }


# ErrorReportLocationTypeDef definition

class ErrorReportLocationTypeDef(TypedDict):
    bucket: str,
    prefix: str,

FileTypeDef#

# FileTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import FileTypeDef


def get_value() -> FileTypeDef:
    return {
        "bucket": ...,
    }


# FileTypeDef definition

class FileTypeDef(TypedDict):
    bucket: str,
    key: str,
    versionId: NotRequired[str],

CreateDashboardRequestTypeDef#

# CreateDashboardRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateDashboardRequestTypeDef


def get_value() -> CreateDashboardRequestTypeDef:
    return {
        "projectId": ...,
    }


# CreateDashboardRequestTypeDef definition

class CreateDashboardRequestTypeDef(TypedDict):
    projectId: str,
    dashboardName: str,
    dashboardDefinition: str,
    dashboardDescription: NotRequired[str],
    clientToken: NotRequired[str],
    tags: NotRequired[Mapping[str, str]],

CreateProjectRequestTypeDef#

# CreateProjectRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateProjectRequestTypeDef


def get_value() -> CreateProjectRequestTypeDef:
    return {
        "portalId": ...,
    }


# CreateProjectRequestTypeDef definition

class CreateProjectRequestTypeDef(TypedDict):
    portalId: str,
    projectName: str,
    projectDescription: NotRequired[str],
    clientToken: NotRequired[str],
    tags: NotRequired[Mapping[str, str]],

CsvOutputTypeDef#

# CsvOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CsvOutputTypeDef


def get_value() -> CsvOutputTypeDef:
    return {
        "columnNames": ...,
    }


# CsvOutputTypeDef definition

class CsvOutputTypeDef(TypedDict):
    columnNames: List[ColumnNameType],  # (1)
  1. See ColumnNameType

CsvTypeDef#

# CsvTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CsvTypeDef


def get_value() -> CsvTypeDef:
    return {
        "columnNames": ...,
    }


# CsvTypeDef definition

class CsvTypeDef(TypedDict):
    columnNames: Sequence[ColumnNameType],  # (1)
  1. See ColumnNameType

CustomerManagedS3StorageTypeDef#

# CustomerManagedS3StorageTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CustomerManagedS3StorageTypeDef


def get_value() -> CustomerManagedS3StorageTypeDef:
    return {
        "s3ResourceArn": ...,
    }


# CustomerManagedS3StorageTypeDef definition

class CustomerManagedS3StorageTypeDef(TypedDict):
    s3ResourceArn: str,
    roleArn: str,

DashboardSummaryTypeDef#

# DashboardSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DashboardSummaryTypeDef


def get_value() -> DashboardSummaryTypeDef:
    return {
        "id": ...,
    }


# DashboardSummaryTypeDef definition

class DashboardSummaryTypeDef(TypedDict):
    id: str,
    name: str,
    description: NotRequired[str],
    creationDate: NotRequired[datetime],
    lastUpdateDate: NotRequired[datetime],

DatumPaginatorTypeDef#

# DatumPaginatorTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DatumPaginatorTypeDef


def get_value() -> DatumPaginatorTypeDef:
    return {
        "scalarValue": ...,
    }


# DatumPaginatorTypeDef definition

class DatumPaginatorTypeDef(TypedDict):
    scalarValue: NotRequired[str],
    arrayValue: NotRequired[List[Dict[str, Any]]],
    rowValue: NotRequired[Dict[str, Any]],
    nullValue: NotRequired[bool],

DatumTypeDef#

# DatumTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DatumTypeDef


def get_value() -> DatumTypeDef:
    return {
        "scalarValue": ...,
    }


# DatumTypeDef definition

class DatumTypeDef(TypedDict):
    scalarValue: NotRequired[str],
    arrayValue: NotRequired[List[Dict[str, Any]]],
    rowValue: NotRequired[Dict[str, Any]],
    nullValue: NotRequired[bool],

DatumWaiterTypeDef#

# DatumWaiterTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DatumWaiterTypeDef


def get_value() -> DatumWaiterTypeDef:
    return {
        "scalarValue": ...,
    }


# DatumWaiterTypeDef definition

class DatumWaiterTypeDef(TypedDict):
    scalarValue: NotRequired[str],
    arrayValue: NotRequired[List[Dict[str, Any]]],
    rowValue: NotRequired[Dict[str, Any]],
    nullValue: NotRequired[bool],

DeleteAccessPolicyRequestTypeDef#

# DeleteAccessPolicyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteAccessPolicyRequestTypeDef


def get_value() -> DeleteAccessPolicyRequestTypeDef:
    return {
        "accessPolicyId": ...,
    }


# DeleteAccessPolicyRequestTypeDef definition

class DeleteAccessPolicyRequestTypeDef(TypedDict):
    accessPolicyId: str,
    clientToken: NotRequired[str],

DeleteAssetModelCompositeModelRequestTypeDef#

# DeleteAssetModelCompositeModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteAssetModelCompositeModelRequestTypeDef


def get_value() -> DeleteAssetModelCompositeModelRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# DeleteAssetModelCompositeModelRequestTypeDef definition

class DeleteAssetModelCompositeModelRequestTypeDef(TypedDict):
    assetModelId: str,
    assetModelCompositeModelId: str,
    clientToken: NotRequired[str],
    ifMatch: NotRequired[str],
    ifNoneMatch: NotRequired[str],
    matchForVersionType: NotRequired[AssetModelVersionTypeType],  # (1)
  1. See AssetModelVersionTypeType

DeleteAssetModelRequestTypeDef#

# DeleteAssetModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteAssetModelRequestTypeDef


def get_value() -> DeleteAssetModelRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# DeleteAssetModelRequestTypeDef definition

class DeleteAssetModelRequestTypeDef(TypedDict):
    assetModelId: str,
    clientToken: NotRequired[str],
    ifMatch: NotRequired[str],
    ifNoneMatch: NotRequired[str],
    matchForVersionType: NotRequired[AssetModelVersionTypeType],  # (1)
  1. See AssetModelVersionTypeType

DeleteAssetRequestTypeDef#

# DeleteAssetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteAssetRequestTypeDef


def get_value() -> DeleteAssetRequestTypeDef:
    return {
        "assetId": ...,
    }


# DeleteAssetRequestTypeDef definition

class DeleteAssetRequestTypeDef(TypedDict):
    assetId: str,
    clientToken: NotRequired[str],

DeleteDashboardRequestTypeDef#

# DeleteDashboardRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteDashboardRequestTypeDef


def get_value() -> DeleteDashboardRequestTypeDef:
    return {
        "dashboardId": ...,
    }


# DeleteDashboardRequestTypeDef definition

class DeleteDashboardRequestTypeDef(TypedDict):
    dashboardId: str,
    clientToken: NotRequired[str],

DeleteDatasetRequestTypeDef#

# DeleteDatasetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteDatasetRequestTypeDef


def get_value() -> DeleteDatasetRequestTypeDef:
    return {
        "datasetId": ...,
    }


# DeleteDatasetRequestTypeDef definition

class DeleteDatasetRequestTypeDef(TypedDict):
    datasetId: str,
    clientToken: NotRequired[str],

DeleteGatewayRequestTypeDef#

# DeleteGatewayRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteGatewayRequestTypeDef


def get_value() -> DeleteGatewayRequestTypeDef:
    return {
        "gatewayId": ...,
    }


# DeleteGatewayRequestTypeDef definition

class DeleteGatewayRequestTypeDef(TypedDict):
    gatewayId: str,

DeletePortalRequestTypeDef#

# DeletePortalRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeletePortalRequestTypeDef


def get_value() -> DeletePortalRequestTypeDef:
    return {
        "portalId": ...,
    }


# DeletePortalRequestTypeDef definition

class DeletePortalRequestTypeDef(TypedDict):
    portalId: str,
    clientToken: NotRequired[str],

DeleteProjectRequestTypeDef#

# DeleteProjectRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteProjectRequestTypeDef


def get_value() -> DeleteProjectRequestTypeDef:
    return {
        "projectId": ...,
    }


# DeleteProjectRequestTypeDef definition

class DeleteProjectRequestTypeDef(TypedDict):
    projectId: str,
    clientToken: NotRequired[str],

DeleteTimeSeriesRequestTypeDef#

# DeleteTimeSeriesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteTimeSeriesRequestTypeDef


def get_value() -> DeleteTimeSeriesRequestTypeDef:
    return {
        "alias": ...,
    }


# DeleteTimeSeriesRequestTypeDef definition

class DeleteTimeSeriesRequestTypeDef(TypedDict):
    alias: NotRequired[str],
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    clientToken: NotRequired[str],

DescribeAccessPolicyRequestTypeDef#

# DescribeAccessPolicyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAccessPolicyRequestTypeDef


def get_value() -> DescribeAccessPolicyRequestTypeDef:
    return {
        "accessPolicyId": ...,
    }


# DescribeAccessPolicyRequestTypeDef definition

class DescribeAccessPolicyRequestTypeDef(TypedDict):
    accessPolicyId: str,

DescribeActionRequestTypeDef#

# DescribeActionRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeActionRequestTypeDef


def get_value() -> DescribeActionRequestTypeDef:
    return {
        "actionId": ...,
    }


# DescribeActionRequestTypeDef definition

class DescribeActionRequestTypeDef(TypedDict):
    actionId: str,

DescribeAssetCompositeModelRequestTypeDef#

# DescribeAssetCompositeModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetCompositeModelRequestTypeDef


def get_value() -> DescribeAssetCompositeModelRequestTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetCompositeModelRequestTypeDef definition

class DescribeAssetCompositeModelRequestTypeDef(TypedDict):
    assetId: str,
    assetCompositeModelId: str,

DescribeAssetModelCompositeModelRequestTypeDef#

# DescribeAssetModelCompositeModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetModelCompositeModelRequestTypeDef


def get_value() -> DescribeAssetModelCompositeModelRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# DescribeAssetModelCompositeModelRequestTypeDef definition

class DescribeAssetModelCompositeModelRequestTypeDef(TypedDict):
    assetModelId: str,
    assetModelCompositeModelId: str,
    assetModelVersion: NotRequired[str],

DescribeAssetModelRequestTypeDef#

# DescribeAssetModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetModelRequestTypeDef


def get_value() -> DescribeAssetModelRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# DescribeAssetModelRequestTypeDef definition

class DescribeAssetModelRequestTypeDef(TypedDict):
    assetModelId: str,
    excludeProperties: NotRequired[bool],
    assetModelVersion: NotRequired[str],

WaiterConfigTypeDef#

# WaiterConfigTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import WaiterConfigTypeDef


def get_value() -> WaiterConfigTypeDef:
    return {
        "Delay": ...,
    }


# WaiterConfigTypeDef definition

class WaiterConfigTypeDef(TypedDict):
    Delay: NotRequired[int],
    MaxAttempts: NotRequired[int],

DescribeAssetPropertyRequestTypeDef#

# DescribeAssetPropertyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetPropertyRequestTypeDef


def get_value() -> DescribeAssetPropertyRequestTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetPropertyRequestTypeDef definition

class DescribeAssetPropertyRequestTypeDef(TypedDict):
    assetId: str,
    propertyId: str,

DescribeAssetRequestTypeDef#

# DescribeAssetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetRequestTypeDef


def get_value() -> DescribeAssetRequestTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetRequestTypeDef definition

class DescribeAssetRequestTypeDef(TypedDict):
    assetId: str,
    excludeProperties: NotRequired[bool],

DescribeBulkImportJobRequestTypeDef#

# DescribeBulkImportJobRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeBulkImportJobRequestTypeDef


def get_value() -> DescribeBulkImportJobRequestTypeDef:
    return {
        "jobId": ...,
    }


# DescribeBulkImportJobRequestTypeDef definition

class DescribeBulkImportJobRequestTypeDef(TypedDict):
    jobId: str,

DescribeDashboardRequestTypeDef#

# DescribeDashboardRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeDashboardRequestTypeDef


def get_value() -> DescribeDashboardRequestTypeDef:
    return {
        "dashboardId": ...,
    }


# DescribeDashboardRequestTypeDef definition

class DescribeDashboardRequestTypeDef(TypedDict):
    dashboardId: str,

DescribeDatasetRequestTypeDef#

# DescribeDatasetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeDatasetRequestTypeDef


def get_value() -> DescribeDatasetRequestTypeDef:
    return {
        "datasetId": ...,
    }


# DescribeDatasetRequestTypeDef definition

class DescribeDatasetRequestTypeDef(TypedDict):
    datasetId: str,

DescribeGatewayCapabilityConfigurationRequestTypeDef#

# DescribeGatewayCapabilityConfigurationRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeGatewayCapabilityConfigurationRequestTypeDef


def get_value() -> DescribeGatewayCapabilityConfigurationRequestTypeDef:
    return {
        "gatewayId": ...,
    }


# DescribeGatewayCapabilityConfigurationRequestTypeDef definition

class DescribeGatewayCapabilityConfigurationRequestTypeDef(TypedDict):
    gatewayId: str,
    capabilityNamespace: str,

DescribeGatewayRequestTypeDef#

# DescribeGatewayRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeGatewayRequestTypeDef


def get_value() -> DescribeGatewayRequestTypeDef:
    return {
        "gatewayId": ...,
    }


# DescribeGatewayRequestTypeDef definition

class DescribeGatewayRequestTypeDef(TypedDict):
    gatewayId: str,

GatewayCapabilitySummaryTypeDef#

# GatewayCapabilitySummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GatewayCapabilitySummaryTypeDef


def get_value() -> GatewayCapabilitySummaryTypeDef:
    return {
        "capabilityNamespace": ...,
    }


# GatewayCapabilitySummaryTypeDef definition

class GatewayCapabilitySummaryTypeDef(TypedDict):
    capabilityNamespace: str,
    capabilitySyncStatus: CapabilitySyncStatusType,  # (1)
  1. See CapabilitySyncStatusType

LoggingOptionsTypeDef#

# LoggingOptionsTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import LoggingOptionsTypeDef


def get_value() -> LoggingOptionsTypeDef:
    return {
        "level": ...,
    }


# LoggingOptionsTypeDef definition

class LoggingOptionsTypeDef(TypedDict):
    level: LoggingLevelType,  # (1)
  1. See LoggingLevelType

DescribePortalRequestTypeDef#

# DescribePortalRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribePortalRequestTypeDef


def get_value() -> DescribePortalRequestTypeDef:
    return {
        "portalId": ...,
    }


# DescribePortalRequestTypeDef definition

class DescribePortalRequestTypeDef(TypedDict):
    portalId: str,

ImageLocationTypeDef#

# ImageLocationTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ImageLocationTypeDef


def get_value() -> ImageLocationTypeDef:
    return {
        "id": ...,
    }


# ImageLocationTypeDef definition

class ImageLocationTypeDef(TypedDict):
    id: str,
    url: str,

PortalTypeEntryOutputTypeDef#

# PortalTypeEntryOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PortalTypeEntryOutputTypeDef


def get_value() -> PortalTypeEntryOutputTypeDef:
    return {
        "portalTools": ...,
    }


# PortalTypeEntryOutputTypeDef definition

class PortalTypeEntryOutputTypeDef(TypedDict):
    portalTools: NotRequired[List[str]],

DescribeProjectRequestTypeDef#

# DescribeProjectRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeProjectRequestTypeDef


def get_value() -> DescribeProjectRequestTypeDef:
    return {
        "projectId": ...,
    }


# DescribeProjectRequestTypeDef definition

class DescribeProjectRequestTypeDef(TypedDict):
    projectId: str,

RetentionPeriodTypeDef#

# RetentionPeriodTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import RetentionPeriodTypeDef


def get_value() -> RetentionPeriodTypeDef:
    return {
        "numberOfDays": ...,
    }


# RetentionPeriodTypeDef definition

class RetentionPeriodTypeDef(TypedDict):
    numberOfDays: NotRequired[int],
    unlimited: NotRequired[bool],

WarmTierRetentionPeriodTypeDef#

# WarmTierRetentionPeriodTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import WarmTierRetentionPeriodTypeDef


def get_value() -> WarmTierRetentionPeriodTypeDef:
    return {
        "numberOfDays": ...,
    }


# WarmTierRetentionPeriodTypeDef definition

class WarmTierRetentionPeriodTypeDef(TypedDict):
    numberOfDays: NotRequired[int],
    unlimited: NotRequired[bool],

DescribeTimeSeriesRequestTypeDef#

# DescribeTimeSeriesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeTimeSeriesRequestTypeDef


def get_value() -> DescribeTimeSeriesRequestTypeDef:
    return {
        "alias": ...,
    }


# DescribeTimeSeriesRequestTypeDef definition

class DescribeTimeSeriesRequestTypeDef(TypedDict):
    alias: NotRequired[str],
    assetId: NotRequired[str],
    propertyId: NotRequired[str],

DetailedErrorTypeDef#

# DetailedErrorTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DetailedErrorTypeDef


def get_value() -> DetailedErrorTypeDef:
    return {
        "code": ...,
    }


# DetailedErrorTypeDef definition

class DetailedErrorTypeDef(TypedDict):
    code: DetailedErrorCodeType,  # (1)
    message: str,
  1. See DetailedErrorCodeType

DisassociateAssetsRequestTypeDef#

# DisassociateAssetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DisassociateAssetsRequestTypeDef


def get_value() -> DisassociateAssetsRequestTypeDef:
    return {
        "assetId": ...,
    }


# DisassociateAssetsRequestTypeDef definition

class DisassociateAssetsRequestTypeDef(TypedDict):
    assetId: str,
    hierarchyId: str,
    childAssetId: str,
    clientToken: NotRequired[str],

DisassociateTimeSeriesFromAssetPropertyRequestTypeDef#

# DisassociateTimeSeriesFromAssetPropertyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DisassociateTimeSeriesFromAssetPropertyRequestTypeDef


def get_value() -> DisassociateTimeSeriesFromAssetPropertyRequestTypeDef:
    return {
        "alias": ...,
    }


# DisassociateTimeSeriesFromAssetPropertyRequestTypeDef definition

class DisassociateTimeSeriesFromAssetPropertyRequestTypeDef(TypedDict):
    alias: str,
    assetId: str,
    propertyId: str,
    clientToken: NotRequired[str],

PaginatorConfigTypeDef#

# PaginatorConfigTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PaginatorConfigTypeDef


def get_value() -> PaginatorConfigTypeDef:
    return {
        "MaxItems": ...,
    }


# PaginatorConfigTypeDef definition

class PaginatorConfigTypeDef(TypedDict):
    MaxItems: NotRequired[int],
    PageSize: NotRequired[int],
    StartingToken: NotRequired[str],

ExecuteQueryRequestTypeDef#

# ExecuteQueryRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExecuteQueryRequestTypeDef


def get_value() -> ExecuteQueryRequestTypeDef:
    return {
        "queryStatement": ...,
    }


# ExecuteQueryRequestTypeDef definition

class ExecuteQueryRequestTypeDef(TypedDict):
    queryStatement: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    clientToken: NotRequired[str],

ForwardingConfigTypeDef#

# ForwardingConfigTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ForwardingConfigTypeDef


def get_value() -> ForwardingConfigTypeDef:
    return {
        "state": ...,
    }


# ForwardingConfigTypeDef definition

class ForwardingConfigTypeDef(TypedDict):
    state: ForwardingConfigStateType,  # (1)
  1. See ForwardingConfigStateType

GreengrassTypeDef#

# GreengrassTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GreengrassTypeDef


def get_value() -> GreengrassTypeDef:
    return {
        "groupArn": ...,
    }


# GreengrassTypeDef definition

class GreengrassTypeDef(TypedDict):
    groupArn: str,

GreengrassV2TypeDef#

# GreengrassV2TypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GreengrassV2TypeDef


def get_value() -> GreengrassV2TypeDef:
    return {
        "coreDeviceThingName": ...,
    }


# GreengrassV2TypeDef definition

class GreengrassV2TypeDef(TypedDict):
    coreDeviceThingName: str,

SiemensIETypeDef#

# SiemensIETypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import SiemensIETypeDef


def get_value() -> SiemensIETypeDef:
    return {
        "iotCoreThingName": ...,
    }


# SiemensIETypeDef definition

class SiemensIETypeDef(TypedDict):
    iotCoreThingName: str,

GetAssetPropertyValueRequestTypeDef#

# GetAssetPropertyValueRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyValueRequestTypeDef


def get_value() -> GetAssetPropertyValueRequestTypeDef:
    return {
        "assetId": ...,
    }


# GetAssetPropertyValueRequestTypeDef definition

class GetAssetPropertyValueRequestTypeDef(TypedDict):
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],

GetInterpolatedAssetPropertyValuesRequestTypeDef#

# GetInterpolatedAssetPropertyValuesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetInterpolatedAssetPropertyValuesRequestTypeDef


def get_value() -> GetInterpolatedAssetPropertyValuesRequestTypeDef:
    return {
        "startTimeInSeconds": ...,
    }


# GetInterpolatedAssetPropertyValuesRequestTypeDef definition

class GetInterpolatedAssetPropertyValuesRequestTypeDef(TypedDict):
    startTimeInSeconds: int,
    endTimeInSeconds: int,
    quality: QualityType,  # (1)
    intervalInSeconds: int,
    type: str,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    startTimeOffsetInNanos: NotRequired[int],
    endTimeOffsetInNanos: NotRequired[int],
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    intervalWindowInSeconds: NotRequired[int],
  1. See QualityType

GroupIdentityTypeDef#

# GroupIdentityTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GroupIdentityTypeDef


def get_value() -> GroupIdentityTypeDef:
    return {
        "id": ...,
    }


# GroupIdentityTypeDef definition

class GroupIdentityTypeDef(TypedDict):
    id: str,

IAMRoleIdentityTypeDef#

# IAMRoleIdentityTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import IAMRoleIdentityTypeDef


def get_value() -> IAMRoleIdentityTypeDef:
    return {
        "arn": ...,
    }


# IAMRoleIdentityTypeDef definition

class IAMRoleIdentityTypeDef(TypedDict):
    arn: str,

IAMUserIdentityTypeDef#

# IAMUserIdentityTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import IAMUserIdentityTypeDef


def get_value() -> IAMUserIdentityTypeDef:
    return {
        "arn": ...,
    }


# IAMUserIdentityTypeDef definition

class IAMUserIdentityTypeDef(TypedDict):
    arn: str,

UserIdentityTypeDef#

# UserIdentityTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UserIdentityTypeDef


def get_value() -> UserIdentityTypeDef:
    return {
        "id": ...,
    }


# UserIdentityTypeDef definition

class UserIdentityTypeDef(TypedDict):
    id: str,

InternalFailureExceptionTypeDef#

# InternalFailureExceptionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import InternalFailureExceptionTypeDef


def get_value() -> InternalFailureExceptionTypeDef:
    return {
        "message": ...,
    }


# InternalFailureExceptionTypeDef definition

class InternalFailureExceptionTypeDef(TypedDict):
    message: str,

InvalidRequestExceptionTypeDef#

# InvalidRequestExceptionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import InvalidRequestExceptionTypeDef


def get_value() -> InvalidRequestExceptionTypeDef:
    return {
        "message": ...,
    }


# InvalidRequestExceptionTypeDef definition

class InvalidRequestExceptionTypeDef(TypedDict):
    message: str,

InvokeAssistantRequestTypeDef#

# InvokeAssistantRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import InvokeAssistantRequestTypeDef


def get_value() -> InvokeAssistantRequestTypeDef:
    return {
        "message": ...,
    }


# InvokeAssistantRequestTypeDef definition

class InvokeAssistantRequestTypeDef(TypedDict):
    message: str,
    conversationId: NotRequired[str],
    enableTrace: NotRequired[bool],

JobSummaryTypeDef#

# JobSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import JobSummaryTypeDef


def get_value() -> JobSummaryTypeDef:
    return {
        "id": ...,
    }


# JobSummaryTypeDef definition

class JobSummaryTypeDef(TypedDict):
    id: str,
    name: str,
    status: JobStatusType,  # (1)
  1. See JobStatusType

KendraSourceDetailTypeDef#

# KendraSourceDetailTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import KendraSourceDetailTypeDef


def get_value() -> KendraSourceDetailTypeDef:
    return {
        "knowledgeBaseArn": ...,
    }


# KendraSourceDetailTypeDef definition

class KendraSourceDetailTypeDef(TypedDict):
    knowledgeBaseArn: str,
    roleArn: str,

LimitExceededExceptionTypeDef#

# LimitExceededExceptionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import LimitExceededExceptionTypeDef


def get_value() -> LimitExceededExceptionTypeDef:
    return {
        "message": ...,
    }


# LimitExceededExceptionTypeDef definition

class LimitExceededExceptionTypeDef(TypedDict):
    message: str,

ListAccessPoliciesRequestTypeDef#

# ListAccessPoliciesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAccessPoliciesRequestTypeDef


def get_value() -> ListAccessPoliciesRequestTypeDef:
    return {
        "identityType": ...,
    }


# ListAccessPoliciesRequestTypeDef definition

class ListAccessPoliciesRequestTypeDef(TypedDict):
    identityType: NotRequired[IdentityTypeType],  # (1)
    identityId: NotRequired[str],
    resourceType: NotRequired[ResourceTypeType],  # (2)
    resourceId: NotRequired[str],
    iamArn: NotRequired[str],
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See IdentityTypeType
  2. See ResourceTypeType

ListActionsRequestTypeDef#

# ListActionsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListActionsRequestTypeDef


def get_value() -> ListActionsRequestTypeDef:
    return {
        "targetResourceType": ...,
    }


# ListActionsRequestTypeDef definition

class ListActionsRequestTypeDef(TypedDict):
    targetResourceType: TargetResourceTypeType,  # (1)
    targetResourceId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See TargetResourceTypeType

ListAssetModelCompositeModelsRequestTypeDef#

# ListAssetModelCompositeModelsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelCompositeModelsRequestTypeDef


def get_value() -> ListAssetModelCompositeModelsRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# ListAssetModelCompositeModelsRequestTypeDef definition

class ListAssetModelCompositeModelsRequestTypeDef(TypedDict):
    assetModelId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    assetModelVersion: NotRequired[str],

ListAssetModelPropertiesRequestTypeDef#

# ListAssetModelPropertiesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelPropertiesRequestTypeDef


def get_value() -> ListAssetModelPropertiesRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# ListAssetModelPropertiesRequestTypeDef definition

class ListAssetModelPropertiesRequestTypeDef(TypedDict):
    assetModelId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    filter: NotRequired[ListAssetModelPropertiesFilterType],  # (1)
    assetModelVersion: NotRequired[str],
  1. See ListAssetModelPropertiesFilterType

ListAssetModelsRequestTypeDef#

# ListAssetModelsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelsRequestTypeDef


def get_value() -> ListAssetModelsRequestTypeDef:
    return {
        "assetModelTypes": ...,
    }


# ListAssetModelsRequestTypeDef definition

class ListAssetModelsRequestTypeDef(TypedDict):
    assetModelTypes: NotRequired[Sequence[AssetModelTypeType]],  # (1)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    assetModelVersion: NotRequired[str],
  1. See AssetModelTypeType

ListAssetPropertiesRequestTypeDef#

# ListAssetPropertiesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetPropertiesRequestTypeDef


def get_value() -> ListAssetPropertiesRequestTypeDef:
    return {
        "assetId": ...,
    }


# ListAssetPropertiesRequestTypeDef definition

class ListAssetPropertiesRequestTypeDef(TypedDict):
    assetId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    filter: NotRequired[ListAssetPropertiesFilterType],  # (1)
  1. See ListAssetPropertiesFilterType

ListAssetRelationshipsRequestTypeDef#

# ListAssetRelationshipsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetRelationshipsRequestTypeDef


def get_value() -> ListAssetRelationshipsRequestTypeDef:
    return {
        "assetId": ...,
    }


# ListAssetRelationshipsRequestTypeDef definition

class ListAssetRelationshipsRequestTypeDef(TypedDict):
    assetId: str,
    traversalType: TraversalTypeType,  # (1)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See TraversalTypeType

ListAssetsRequestTypeDef#

# ListAssetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetsRequestTypeDef


def get_value() -> ListAssetsRequestTypeDef:
    return {
        "nextToken": ...,
    }


# ListAssetsRequestTypeDef definition

class ListAssetsRequestTypeDef(TypedDict):
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    assetModelId: NotRequired[str],
    filter: NotRequired[ListAssetsFilterType],  # (1)
  1. See ListAssetsFilterType

ListAssociatedAssetsRequestTypeDef#

# ListAssociatedAssetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssociatedAssetsRequestTypeDef


def get_value() -> ListAssociatedAssetsRequestTypeDef:
    return {
        "assetId": ...,
    }


# ListAssociatedAssetsRequestTypeDef definition

class ListAssociatedAssetsRequestTypeDef(TypedDict):
    assetId: str,
    hierarchyId: NotRequired[str],
    traversalDirection: NotRequired[TraversalDirectionType],  # (1)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See TraversalDirectionType

ListBulkImportJobsRequestTypeDef#

# ListBulkImportJobsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListBulkImportJobsRequestTypeDef


def get_value() -> ListBulkImportJobsRequestTypeDef:
    return {
        "nextToken": ...,
    }


# ListBulkImportJobsRequestTypeDef definition

class ListBulkImportJobsRequestTypeDef(TypedDict):
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    filter: NotRequired[ListBulkImportJobsFilterType],  # (1)
  1. See ListBulkImportJobsFilterType

ListCompositionRelationshipsRequestTypeDef#

# ListCompositionRelationshipsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListCompositionRelationshipsRequestTypeDef


def get_value() -> ListCompositionRelationshipsRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# ListCompositionRelationshipsRequestTypeDef definition

class ListCompositionRelationshipsRequestTypeDef(TypedDict):
    assetModelId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],

ListDashboardsRequestTypeDef#

# ListDashboardsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListDashboardsRequestTypeDef


def get_value() -> ListDashboardsRequestTypeDef:
    return {
        "projectId": ...,
    }


# ListDashboardsRequestTypeDef definition

class ListDashboardsRequestTypeDef(TypedDict):
    projectId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],

ListDatasetsRequestTypeDef#

# ListDatasetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListDatasetsRequestTypeDef


def get_value() -> ListDatasetsRequestTypeDef:
    return {
        "sourceType": ...,
    }


# ListDatasetsRequestTypeDef definition

class ListDatasetsRequestTypeDef(TypedDict):
    sourceType: DatasetSourceTypeType,  # (1)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See DatasetSourceTypeType

ListGatewaysRequestTypeDef#

# ListGatewaysRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListGatewaysRequestTypeDef


def get_value() -> ListGatewaysRequestTypeDef:
    return {
        "nextToken": ...,
    }


# ListGatewaysRequestTypeDef definition

class ListGatewaysRequestTypeDef(TypedDict):
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],

ListPortalsRequestTypeDef#

# ListPortalsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListPortalsRequestTypeDef


def get_value() -> ListPortalsRequestTypeDef:
    return {
        "nextToken": ...,
    }


# ListPortalsRequestTypeDef definition

class ListPortalsRequestTypeDef(TypedDict):
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],

ListProjectAssetsRequestTypeDef#

# ListProjectAssetsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListProjectAssetsRequestTypeDef


def get_value() -> ListProjectAssetsRequestTypeDef:
    return {
        "projectId": ...,
    }


# ListProjectAssetsRequestTypeDef definition

class ListProjectAssetsRequestTypeDef(TypedDict):
    projectId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],

ListProjectsRequestTypeDef#

# ListProjectsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListProjectsRequestTypeDef


def get_value() -> ListProjectsRequestTypeDef:
    return {
        "portalId": ...,
    }


# ListProjectsRequestTypeDef definition

class ListProjectsRequestTypeDef(TypedDict):
    portalId: str,
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],

ProjectSummaryTypeDef#

# ProjectSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ProjectSummaryTypeDef


def get_value() -> ProjectSummaryTypeDef:
    return {
        "id": ...,
    }


# ProjectSummaryTypeDef definition

class ProjectSummaryTypeDef(TypedDict):
    id: str,
    name: str,
    description: NotRequired[str],
    creationDate: NotRequired[datetime],
    lastUpdateDate: NotRequired[datetime],

ListTagsForResourceRequestTypeDef#

# ListTagsForResourceRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListTagsForResourceRequestTypeDef


def get_value() -> ListTagsForResourceRequestTypeDef:
    return {
        "resourceArn": ...,
    }


# ListTagsForResourceRequestTypeDef definition

class ListTagsForResourceRequestTypeDef(TypedDict):
    resourceArn: str,

ListTimeSeriesRequestTypeDef#

# ListTimeSeriesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListTimeSeriesRequestTypeDef


def get_value() -> ListTimeSeriesRequestTypeDef:
    return {
        "nextToken": ...,
    }


# ListTimeSeriesRequestTypeDef definition

class ListTimeSeriesRequestTypeDef(TypedDict):
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
    assetId: NotRequired[str],
    aliasPrefix: NotRequired[str],
    timeSeriesType: NotRequired[ListTimeSeriesTypeType],  # (1)
  1. See ListTimeSeriesTypeType

TimeSeriesSummaryTypeDef#

# TimeSeriesSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TimeSeriesSummaryTypeDef


def get_value() -> TimeSeriesSummaryTypeDef:
    return {
        "assetId": ...,
    }


# TimeSeriesSummaryTypeDef definition

class TimeSeriesSummaryTypeDef(TypedDict):
    timeSeriesId: str,
    dataType: PropertyDataTypeType,  # (1)
    timeSeriesCreationDate: datetime,
    timeSeriesLastUpdateDate: datetime,
    timeSeriesArn: str,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    alias: NotRequired[str],
    dataTypeSpec: NotRequired[str],
  1. See PropertyDataTypeType

LocationTypeDef#

# LocationTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import LocationTypeDef


def get_value() -> LocationTypeDef:
    return {
        "uri": ...,
    }


# LocationTypeDef definition

class LocationTypeDef(TypedDict):
    uri: NotRequired[str],

MetricProcessingConfigTypeDef#

# MetricProcessingConfigTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MetricProcessingConfigTypeDef


def get_value() -> MetricProcessingConfigTypeDef:
    return {
        "computeLocation": ...,
    }


# MetricProcessingConfigTypeDef definition

class MetricProcessingConfigTypeDef(TypedDict):
    computeLocation: ComputeLocationType,  # (1)
  1. See ComputeLocationType

TumblingWindowTypeDef#

# TumblingWindowTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TumblingWindowTypeDef


def get_value() -> TumblingWindowTypeDef:
    return {
        "interval": ...,
    }


# TumblingWindowTypeDef definition

class TumblingWindowTypeDef(TypedDict):
    interval: str,
    offset: NotRequired[str],

MonitorErrorDetailsTypeDef#

# MonitorErrorDetailsTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MonitorErrorDetailsTypeDef


def get_value() -> MonitorErrorDetailsTypeDef:
    return {
        "code": ...,
    }


# MonitorErrorDetailsTypeDef definition

class MonitorErrorDetailsTypeDef(TypedDict):
    code: NotRequired[MonitorErrorCodeType],  # (1)
    message: NotRequired[str],
  1. See MonitorErrorCodeType

PortalResourceTypeDef#

# PortalResourceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PortalResourceTypeDef


def get_value() -> PortalResourceTypeDef:
    return {
        "id": ...,
    }


# PortalResourceTypeDef definition

class PortalResourceTypeDef(TypedDict):
    id: str,

PortalTypeEntryTypeDef#

# PortalTypeEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PortalTypeEntryTypeDef


def get_value() -> PortalTypeEntryTypeDef:
    return {
        "portalTools": ...,
    }


# PortalTypeEntryTypeDef definition

class PortalTypeEntryTypeDef(TypedDict):
    portalTools: NotRequired[Sequence[str]],

ProjectResourceTypeDef#

# ProjectResourceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ProjectResourceTypeDef


def get_value() -> ProjectResourceTypeDef:
    return {
        "id": ...,
    }


# ProjectResourceTypeDef definition

class ProjectResourceTypeDef(TypedDict):
    id: str,

PropertyValueNullValueTypeDef#

# PropertyValueNullValueTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PropertyValueNullValueTypeDef


def get_value() -> PropertyValueNullValueTypeDef:
    return {
        "valueType": ...,
    }


# PropertyValueNullValueTypeDef definition

class PropertyValueNullValueTypeDef(TypedDict):
    valueType: RawValueTypeType,  # (1)
  1. See RawValueTypeType

PutDefaultEncryptionConfigurationRequestTypeDef#

# PutDefaultEncryptionConfigurationRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PutDefaultEncryptionConfigurationRequestTypeDef


def get_value() -> PutDefaultEncryptionConfigurationRequestTypeDef:
    return {
        "encryptionType": ...,
    }


# PutDefaultEncryptionConfigurationRequestTypeDef definition

class PutDefaultEncryptionConfigurationRequestTypeDef(TypedDict):
    encryptionType: EncryptionTypeType,  # (1)
    kmsKeyId: NotRequired[str],
  1. See EncryptionTypeType

ResourceNotFoundExceptionTypeDef#

# ResourceNotFoundExceptionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ResourceNotFoundExceptionTypeDef


def get_value() -> ResourceNotFoundExceptionTypeDef:
    return {
        "message": ...,
    }


# ResourceNotFoundExceptionTypeDef definition

class ResourceNotFoundExceptionTypeDef(TypedDict):
    message: str,

ThrottlingExceptionTypeDef#

# ThrottlingExceptionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ThrottlingExceptionTypeDef


def get_value() -> ThrottlingExceptionTypeDef:
    return {
        "message": ...,
    }


# ThrottlingExceptionTypeDef definition

class ThrottlingExceptionTypeDef(TypedDict):
    message: str,

TraceTypeDef#

# TraceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TraceTypeDef


def get_value() -> TraceTypeDef:
    return {
        "text": ...,
    }


# TraceTypeDef definition

class TraceTypeDef(TypedDict):
    text: NotRequired[str],

TagResourceRequestTypeDef#

# TagResourceRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TagResourceRequestTypeDef


def get_value() -> TagResourceRequestTypeDef:
    return {
        "resourceArn": ...,
    }


# TagResourceRequestTypeDef definition

class TagResourceRequestTypeDef(TypedDict):
    resourceArn: str,
    tags: Mapping[str, str],

UntagResourceRequestTypeDef#

# UntagResourceRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UntagResourceRequestTypeDef


def get_value() -> UntagResourceRequestTypeDef:
    return {
        "resourceArn": ...,
    }


# UntagResourceRequestTypeDef definition

class UntagResourceRequestTypeDef(TypedDict):
    resourceArn: str,
    tagKeys: Sequence[str],

UpdateAssetPropertyRequestTypeDef#

# UpdateAssetPropertyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAssetPropertyRequestTypeDef


def get_value() -> UpdateAssetPropertyRequestTypeDef:
    return {
        "assetId": ...,
    }


# UpdateAssetPropertyRequestTypeDef definition

class UpdateAssetPropertyRequestTypeDef(TypedDict):
    assetId: str,
    propertyId: str,
    propertyAlias: NotRequired[str],
    propertyNotificationState: NotRequired[PropertyNotificationStateType],  # (1)
    clientToken: NotRequired[str],
    propertyUnit: NotRequired[str],
  1. See PropertyNotificationStateType

UpdateAssetRequestTypeDef#

# UpdateAssetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAssetRequestTypeDef


def get_value() -> UpdateAssetRequestTypeDef:
    return {
        "assetId": ...,
    }


# UpdateAssetRequestTypeDef definition

class UpdateAssetRequestTypeDef(TypedDict):
    assetId: str,
    assetName: str,
    clientToken: NotRequired[str],
    assetDescription: NotRequired[str],
    assetExternalId: NotRequired[str],

UpdateDashboardRequestTypeDef#

# UpdateDashboardRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateDashboardRequestTypeDef


def get_value() -> UpdateDashboardRequestTypeDef:
    return {
        "dashboardId": ...,
    }


# UpdateDashboardRequestTypeDef definition

class UpdateDashboardRequestTypeDef(TypedDict):
    dashboardId: str,
    dashboardName: str,
    dashboardDefinition: str,
    dashboardDescription: NotRequired[str],
    clientToken: NotRequired[str],

UpdateGatewayCapabilityConfigurationRequestTypeDef#

# UpdateGatewayCapabilityConfigurationRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateGatewayCapabilityConfigurationRequestTypeDef


def get_value() -> UpdateGatewayCapabilityConfigurationRequestTypeDef:
    return {
        "gatewayId": ...,
    }


# UpdateGatewayCapabilityConfigurationRequestTypeDef definition

class UpdateGatewayCapabilityConfigurationRequestTypeDef(TypedDict):
    gatewayId: str,
    capabilityNamespace: str,
    capabilityConfiguration: str,

UpdateGatewayRequestTypeDef#

# UpdateGatewayRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateGatewayRequestTypeDef


def get_value() -> UpdateGatewayRequestTypeDef:
    return {
        "gatewayId": ...,
    }


# UpdateGatewayRequestTypeDef definition

class UpdateGatewayRequestTypeDef(TypedDict):
    gatewayId: str,
    gatewayName: str,

UpdateProjectRequestTypeDef#

# UpdateProjectRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateProjectRequestTypeDef


def get_value() -> UpdateProjectRequestTypeDef:
    return {
        "projectId": ...,
    }


# UpdateProjectRequestTypeDef definition

class UpdateProjectRequestTypeDef(TypedDict):
    projectId: str,
    projectName: str,
    projectDescription: NotRequired[str],
    clientToken: NotRequired[str],

ActionSummaryTypeDef#

# ActionSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ActionSummaryTypeDef


def get_value() -> ActionSummaryTypeDef:
    return {
        "actionId": ...,
    }


# ActionSummaryTypeDef definition

class ActionSummaryTypeDef(TypedDict):
    actionId: NotRequired[str],
    actionDefinitionId: NotRequired[str],
    targetResource: NotRequired[TargetResourceTypeDef],  # (1)
  1. See TargetResourceTypeDef

ExecuteActionRequestTypeDef#

# ExecuteActionRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExecuteActionRequestTypeDef


def get_value() -> ExecuteActionRequestTypeDef:
    return {
        "targetResource": ...,
    }


# ExecuteActionRequestTypeDef definition

class ExecuteActionRequestTypeDef(TypedDict):
    targetResource: TargetResourceTypeDef,  # (1)
    actionDefinitionId: str,
    actionPayload: ActionPayloadTypeDef,  # (2)
    clientToken: NotRequired[str],
  1. See TargetResourceTypeDef
  2. See ActionPayloadTypeDef

AggregatedValueTypeDef#

# AggregatedValueTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AggregatedValueTypeDef


def get_value() -> AggregatedValueTypeDef:
    return {
        "timestamp": ...,
    }


# AggregatedValueTypeDef definition

class AggregatedValueTypeDef(TypedDict):
    timestamp: datetime,
    value: AggregatesTypeDef,  # (2)
    quality: NotRequired[QualityType],  # (1)
  1. See QualityType
  2. See AggregatesTypeDef

AssetCompositeModelSummaryTypeDef#

# AssetCompositeModelSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetCompositeModelSummaryTypeDef


def get_value() -> AssetCompositeModelSummaryTypeDef:
    return {
        "id": ...,
    }


# AssetCompositeModelSummaryTypeDef definition

class AssetCompositeModelSummaryTypeDef(TypedDict):
    id: str,
    name: str,
    type: str,
    description: str,
    path: List[AssetCompositeModelPathSegmentTypeDef],  # (1)
    externalId: NotRequired[str],
  1. See AssetCompositeModelPathSegmentTypeDef

AssetRelationshipSummaryTypeDef#

# AssetRelationshipSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetRelationshipSummaryTypeDef


def get_value() -> AssetRelationshipSummaryTypeDef:
    return {
        "hierarchyInfo": ...,
    }


# AssetRelationshipSummaryTypeDef definition

class AssetRelationshipSummaryTypeDef(TypedDict):
    relationshipType: AssetRelationshipTypeType,  # (2)
    hierarchyInfo: NotRequired[AssetHierarchyInfoTypeDef],  # (1)
  1. See AssetHierarchyInfoTypeDef
  2. See AssetRelationshipTypeType

AssetModelCompositeModelSummaryTypeDef#

# AssetModelCompositeModelSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelCompositeModelSummaryTypeDef


def get_value() -> AssetModelCompositeModelSummaryTypeDef:
    return {
        "id": ...,
    }


# AssetModelCompositeModelSummaryTypeDef definition

class AssetModelCompositeModelSummaryTypeDef(TypedDict):
    id: str,
    name: str,
    type: str,
    externalId: NotRequired[str],
    description: NotRequired[str],
    path: NotRequired[List[AssetModelCompositeModelPathSegmentTypeDef]],  # (1)
  1. See AssetModelCompositeModelPathSegmentTypeDef

VariableValueOutputTypeDef#

# VariableValueOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import VariableValueOutputTypeDef


def get_value() -> VariableValueOutputTypeDef:
    return {
        "propertyId": ...,
    }


# VariableValueOutputTypeDef definition

class VariableValueOutputTypeDef(TypedDict):
    propertyId: NotRequired[str],
    hierarchyId: NotRequired[str],
    propertyPath: NotRequired[List[AssetModelPropertyPathSegmentTypeDef]],  # (1)
  1. See AssetModelPropertyPathSegmentTypeDef

VariableValueTypeDef#

# VariableValueTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import VariableValueTypeDef


def get_value() -> VariableValueTypeDef:
    return {
        "propertyId": ...,
    }


# VariableValueTypeDef definition

class VariableValueTypeDef(TypedDict):
    propertyId: NotRequired[str],
    hierarchyId: NotRequired[str],
    propertyPath: NotRequired[Sequence[AssetModelPropertyPathSegmentTypeDef]],  # (1)
  1. See AssetModelPropertyPathSegmentTypeDef

AssetPropertySummaryTypeDef#

# AssetPropertySummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetPropertySummaryTypeDef


def get_value() -> AssetPropertySummaryTypeDef:
    return {
        "id": ...,
    }


# AssetPropertySummaryTypeDef definition

class AssetPropertySummaryTypeDef(TypedDict):
    id: str,
    alias: NotRequired[str],
    unit: NotRequired[str],
    notification: NotRequired[PropertyNotificationTypeDef],  # (1)
    assetCompositeModelId: NotRequired[str],
    path: NotRequired[List[AssetPropertyPathSegmentTypeDef]],  # (2)
    externalId: NotRequired[str],
  1. See PropertyNotificationTypeDef
  2. See AssetPropertyPathSegmentTypeDef

AssetPropertyTypeDef#

# AssetPropertyTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetPropertyTypeDef


def get_value() -> AssetPropertyTypeDef:
    return {
        "id": ...,
    }


# AssetPropertyTypeDef definition

class AssetPropertyTypeDef(TypedDict):
    id: str,
    name: str,
    dataType: PropertyDataTypeType,  # (2)
    alias: NotRequired[str],
    notification: NotRequired[PropertyNotificationTypeDef],  # (1)
    dataTypeSpec: NotRequired[str],
    unit: NotRequired[str],
    path: NotRequired[List[AssetPropertyPathSegmentTypeDef]],  # (3)
    externalId: NotRequired[str],
  1. See PropertyNotificationTypeDef
  2. See PropertyDataTypeType
  3. See AssetPropertyPathSegmentTypeDef

BatchPutAssetPropertyErrorTypeDef#

# BatchPutAssetPropertyErrorTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchPutAssetPropertyErrorTypeDef


def get_value() -> BatchPutAssetPropertyErrorTypeDef:
    return {
        "errorCode": ...,
    }


# BatchPutAssetPropertyErrorTypeDef definition

class BatchPutAssetPropertyErrorTypeDef(TypedDict):
    errorCode: BatchPutAssetPropertyValueErrorCodeType,  # (1)
    errorMessage: str,
    timestamps: List[TimeInNanosTypeDef],  # (2)
  1. See BatchPutAssetPropertyValueErrorCodeType
  2. See TimeInNanosTypeDef

BatchAssociateProjectAssetsResponseTypeDef#

# BatchAssociateProjectAssetsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchAssociateProjectAssetsResponseTypeDef


def get_value() -> BatchAssociateProjectAssetsResponseTypeDef:
    return {
        "errors": ...,
    }


# BatchAssociateProjectAssetsResponseTypeDef definition

class BatchAssociateProjectAssetsResponseTypeDef(TypedDict):
    errors: List[AssetErrorDetailsTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetErrorDetailsTypeDef
  2. See ResponseMetadataTypeDef

BatchDisassociateProjectAssetsResponseTypeDef#

# BatchDisassociateProjectAssetsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchDisassociateProjectAssetsResponseTypeDef


def get_value() -> BatchDisassociateProjectAssetsResponseTypeDef:
    return {
        "errors": ...,
    }


# BatchDisassociateProjectAssetsResponseTypeDef definition

class BatchDisassociateProjectAssetsResponseTypeDef(TypedDict):
    errors: List[AssetErrorDetailsTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetErrorDetailsTypeDef
  2. See ResponseMetadataTypeDef

CreateAccessPolicyResponseTypeDef#

# CreateAccessPolicyResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAccessPolicyResponseTypeDef


def get_value() -> CreateAccessPolicyResponseTypeDef:
    return {
        "accessPolicyId": ...,
    }


# CreateAccessPolicyResponseTypeDef definition

class CreateAccessPolicyResponseTypeDef(TypedDict):
    accessPolicyId: str,
    accessPolicyArn: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

CreateBulkImportJobResponseTypeDef#

# CreateBulkImportJobResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateBulkImportJobResponseTypeDef


def get_value() -> CreateBulkImportJobResponseTypeDef:
    return {
        "jobId": ...,
    }


# CreateBulkImportJobResponseTypeDef definition

class CreateBulkImportJobResponseTypeDef(TypedDict):
    jobId: str,
    jobName: str,
    jobStatus: JobStatusType,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See JobStatusType
  2. See ResponseMetadataTypeDef

CreateDashboardResponseTypeDef#

# CreateDashboardResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateDashboardResponseTypeDef


def get_value() -> CreateDashboardResponseTypeDef:
    return {
        "dashboardId": ...,
    }


# CreateDashboardResponseTypeDef definition

class CreateDashboardResponseTypeDef(TypedDict):
    dashboardId: str,
    dashboardArn: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

CreateGatewayResponseTypeDef#

# CreateGatewayResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateGatewayResponseTypeDef


def get_value() -> CreateGatewayResponseTypeDef:
    return {
        "gatewayId": ...,
    }


# CreateGatewayResponseTypeDef definition

class CreateGatewayResponseTypeDef(TypedDict):
    gatewayId: str,
    gatewayArn: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

CreateProjectResponseTypeDef#

# CreateProjectResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateProjectResponseTypeDef


def get_value() -> CreateProjectResponseTypeDef:
    return {
        "projectId": ...,
    }


# CreateProjectResponseTypeDef definition

class CreateProjectResponseTypeDef(TypedDict):
    projectId: str,
    projectArn: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

DescribeActionResponseTypeDef#

# DescribeActionResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeActionResponseTypeDef


def get_value() -> DescribeActionResponseTypeDef:
    return {
        "actionId": ...,
    }


# DescribeActionResponseTypeDef definition

class DescribeActionResponseTypeDef(TypedDict):
    actionId: str,
    targetResource: TargetResourceTypeDef,  # (1)
    actionDefinitionId: str,
    actionPayload: ActionPayloadTypeDef,  # (2)
    executionTime: datetime,
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See TargetResourceTypeDef
  2. See ActionPayloadTypeDef
  3. See ResponseMetadataTypeDef

DescribeDashboardResponseTypeDef#

# DescribeDashboardResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeDashboardResponseTypeDef


def get_value() -> DescribeDashboardResponseTypeDef:
    return {
        "dashboardId": ...,
    }


# DescribeDashboardResponseTypeDef definition

class DescribeDashboardResponseTypeDef(TypedDict):
    dashboardId: str,
    dashboardArn: str,
    dashboardName: str,
    projectId: str,
    dashboardDescription: str,
    dashboardDefinition: str,
    dashboardCreationDate: datetime,
    dashboardLastUpdateDate: datetime,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

DescribeGatewayCapabilityConfigurationResponseTypeDef#

# DescribeGatewayCapabilityConfigurationResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeGatewayCapabilityConfigurationResponseTypeDef


def get_value() -> DescribeGatewayCapabilityConfigurationResponseTypeDef:
    return {
        "gatewayId": ...,
    }


# DescribeGatewayCapabilityConfigurationResponseTypeDef definition

class DescribeGatewayCapabilityConfigurationResponseTypeDef(TypedDict):
    gatewayId: str,
    capabilityNamespace: str,
    capabilityConfiguration: str,
    capabilitySyncStatus: CapabilitySyncStatusType,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See CapabilitySyncStatusType
  2. See ResponseMetadataTypeDef

DescribeProjectResponseTypeDef#

# DescribeProjectResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeProjectResponseTypeDef


def get_value() -> DescribeProjectResponseTypeDef:
    return {
        "projectId": ...,
    }


# DescribeProjectResponseTypeDef definition

class DescribeProjectResponseTypeDef(TypedDict):
    projectId: str,
    projectArn: str,
    projectName: str,
    portalId: str,
    projectDescription: str,
    projectCreationDate: datetime,
    projectLastUpdateDate: datetime,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

DescribeTimeSeriesResponseTypeDef#

# DescribeTimeSeriesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeTimeSeriesResponseTypeDef


def get_value() -> DescribeTimeSeriesResponseTypeDef:
    return {
        "assetId": ...,
    }


# DescribeTimeSeriesResponseTypeDef definition

class DescribeTimeSeriesResponseTypeDef(TypedDict):
    assetId: str,
    propertyId: str,
    alias: str,
    timeSeriesId: str,
    dataType: PropertyDataTypeType,  # (1)
    dataTypeSpec: str,
    timeSeriesCreationDate: datetime,
    timeSeriesLastUpdateDate: datetime,
    timeSeriesArn: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See PropertyDataTypeType
  2. See ResponseMetadataTypeDef

EmptyResponseMetadataTypeDef#

# EmptyResponseMetadataTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import EmptyResponseMetadataTypeDef


def get_value() -> EmptyResponseMetadataTypeDef:
    return {
        "ResponseMetadata": ...,
    }


# EmptyResponseMetadataTypeDef definition

class EmptyResponseMetadataTypeDef(TypedDict):
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

ExecuteActionResponseTypeDef#

# ExecuteActionResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExecuteActionResponseTypeDef


def get_value() -> ExecuteActionResponseTypeDef:
    return {
        "actionId": ...,
    }


# ExecuteActionResponseTypeDef definition

class ExecuteActionResponseTypeDef(TypedDict):
    actionId: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

ListProjectAssetsResponseTypeDef#

# ListProjectAssetsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListProjectAssetsResponseTypeDef


def get_value() -> ListProjectAssetsResponseTypeDef:
    return {
        "assetIds": ...,
    }


# ListProjectAssetsResponseTypeDef definition

class ListProjectAssetsResponseTypeDef(TypedDict):
    assetIds: List[str],
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
    nextToken: NotRequired[str],
  1. See ResponseMetadataTypeDef

ListTagsForResourceResponseTypeDef#

# ListTagsForResourceResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListTagsForResourceResponseTypeDef


def get_value() -> ListTagsForResourceResponseTypeDef:
    return {
        "tags": ...,
    }


# ListTagsForResourceResponseTypeDef definition

class ListTagsForResourceResponseTypeDef(TypedDict):
    tags: Dict[str, str],
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

UpdateGatewayCapabilityConfigurationResponseTypeDef#

# UpdateGatewayCapabilityConfigurationResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateGatewayCapabilityConfigurationResponseTypeDef


def get_value() -> UpdateGatewayCapabilityConfigurationResponseTypeDef:
    return {
        "capabilityNamespace": ...,
    }


# UpdateGatewayCapabilityConfigurationResponseTypeDef definition

class UpdateGatewayCapabilityConfigurationResponseTypeDef(TypedDict):
    capabilityNamespace: str,
    capabilitySyncStatus: CapabilitySyncStatusType,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See CapabilitySyncStatusType
  2. See ResponseMetadataTypeDef

BatchGetAssetPropertyAggregatesEntryTypeDef#

# BatchGetAssetPropertyAggregatesEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyAggregatesEntryTypeDef


def get_value() -> BatchGetAssetPropertyAggregatesEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyAggregatesEntryTypeDef definition

class BatchGetAssetPropertyAggregatesEntryTypeDef(TypedDict):
    entryId: str,
    aggregateTypes: Sequence[AggregateTypeType],  # (1)
    resolution: str,
    startDate: TimestampTypeDef,
    endDate: TimestampTypeDef,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    qualities: NotRequired[Sequence[QualityType]],  # (2)
    timeOrdering: NotRequired[TimeOrderingType],  # (3)
  1. See AggregateTypeType
  2. See QualityType
  3. See TimeOrderingType

BatchGetAssetPropertyValueHistoryEntryTypeDef#

# BatchGetAssetPropertyValueHistoryEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueHistoryEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueHistoryEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyValueHistoryEntryTypeDef definition

class BatchGetAssetPropertyValueHistoryEntryTypeDef(TypedDict):
    entryId: str,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    startDate: NotRequired[TimestampTypeDef],
    endDate: NotRequired[TimestampTypeDef],
    qualities: NotRequired[Sequence[QualityType]],  # (1)
    timeOrdering: NotRequired[TimeOrderingType],  # (2)
  1. See QualityType
  2. See TimeOrderingType

GetAssetPropertyAggregatesRequestTypeDef#

# GetAssetPropertyAggregatesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyAggregatesRequestTypeDef


def get_value() -> GetAssetPropertyAggregatesRequestTypeDef:
    return {
        "aggregateTypes": ...,
    }


# GetAssetPropertyAggregatesRequestTypeDef definition

class GetAssetPropertyAggregatesRequestTypeDef(TypedDict):
    aggregateTypes: Sequence[AggregateTypeType],  # (1)
    resolution: str,
    startDate: TimestampTypeDef,
    endDate: TimestampTypeDef,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    qualities: NotRequired[Sequence[QualityType]],  # (2)
    timeOrdering: NotRequired[TimeOrderingType],  # (3)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See AggregateTypeType
  2. See QualityType
  3. See TimeOrderingType

GetAssetPropertyValueHistoryRequestTypeDef#

# GetAssetPropertyValueHistoryRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyValueHistoryRequestTypeDef


def get_value() -> GetAssetPropertyValueHistoryRequestTypeDef:
    return {
        "assetId": ...,
    }


# GetAssetPropertyValueHistoryRequestTypeDef definition

class GetAssetPropertyValueHistoryRequestTypeDef(TypedDict):
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    startDate: NotRequired[TimestampTypeDef],
    endDate: NotRequired[TimestampTypeDef],
    qualities: NotRequired[Sequence[QualityType]],  # (1)
    timeOrdering: NotRequired[TimeOrderingType],  # (2)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See QualityType
  2. See TimeOrderingType

BatchGetAssetPropertyAggregatesSkippedEntryTypeDef#

# BatchGetAssetPropertyAggregatesSkippedEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyAggregatesSkippedEntryTypeDef


def get_value() -> BatchGetAssetPropertyAggregatesSkippedEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyAggregatesSkippedEntryTypeDef definition

class BatchGetAssetPropertyAggregatesSkippedEntryTypeDef(TypedDict):
    entryId: str,
    completionStatus: BatchEntryCompletionStatusType,  # (1)
    errorInfo: NotRequired[BatchGetAssetPropertyAggregatesErrorInfoTypeDef],  # (2)
  1. See BatchEntryCompletionStatusType
  2. See BatchGetAssetPropertyAggregatesErrorInfoTypeDef

BatchGetAssetPropertyValueRequestTypeDef#

# BatchGetAssetPropertyValueRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueRequestTypeDef


def get_value() -> BatchGetAssetPropertyValueRequestTypeDef:
    return {
        "entries": ...,
    }


# BatchGetAssetPropertyValueRequestTypeDef definition

class BatchGetAssetPropertyValueRequestTypeDef(TypedDict):
    entries: Sequence[BatchGetAssetPropertyValueEntryTypeDef],  # (1)
    nextToken: NotRequired[str],
  1. See BatchGetAssetPropertyValueEntryTypeDef

BatchGetAssetPropertyValueSkippedEntryTypeDef#

# BatchGetAssetPropertyValueSkippedEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueSkippedEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueSkippedEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyValueSkippedEntryTypeDef definition

class BatchGetAssetPropertyValueSkippedEntryTypeDef(TypedDict):
    entryId: str,
    completionStatus: BatchEntryCompletionStatusType,  # (1)
    errorInfo: NotRequired[BatchGetAssetPropertyValueErrorInfoTypeDef],  # (2)
  1. See BatchEntryCompletionStatusType
  2. See BatchGetAssetPropertyValueErrorInfoTypeDef

BatchGetAssetPropertyValueHistorySkippedEntryTypeDef#

# BatchGetAssetPropertyValueHistorySkippedEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueHistorySkippedEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueHistorySkippedEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyValueHistorySkippedEntryTypeDef definition

class BatchGetAssetPropertyValueHistorySkippedEntryTypeDef(TypedDict):
    entryId: str,
    completionStatus: BatchEntryCompletionStatusType,  # (1)
    errorInfo: NotRequired[BatchGetAssetPropertyValueHistoryErrorInfoTypeDef],  # (2)
  1. See BatchEntryCompletionStatusType
  2. See BatchGetAssetPropertyValueHistoryErrorInfoTypeDef

ImageFileTypeDef#

# ImageFileTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ImageFileTypeDef


def get_value() -> ImageFileTypeDef:
    return {
        "data": ...,
    }


# ImageFileTypeDef definition

class ImageFileTypeDef(TypedDict):
    data: BlobTypeDef,
    type: ImageFileTypeType,  # (1)
  1. See ImageFileTypeType

ColumnInfoTypeDef#

# ColumnInfoTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ColumnInfoTypeDef


def get_value() -> ColumnInfoTypeDef:
    return {
        "name": ...,
    }


# ColumnInfoTypeDef definition

class ColumnInfoTypeDef(TypedDict):
    name: NotRequired[str],
    type: NotRequired[ColumnTypeTypeDef],  # (1)
  1. See ColumnTypeTypeDef

CompositionDetailsTypeDef#

# CompositionDetailsTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CompositionDetailsTypeDef


def get_value() -> CompositionDetailsTypeDef:
    return {
        "compositionRelationship": ...,
    }


# CompositionDetailsTypeDef definition

class CompositionDetailsTypeDef(TypedDict):
    compositionRelationship: NotRequired[List[CompositionRelationshipItemTypeDef]],  # (1)
  1. See CompositionRelationshipItemTypeDef

ListCompositionRelationshipsResponseTypeDef#

# ListCompositionRelationshipsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListCompositionRelationshipsResponseTypeDef


def get_value() -> ListCompositionRelationshipsResponseTypeDef:
    return {
        "compositionRelationshipSummaries": ...,
    }


# ListCompositionRelationshipsResponseTypeDef definition

class ListCompositionRelationshipsResponseTypeDef(TypedDict):
    compositionRelationshipSummaries: List[CompositionRelationshipSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See CompositionRelationshipSummaryTypeDef
  2. See ResponseMetadataTypeDef

ConfigurationStatusTypeDef#

# ConfigurationStatusTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ConfigurationStatusTypeDef


def get_value() -> ConfigurationStatusTypeDef:
    return {
        "state": ...,
    }


# ConfigurationStatusTypeDef definition

class ConfigurationStatusTypeDef(TypedDict):
    state: ConfigurationStateType,  # (1)
    error: NotRequired[ConfigurationErrorDetailsTypeDef],  # (2)
  1. See ConfigurationStateType
  2. See ConfigurationErrorDetailsTypeDef

FileFormatOutputTypeDef#

# FileFormatOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import FileFormatOutputTypeDef


def get_value() -> FileFormatOutputTypeDef:
    return {
        "csv": ...,
    }


# FileFormatOutputTypeDef definition

class FileFormatOutputTypeDef(TypedDict):
    csv: NotRequired[CsvOutputTypeDef],  # (1)
    parquet: NotRequired[Dict[str, Any]],
  1. See CsvOutputTypeDef

FileFormatTypeDef#

# FileFormatTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import FileFormatTypeDef


def get_value() -> FileFormatTypeDef:
    return {
        "csv": ...,
    }


# FileFormatTypeDef definition

class FileFormatTypeDef(TypedDict):
    csv: NotRequired[CsvTypeDef],  # (1)
    parquet: NotRequired[Mapping[str, Any]],
  1. See CsvTypeDef

MultiLayerStorageTypeDef#

# MultiLayerStorageTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MultiLayerStorageTypeDef


def get_value() -> MultiLayerStorageTypeDef:
    return {
        "customerManagedS3Storage": ...,
    }


# MultiLayerStorageTypeDef definition

class MultiLayerStorageTypeDef(TypedDict):
    customerManagedS3Storage: CustomerManagedS3StorageTypeDef,  # (1)
  1. See CustomerManagedS3StorageTypeDef

ListDashboardsResponseTypeDef#

# ListDashboardsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListDashboardsResponseTypeDef


def get_value() -> ListDashboardsResponseTypeDef:
    return {
        "dashboardSummaries": ...,
    }


# ListDashboardsResponseTypeDef definition

class ListDashboardsResponseTypeDef(TypedDict):
    dashboardSummaries: List[DashboardSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See DashboardSummaryTypeDef
  2. See ResponseMetadataTypeDef

RowPaginatorTypeDef#

# RowPaginatorTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import RowPaginatorTypeDef


def get_value() -> RowPaginatorTypeDef:
    return {
        "data": ...,
    }


# RowPaginatorTypeDef definition

class RowPaginatorTypeDef(TypedDict):
    data: List[DatumPaginatorTypeDef],  # (1)
  1. See DatumPaginatorTypeDef

RowTypeDef#

# RowTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import RowTypeDef


def get_value() -> RowTypeDef:
    return {
        "data": ...,
    }


# RowTypeDef definition

class RowTypeDef(TypedDict):
    data: List[DatumTypeDef],  # (1)
  1. See DatumTypeDef

RowWaiterTypeDef#

# RowWaiterTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import RowWaiterTypeDef


def get_value() -> RowWaiterTypeDef:
    return {
        "data": ...,
    }


# RowWaiterTypeDef definition

class RowWaiterTypeDef(TypedDict):
    data: List[DatumWaiterTypeDef],  # (1)
  1. See DatumWaiterTypeDef

DescribeAssetModelRequestWaitExtraTypeDef#

# DescribeAssetModelRequestWaitExtraTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetModelRequestWaitExtraTypeDef


def get_value() -> DescribeAssetModelRequestWaitExtraTypeDef:
    return {
        "assetModelId": ...,
    }


# DescribeAssetModelRequestWaitExtraTypeDef definition

class DescribeAssetModelRequestWaitExtraTypeDef(TypedDict):
    assetModelId: str,
    excludeProperties: NotRequired[bool],
    assetModelVersion: NotRequired[str],
    WaiterConfig: NotRequired[WaiterConfigTypeDef],  # (1)
  1. See WaiterConfigTypeDef

DescribeAssetModelRequestWaitTypeDef#

# DescribeAssetModelRequestWaitTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetModelRequestWaitTypeDef


def get_value() -> DescribeAssetModelRequestWaitTypeDef:
    return {
        "assetModelId": ...,
    }


# DescribeAssetModelRequestWaitTypeDef definition

class DescribeAssetModelRequestWaitTypeDef(TypedDict):
    assetModelId: str,
    excludeProperties: NotRequired[bool],
    assetModelVersion: NotRequired[str],
    WaiterConfig: NotRequired[WaiterConfigTypeDef],  # (1)
  1. See WaiterConfigTypeDef

DescribeAssetRequestWaitExtraTypeDef#

# DescribeAssetRequestWaitExtraTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetRequestWaitExtraTypeDef


def get_value() -> DescribeAssetRequestWaitExtraTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetRequestWaitExtraTypeDef definition

class DescribeAssetRequestWaitExtraTypeDef(TypedDict):
    assetId: str,
    excludeProperties: NotRequired[bool],
    WaiterConfig: NotRequired[WaiterConfigTypeDef],  # (1)
  1. See WaiterConfigTypeDef

DescribeAssetRequestWaitTypeDef#

# DescribeAssetRequestWaitTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetRequestWaitTypeDef


def get_value() -> DescribeAssetRequestWaitTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetRequestWaitTypeDef definition

class DescribeAssetRequestWaitTypeDef(TypedDict):
    assetId: str,
    excludeProperties: NotRequired[bool],
    WaiterConfig: NotRequired[WaiterConfigTypeDef],  # (1)
  1. See WaiterConfigTypeDef

DescribePortalRequestWaitExtraTypeDef#

# DescribePortalRequestWaitExtraTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribePortalRequestWaitExtraTypeDef


def get_value() -> DescribePortalRequestWaitExtraTypeDef:
    return {
        "portalId": ...,
    }


# DescribePortalRequestWaitExtraTypeDef definition

class DescribePortalRequestWaitExtraTypeDef(TypedDict):
    portalId: str,
    WaiterConfig: NotRequired[WaiterConfigTypeDef],  # (1)
  1. See WaiterConfigTypeDef

DescribePortalRequestWaitTypeDef#

# DescribePortalRequestWaitTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribePortalRequestWaitTypeDef


def get_value() -> DescribePortalRequestWaitTypeDef:
    return {
        "portalId": ...,
    }


# DescribePortalRequestWaitTypeDef definition

class DescribePortalRequestWaitTypeDef(TypedDict):
    portalId: str,
    WaiterConfig: NotRequired[WaiterConfigTypeDef],  # (1)
  1. See WaiterConfigTypeDef

DescribeLoggingOptionsResponseTypeDef#

# DescribeLoggingOptionsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeLoggingOptionsResponseTypeDef


def get_value() -> DescribeLoggingOptionsResponseTypeDef:
    return {
        "loggingOptions": ...,
    }


# DescribeLoggingOptionsResponseTypeDef definition

class DescribeLoggingOptionsResponseTypeDef(TypedDict):
    loggingOptions: LoggingOptionsTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See LoggingOptionsTypeDef
  2. See ResponseMetadataTypeDef

PutLoggingOptionsRequestTypeDef#

# PutLoggingOptionsRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PutLoggingOptionsRequestTypeDef


def get_value() -> PutLoggingOptionsRequestTypeDef:
    return {
        "loggingOptions": ...,
    }


# PutLoggingOptionsRequestTypeDef definition

class PutLoggingOptionsRequestTypeDef(TypedDict):
    loggingOptions: LoggingOptionsTypeDef,  # (1)
  1. See LoggingOptionsTypeDef

ErrorDetailsTypeDef#

# ErrorDetailsTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ErrorDetailsTypeDef


def get_value() -> ErrorDetailsTypeDef:
    return {
        "code": ...,
    }


# ErrorDetailsTypeDef definition

class ErrorDetailsTypeDef(TypedDict):
    code: ErrorCodeType,  # (1)
    message: str,
    details: NotRequired[List[DetailedErrorTypeDef]],  # (2)
  1. See ErrorCodeType
  2. See DetailedErrorTypeDef

ExecuteQueryRequestPaginateTypeDef#

# ExecuteQueryRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExecuteQueryRequestPaginateTypeDef


def get_value() -> ExecuteQueryRequestPaginateTypeDef:
    return {
        "queryStatement": ...,
    }


# ExecuteQueryRequestPaginateTypeDef definition

class ExecuteQueryRequestPaginateTypeDef(TypedDict):
    queryStatement: str,
    clientToken: NotRequired[str],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

GetAssetPropertyAggregatesRequestPaginateTypeDef#

# GetAssetPropertyAggregatesRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyAggregatesRequestPaginateTypeDef


def get_value() -> GetAssetPropertyAggregatesRequestPaginateTypeDef:
    return {
        "aggregateTypes": ...,
    }


# GetAssetPropertyAggregatesRequestPaginateTypeDef definition

class GetAssetPropertyAggregatesRequestPaginateTypeDef(TypedDict):
    aggregateTypes: Sequence[AggregateTypeType],  # (1)
    resolution: str,
    startDate: TimestampTypeDef,
    endDate: TimestampTypeDef,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    qualities: NotRequired[Sequence[QualityType]],  # (2)
    timeOrdering: NotRequired[TimeOrderingType],  # (3)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (4)
  1. See AggregateTypeType
  2. See QualityType
  3. See TimeOrderingType
  4. See PaginatorConfigTypeDef

GetAssetPropertyValueHistoryRequestPaginateTypeDef#

# GetAssetPropertyValueHistoryRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyValueHistoryRequestPaginateTypeDef


def get_value() -> GetAssetPropertyValueHistoryRequestPaginateTypeDef:
    return {
        "assetId": ...,
    }


# GetAssetPropertyValueHistoryRequestPaginateTypeDef definition

class GetAssetPropertyValueHistoryRequestPaginateTypeDef(TypedDict):
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    startDate: NotRequired[TimestampTypeDef],
    endDate: NotRequired[TimestampTypeDef],
    qualities: NotRequired[Sequence[QualityType]],  # (1)
    timeOrdering: NotRequired[TimeOrderingType],  # (2)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (3)
  1. See QualityType
  2. See TimeOrderingType
  3. See PaginatorConfigTypeDef

GetInterpolatedAssetPropertyValuesRequestPaginateTypeDef#

# GetInterpolatedAssetPropertyValuesRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetInterpolatedAssetPropertyValuesRequestPaginateTypeDef


def get_value() -> GetInterpolatedAssetPropertyValuesRequestPaginateTypeDef:
    return {
        "startTimeInSeconds": ...,
    }


# GetInterpolatedAssetPropertyValuesRequestPaginateTypeDef definition

class GetInterpolatedAssetPropertyValuesRequestPaginateTypeDef(TypedDict):
    startTimeInSeconds: int,
    endTimeInSeconds: int,
    quality: QualityType,  # (1)
    intervalInSeconds: int,
    type: str,
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
    startTimeOffsetInNanos: NotRequired[int],
    endTimeOffsetInNanos: NotRequired[int],
    intervalWindowInSeconds: NotRequired[int],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See QualityType
  2. See PaginatorConfigTypeDef

ListAccessPoliciesRequestPaginateTypeDef#

# ListAccessPoliciesRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAccessPoliciesRequestPaginateTypeDef


def get_value() -> ListAccessPoliciesRequestPaginateTypeDef:
    return {
        "identityType": ...,
    }


# ListAccessPoliciesRequestPaginateTypeDef definition

class ListAccessPoliciesRequestPaginateTypeDef(TypedDict):
    identityType: NotRequired[IdentityTypeType],  # (1)
    identityId: NotRequired[str],
    resourceType: NotRequired[ResourceTypeType],  # (2)
    resourceId: NotRequired[str],
    iamArn: NotRequired[str],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (3)
  1. See IdentityTypeType
  2. See ResourceTypeType
  3. See PaginatorConfigTypeDef

ListActionsRequestPaginateTypeDef#

# ListActionsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListActionsRequestPaginateTypeDef


def get_value() -> ListActionsRequestPaginateTypeDef:
    return {
        "targetResourceType": ...,
    }


# ListActionsRequestPaginateTypeDef definition

class ListActionsRequestPaginateTypeDef(TypedDict):
    targetResourceType: TargetResourceTypeType,  # (1)
    targetResourceId: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See TargetResourceTypeType
  2. See PaginatorConfigTypeDef

ListAssetModelCompositeModelsRequestPaginateTypeDef#

# ListAssetModelCompositeModelsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelCompositeModelsRequestPaginateTypeDef


def get_value() -> ListAssetModelCompositeModelsRequestPaginateTypeDef:
    return {
        "assetModelId": ...,
    }


# ListAssetModelCompositeModelsRequestPaginateTypeDef definition

class ListAssetModelCompositeModelsRequestPaginateTypeDef(TypedDict):
    assetModelId: str,
    assetModelVersion: NotRequired[str],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListAssetModelPropertiesRequestPaginateTypeDef#

# ListAssetModelPropertiesRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelPropertiesRequestPaginateTypeDef


def get_value() -> ListAssetModelPropertiesRequestPaginateTypeDef:
    return {
        "assetModelId": ...,
    }


# ListAssetModelPropertiesRequestPaginateTypeDef definition

class ListAssetModelPropertiesRequestPaginateTypeDef(TypedDict):
    assetModelId: str,
    filter: NotRequired[ListAssetModelPropertiesFilterType],  # (1)
    assetModelVersion: NotRequired[str],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See ListAssetModelPropertiesFilterType
  2. See PaginatorConfigTypeDef

ListAssetModelsRequestPaginateTypeDef#

# ListAssetModelsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelsRequestPaginateTypeDef


def get_value() -> ListAssetModelsRequestPaginateTypeDef:
    return {
        "assetModelTypes": ...,
    }


# ListAssetModelsRequestPaginateTypeDef definition

class ListAssetModelsRequestPaginateTypeDef(TypedDict):
    assetModelTypes: NotRequired[Sequence[AssetModelTypeType]],  # (1)
    assetModelVersion: NotRequired[str],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See AssetModelTypeType
  2. See PaginatorConfigTypeDef

ListAssetPropertiesRequestPaginateTypeDef#

# ListAssetPropertiesRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetPropertiesRequestPaginateTypeDef


def get_value() -> ListAssetPropertiesRequestPaginateTypeDef:
    return {
        "assetId": ...,
    }


# ListAssetPropertiesRequestPaginateTypeDef definition

class ListAssetPropertiesRequestPaginateTypeDef(TypedDict):
    assetId: str,
    filter: NotRequired[ListAssetPropertiesFilterType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See ListAssetPropertiesFilterType
  2. See PaginatorConfigTypeDef

ListAssetRelationshipsRequestPaginateTypeDef#

# ListAssetRelationshipsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetRelationshipsRequestPaginateTypeDef


def get_value() -> ListAssetRelationshipsRequestPaginateTypeDef:
    return {
        "assetId": ...,
    }


# ListAssetRelationshipsRequestPaginateTypeDef definition

class ListAssetRelationshipsRequestPaginateTypeDef(TypedDict):
    assetId: str,
    traversalType: TraversalTypeType,  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See TraversalTypeType
  2. See PaginatorConfigTypeDef

ListAssetsRequestPaginateTypeDef#

# ListAssetsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetsRequestPaginateTypeDef


def get_value() -> ListAssetsRequestPaginateTypeDef:
    return {
        "assetModelId": ...,
    }


# ListAssetsRequestPaginateTypeDef definition

class ListAssetsRequestPaginateTypeDef(TypedDict):
    assetModelId: NotRequired[str],
    filter: NotRequired[ListAssetsFilterType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See ListAssetsFilterType
  2. See PaginatorConfigTypeDef

ListAssociatedAssetsRequestPaginateTypeDef#

# ListAssociatedAssetsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssociatedAssetsRequestPaginateTypeDef


def get_value() -> ListAssociatedAssetsRequestPaginateTypeDef:
    return {
        "assetId": ...,
    }


# ListAssociatedAssetsRequestPaginateTypeDef definition

class ListAssociatedAssetsRequestPaginateTypeDef(TypedDict):
    assetId: str,
    hierarchyId: NotRequired[str],
    traversalDirection: NotRequired[TraversalDirectionType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See TraversalDirectionType
  2. See PaginatorConfigTypeDef

ListBulkImportJobsRequestPaginateTypeDef#

# ListBulkImportJobsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListBulkImportJobsRequestPaginateTypeDef


def get_value() -> ListBulkImportJobsRequestPaginateTypeDef:
    return {
        "filter": ...,
    }


# ListBulkImportJobsRequestPaginateTypeDef definition

class ListBulkImportJobsRequestPaginateTypeDef(TypedDict):
    filter: NotRequired[ListBulkImportJobsFilterType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See ListBulkImportJobsFilterType
  2. See PaginatorConfigTypeDef

ListCompositionRelationshipsRequestPaginateTypeDef#

# ListCompositionRelationshipsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListCompositionRelationshipsRequestPaginateTypeDef


def get_value() -> ListCompositionRelationshipsRequestPaginateTypeDef:
    return {
        "assetModelId": ...,
    }


# ListCompositionRelationshipsRequestPaginateTypeDef definition

class ListCompositionRelationshipsRequestPaginateTypeDef(TypedDict):
    assetModelId: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListDashboardsRequestPaginateTypeDef#

# ListDashboardsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListDashboardsRequestPaginateTypeDef


def get_value() -> ListDashboardsRequestPaginateTypeDef:
    return {
        "projectId": ...,
    }


# ListDashboardsRequestPaginateTypeDef definition

class ListDashboardsRequestPaginateTypeDef(TypedDict):
    projectId: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListDatasetsRequestPaginateTypeDef#

# ListDatasetsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListDatasetsRequestPaginateTypeDef


def get_value() -> ListDatasetsRequestPaginateTypeDef:
    return {
        "sourceType": ...,
    }


# ListDatasetsRequestPaginateTypeDef definition

class ListDatasetsRequestPaginateTypeDef(TypedDict):
    sourceType: DatasetSourceTypeType,  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See DatasetSourceTypeType
  2. See PaginatorConfigTypeDef

ListGatewaysRequestPaginateTypeDef#

# ListGatewaysRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListGatewaysRequestPaginateTypeDef


def get_value() -> ListGatewaysRequestPaginateTypeDef:
    return {
        "PaginationConfig": ...,
    }


# ListGatewaysRequestPaginateTypeDef definition

class ListGatewaysRequestPaginateTypeDef(TypedDict):
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListPortalsRequestPaginateTypeDef#

# ListPortalsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListPortalsRequestPaginateTypeDef


def get_value() -> ListPortalsRequestPaginateTypeDef:
    return {
        "PaginationConfig": ...,
    }


# ListPortalsRequestPaginateTypeDef definition

class ListPortalsRequestPaginateTypeDef(TypedDict):
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListProjectAssetsRequestPaginateTypeDef#

# ListProjectAssetsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListProjectAssetsRequestPaginateTypeDef


def get_value() -> ListProjectAssetsRequestPaginateTypeDef:
    return {
        "projectId": ...,
    }


# ListProjectAssetsRequestPaginateTypeDef definition

class ListProjectAssetsRequestPaginateTypeDef(TypedDict):
    projectId: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListProjectsRequestPaginateTypeDef#

# ListProjectsRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListProjectsRequestPaginateTypeDef


def get_value() -> ListProjectsRequestPaginateTypeDef:
    return {
        "portalId": ...,
    }


# ListProjectsRequestPaginateTypeDef definition

class ListProjectsRequestPaginateTypeDef(TypedDict):
    portalId: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListTimeSeriesRequestPaginateTypeDef#

# ListTimeSeriesRequestPaginateTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListTimeSeriesRequestPaginateTypeDef


def get_value() -> ListTimeSeriesRequestPaginateTypeDef:
    return {
        "assetId": ...,
    }


# ListTimeSeriesRequestPaginateTypeDef definition

class ListTimeSeriesRequestPaginateTypeDef(TypedDict):
    assetId: NotRequired[str],
    aliasPrefix: NotRequired[str],
    timeSeriesType: NotRequired[ListTimeSeriesTypeType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See ListTimeSeriesTypeType
  2. See PaginatorConfigTypeDef

MeasurementProcessingConfigTypeDef#

# MeasurementProcessingConfigTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MeasurementProcessingConfigTypeDef


def get_value() -> MeasurementProcessingConfigTypeDef:
    return {
        "forwardingConfig": ...,
    }


# MeasurementProcessingConfigTypeDef definition

class MeasurementProcessingConfigTypeDef(TypedDict):
    forwardingConfig: ForwardingConfigTypeDef,  # (1)
  1. See ForwardingConfigTypeDef

TransformProcessingConfigTypeDef#

# TransformProcessingConfigTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TransformProcessingConfigTypeDef


def get_value() -> TransformProcessingConfigTypeDef:
    return {
        "computeLocation": ...,
    }


# TransformProcessingConfigTypeDef definition

class TransformProcessingConfigTypeDef(TypedDict):
    computeLocation: ComputeLocationType,  # (1)
    forwardingConfig: NotRequired[ForwardingConfigTypeDef],  # (2)
  1. See ComputeLocationType
  2. See ForwardingConfigTypeDef

GatewayPlatformTypeDef#

# GatewayPlatformTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GatewayPlatformTypeDef


def get_value() -> GatewayPlatformTypeDef:
    return {
        "greengrass": ...,
    }


# GatewayPlatformTypeDef definition

class GatewayPlatformTypeDef(TypedDict):
    greengrass: NotRequired[GreengrassTypeDef],  # (1)
    greengrassV2: NotRequired[GreengrassV2TypeDef],  # (2)
    siemensIE: NotRequired[SiemensIETypeDef],  # (3)
  1. See GreengrassTypeDef
  2. See GreengrassV2TypeDef
  3. See SiemensIETypeDef

IdentityTypeDef#

# IdentityTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import IdentityTypeDef


def get_value() -> IdentityTypeDef:
    return {
        "user": ...,
    }


# IdentityTypeDef definition

class IdentityTypeDef(TypedDict):
    user: NotRequired[UserIdentityTypeDef],  # (1)
    group: NotRequired[GroupIdentityTypeDef],  # (2)
    iamUser: NotRequired[IAMUserIdentityTypeDef],  # (3)
    iamRole: NotRequired[IAMRoleIdentityTypeDef],  # (4)
  1. See UserIdentityTypeDef
  2. See GroupIdentityTypeDef
  3. See IAMUserIdentityTypeDef
  4. See IAMRoleIdentityTypeDef

ListBulkImportJobsResponseTypeDef#

# ListBulkImportJobsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListBulkImportJobsResponseTypeDef


def get_value() -> ListBulkImportJobsResponseTypeDef:
    return {
        "jobSummaries": ...,
    }


# ListBulkImportJobsResponseTypeDef definition

class ListBulkImportJobsResponseTypeDef(TypedDict):
    jobSummaries: List[JobSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See JobSummaryTypeDef
  2. See ResponseMetadataTypeDef

SourceDetailTypeDef#

# SourceDetailTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import SourceDetailTypeDef


def get_value() -> SourceDetailTypeDef:
    return {
        "kendra": ...,
    }


# SourceDetailTypeDef definition

class SourceDetailTypeDef(TypedDict):
    kendra: NotRequired[KendraSourceDetailTypeDef],  # (1)
  1. See KendraSourceDetailTypeDef

ListProjectsResponseTypeDef#

# ListProjectsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListProjectsResponseTypeDef


def get_value() -> ListProjectsResponseTypeDef:
    return {
        "projectSummaries": ...,
    }


# ListProjectsResponseTypeDef definition

class ListProjectsResponseTypeDef(TypedDict):
    projectSummaries: List[ProjectSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See ProjectSummaryTypeDef
  2. See ResponseMetadataTypeDef

ListTimeSeriesResponseTypeDef#

# ListTimeSeriesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListTimeSeriesResponseTypeDef


def get_value() -> ListTimeSeriesResponseTypeDef:
    return {
        "TimeSeriesSummaries": ...,
    }


# ListTimeSeriesResponseTypeDef definition

class ListTimeSeriesResponseTypeDef(TypedDict):
    TimeSeriesSummaries: List[TimeSeriesSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See TimeSeriesSummaryTypeDef
  2. See ResponseMetadataTypeDef

SourceTypeDef#

# SourceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import SourceTypeDef


def get_value() -> SourceTypeDef:
    return {
        "arn": ...,
    }


# SourceTypeDef definition

class SourceTypeDef(TypedDict):
    arn: NotRequired[str],
    location: NotRequired[LocationTypeDef],  # (1)
  1. See LocationTypeDef

MetricWindowTypeDef#

# MetricWindowTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MetricWindowTypeDef


def get_value() -> MetricWindowTypeDef:
    return {
        "tumbling": ...,
    }


# MetricWindowTypeDef definition

class MetricWindowTypeDef(TypedDict):
    tumbling: NotRequired[TumblingWindowTypeDef],  # (1)
  1. See TumblingWindowTypeDef

PortalStatusTypeDef#

# PortalStatusTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PortalStatusTypeDef


def get_value() -> PortalStatusTypeDef:
    return {
        "state": ...,
    }


# PortalStatusTypeDef definition

class PortalStatusTypeDef(TypedDict):
    state: PortalStateType,  # (1)
    error: NotRequired[MonitorErrorDetailsTypeDef],  # (2)
  1. See PortalStateType
  2. See MonitorErrorDetailsTypeDef

ResourceTypeDef#

# ResourceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ResourceTypeDef


def get_value() -> ResourceTypeDef:
    return {
        "portal": ...,
    }


# ResourceTypeDef definition

class ResourceTypeDef(TypedDict):
    portal: NotRequired[PortalResourceTypeDef],  # (1)
    project: NotRequired[ProjectResourceTypeDef],  # (2)
  1. See PortalResourceTypeDef
  2. See ProjectResourceTypeDef

VariantTypeDef#

# VariantTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import VariantTypeDef


def get_value() -> VariantTypeDef:
    return {
        "stringValue": ...,
    }


# VariantTypeDef definition

class VariantTypeDef(TypedDict):
    stringValue: NotRequired[str],
    integerValue: NotRequired[int],
    doubleValue: NotRequired[float],
    booleanValue: NotRequired[bool],
    nullValue: NotRequired[PropertyValueNullValueTypeDef],  # (1)
  1. See PropertyValueNullValueTypeDef

ListActionsResponseTypeDef#

# ListActionsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListActionsResponseTypeDef


def get_value() -> ListActionsResponseTypeDef:
    return {
        "actionSummaries": ...,
    }


# ListActionsResponseTypeDef definition

class ListActionsResponseTypeDef(TypedDict):
    actionSummaries: List[ActionSummaryTypeDef],  # (1)
    nextToken: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ActionSummaryTypeDef
  2. See ResponseMetadataTypeDef

BatchGetAssetPropertyAggregatesSuccessEntryTypeDef#

# BatchGetAssetPropertyAggregatesSuccessEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyAggregatesSuccessEntryTypeDef


def get_value() -> BatchGetAssetPropertyAggregatesSuccessEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyAggregatesSuccessEntryTypeDef definition

class BatchGetAssetPropertyAggregatesSuccessEntryTypeDef(TypedDict):
    entryId: str,
    aggregatedValues: List[AggregatedValueTypeDef],  # (1)
  1. See AggregatedValueTypeDef

GetAssetPropertyAggregatesResponseTypeDef#

# GetAssetPropertyAggregatesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyAggregatesResponseTypeDef


def get_value() -> GetAssetPropertyAggregatesResponseTypeDef:
    return {
        "aggregatedValues": ...,
    }


# GetAssetPropertyAggregatesResponseTypeDef definition

class GetAssetPropertyAggregatesResponseTypeDef(TypedDict):
    aggregatedValues: List[AggregatedValueTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AggregatedValueTypeDef
  2. See ResponseMetadataTypeDef

ListAssetRelationshipsResponseTypeDef#

# ListAssetRelationshipsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetRelationshipsResponseTypeDef


def get_value() -> ListAssetRelationshipsResponseTypeDef:
    return {
        "assetRelationshipSummaries": ...,
    }


# ListAssetRelationshipsResponseTypeDef definition

class ListAssetRelationshipsResponseTypeDef(TypedDict):
    assetRelationshipSummaries: List[AssetRelationshipSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssetRelationshipSummaryTypeDef
  2. See ResponseMetadataTypeDef

ListAssetModelCompositeModelsResponseTypeDef#

# ListAssetModelCompositeModelsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelCompositeModelsResponseTypeDef


def get_value() -> ListAssetModelCompositeModelsResponseTypeDef:
    return {
        "assetModelCompositeModelSummaries": ...,
    }


# ListAssetModelCompositeModelsResponseTypeDef definition

class ListAssetModelCompositeModelsResponseTypeDef(TypedDict):
    assetModelCompositeModelSummaries: List[AssetModelCompositeModelSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssetModelCompositeModelSummaryTypeDef
  2. See ResponseMetadataTypeDef

ExpressionVariableOutputTypeDef#

# ExpressionVariableOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExpressionVariableOutputTypeDef


def get_value() -> ExpressionVariableOutputTypeDef:
    return {
        "name": ...,
    }


# ExpressionVariableOutputTypeDef definition

class ExpressionVariableOutputTypeDef(TypedDict):
    name: str,
    value: VariableValueOutputTypeDef,  # (1)
  1. See VariableValueOutputTypeDef

ListAssetPropertiesResponseTypeDef#

# ListAssetPropertiesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetPropertiesResponseTypeDef


def get_value() -> ListAssetPropertiesResponseTypeDef:
    return {
        "assetPropertySummaries": ...,
    }


# ListAssetPropertiesResponseTypeDef definition

class ListAssetPropertiesResponseTypeDef(TypedDict):
    assetPropertySummaries: List[AssetPropertySummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssetPropertySummaryTypeDef
  2. See ResponseMetadataTypeDef

AssetCompositeModelTypeDef#

# AssetCompositeModelTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetCompositeModelTypeDef


def get_value() -> AssetCompositeModelTypeDef:
    return {
        "name": ...,
    }


# AssetCompositeModelTypeDef definition

class AssetCompositeModelTypeDef(TypedDict):
    name: str,
    type: str,
    properties: List[AssetPropertyTypeDef],  # (1)
    description: NotRequired[str],
    id: NotRequired[str],
    externalId: NotRequired[str],
  1. See AssetPropertyTypeDef

DescribeAssetCompositeModelResponseTypeDef#

# DescribeAssetCompositeModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetCompositeModelResponseTypeDef


def get_value() -> DescribeAssetCompositeModelResponseTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetCompositeModelResponseTypeDef definition

class DescribeAssetCompositeModelResponseTypeDef(TypedDict):
    assetId: str,
    assetCompositeModelId: str,
    assetCompositeModelExternalId: str,
    assetCompositeModelPath: List[AssetCompositeModelPathSegmentTypeDef],  # (1)
    assetCompositeModelName: str,
    assetCompositeModelDescription: str,
    assetCompositeModelType: str,
    assetCompositeModelProperties: List[AssetPropertyTypeDef],  # (2)
    assetCompositeModelSummaries: List[AssetCompositeModelSummaryTypeDef],  # (3)
    actionDefinitions: List[ActionDefinitionTypeDef],  # (4)
    ResponseMetadata: ResponseMetadataTypeDef,  # (5)
  1. See AssetCompositeModelPathSegmentTypeDef
  2. See AssetPropertyTypeDef
  3. See AssetCompositeModelSummaryTypeDef
  4. See ActionDefinitionTypeDef
  5. See ResponseMetadataTypeDef

BatchPutAssetPropertyErrorEntryTypeDef#

# BatchPutAssetPropertyErrorEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchPutAssetPropertyErrorEntryTypeDef


def get_value() -> BatchPutAssetPropertyErrorEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchPutAssetPropertyErrorEntryTypeDef definition

class BatchPutAssetPropertyErrorEntryTypeDef(TypedDict):
    entryId: str,
    errors: List[BatchPutAssetPropertyErrorTypeDef],  # (1)
  1. See BatchPutAssetPropertyErrorTypeDef

BatchGetAssetPropertyAggregatesRequestTypeDef#

# BatchGetAssetPropertyAggregatesRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyAggregatesRequestTypeDef


def get_value() -> BatchGetAssetPropertyAggregatesRequestTypeDef:
    return {
        "entries": ...,
    }


# BatchGetAssetPropertyAggregatesRequestTypeDef definition

class BatchGetAssetPropertyAggregatesRequestTypeDef(TypedDict):
    entries: Sequence[BatchGetAssetPropertyAggregatesEntryTypeDef],  # (1)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See BatchGetAssetPropertyAggregatesEntryTypeDef

BatchGetAssetPropertyValueHistoryRequestTypeDef#

# BatchGetAssetPropertyValueHistoryRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueHistoryRequestTypeDef


def get_value() -> BatchGetAssetPropertyValueHistoryRequestTypeDef:
    return {
        "entries": ...,
    }


# BatchGetAssetPropertyValueHistoryRequestTypeDef definition

class BatchGetAssetPropertyValueHistoryRequestTypeDef(TypedDict):
    entries: Sequence[BatchGetAssetPropertyValueHistoryEntryTypeDef],  # (1)
    nextToken: NotRequired[str],
    maxResults: NotRequired[int],
  1. See BatchGetAssetPropertyValueHistoryEntryTypeDef

ImageTypeDef#

# ImageTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ImageTypeDef


def get_value() -> ImageTypeDef:
    return {
        "id": ...,
    }


# ImageTypeDef definition

class ImageTypeDef(TypedDict):
    id: NotRequired[str],
    file: NotRequired[ImageFileTypeDef],  # (1)
  1. See ImageFileTypeDef

DescribeDefaultEncryptionConfigurationResponseTypeDef#

# DescribeDefaultEncryptionConfigurationResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeDefaultEncryptionConfigurationResponseTypeDef


def get_value() -> DescribeDefaultEncryptionConfigurationResponseTypeDef:
    return {
        "encryptionType": ...,
    }


# DescribeDefaultEncryptionConfigurationResponseTypeDef definition

class DescribeDefaultEncryptionConfigurationResponseTypeDef(TypedDict):
    encryptionType: EncryptionTypeType,  # (1)
    kmsKeyArn: str,
    configurationStatus: ConfigurationStatusTypeDef,  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See EncryptionTypeType
  2. See ConfigurationStatusTypeDef
  3. See ResponseMetadataTypeDef

PutDefaultEncryptionConfigurationResponseTypeDef#

# PutDefaultEncryptionConfigurationResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PutDefaultEncryptionConfigurationResponseTypeDef


def get_value() -> PutDefaultEncryptionConfigurationResponseTypeDef:
    return {
        "encryptionType": ...,
    }


# PutDefaultEncryptionConfigurationResponseTypeDef definition

class PutDefaultEncryptionConfigurationResponseTypeDef(TypedDict):
    encryptionType: EncryptionTypeType,  # (1)
    kmsKeyArn: str,
    configurationStatus: ConfigurationStatusTypeDef,  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See EncryptionTypeType
  2. See ConfigurationStatusTypeDef
  3. See ResponseMetadataTypeDef

JobConfigurationOutputTypeDef#

# JobConfigurationOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import JobConfigurationOutputTypeDef


def get_value() -> JobConfigurationOutputTypeDef:
    return {
        "fileFormat": ...,
    }


# JobConfigurationOutputTypeDef definition

class JobConfigurationOutputTypeDef(TypedDict):
    fileFormat: FileFormatOutputTypeDef,  # (1)
  1. See FileFormatOutputTypeDef

JobConfigurationTypeDef#

# JobConfigurationTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import JobConfigurationTypeDef


def get_value() -> JobConfigurationTypeDef:
    return {
        "fileFormat": ...,
    }


# JobConfigurationTypeDef definition

class JobConfigurationTypeDef(TypedDict):
    fileFormat: FileFormatTypeDef,  # (1)
  1. See FileFormatTypeDef

DescribeStorageConfigurationResponseTypeDef#

# DescribeStorageConfigurationResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeStorageConfigurationResponseTypeDef


def get_value() -> DescribeStorageConfigurationResponseTypeDef:
    return {
        "storageType": ...,
    }


# DescribeStorageConfigurationResponseTypeDef definition

class DescribeStorageConfigurationResponseTypeDef(TypedDict):
    storageType: StorageTypeType,  # (1)
    multiLayerStorage: MultiLayerStorageTypeDef,  # (2)
    disassociatedDataStorage: DisassociatedDataStorageStateType,  # (3)
    retentionPeriod: RetentionPeriodTypeDef,  # (4)
    configurationStatus: ConfigurationStatusTypeDef,  # (5)
    lastUpdateDate: datetime,
    warmTier: WarmTierStateType,  # (6)
    warmTierRetentionPeriod: WarmTierRetentionPeriodTypeDef,  # (7)
    disallowIngestNullNaN: bool,
    ResponseMetadata: ResponseMetadataTypeDef,  # (8)
  1. See StorageTypeType
  2. See MultiLayerStorageTypeDef
  3. See DisassociatedDataStorageStateType
  4. See RetentionPeriodTypeDef
  5. See ConfigurationStatusTypeDef
  6. See WarmTierStateType
  7. See WarmTierRetentionPeriodTypeDef
  8. See ResponseMetadataTypeDef

PutStorageConfigurationRequestTypeDef#

# PutStorageConfigurationRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PutStorageConfigurationRequestTypeDef


def get_value() -> PutStorageConfigurationRequestTypeDef:
    return {
        "storageType": ...,
    }


# PutStorageConfigurationRequestTypeDef definition

class PutStorageConfigurationRequestTypeDef(TypedDict):
    storageType: StorageTypeType,  # (1)
    multiLayerStorage: NotRequired[MultiLayerStorageTypeDef],  # (2)
    disassociatedDataStorage: NotRequired[DisassociatedDataStorageStateType],  # (3)
    retentionPeriod: NotRequired[RetentionPeriodTypeDef],  # (4)
    warmTier: NotRequired[WarmTierStateType],  # (5)
    warmTierRetentionPeriod: NotRequired[WarmTierRetentionPeriodTypeDef],  # (6)
    disallowIngestNullNaN: NotRequired[bool],
  1. See StorageTypeType
  2. See MultiLayerStorageTypeDef
  3. See DisassociatedDataStorageStateType
  4. See RetentionPeriodTypeDef
  5. See WarmTierStateType
  6. See WarmTierRetentionPeriodTypeDef

PutStorageConfigurationResponseTypeDef#

# PutStorageConfigurationResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PutStorageConfigurationResponseTypeDef


def get_value() -> PutStorageConfigurationResponseTypeDef:
    return {
        "storageType": ...,
    }


# PutStorageConfigurationResponseTypeDef definition

class PutStorageConfigurationResponseTypeDef(TypedDict):
    storageType: StorageTypeType,  # (1)
    multiLayerStorage: MultiLayerStorageTypeDef,  # (2)
    disassociatedDataStorage: DisassociatedDataStorageStateType,  # (3)
    retentionPeriod: RetentionPeriodTypeDef,  # (4)
    configurationStatus: ConfigurationStatusTypeDef,  # (5)
    warmTier: WarmTierStateType,  # (6)
    warmTierRetentionPeriod: WarmTierRetentionPeriodTypeDef,  # (7)
    disallowIngestNullNaN: bool,
    ResponseMetadata: ResponseMetadataTypeDef,  # (8)
  1. See StorageTypeType
  2. See MultiLayerStorageTypeDef
  3. See DisassociatedDataStorageStateType
  4. See RetentionPeriodTypeDef
  5. See ConfigurationStatusTypeDef
  6. See WarmTierStateType
  7. See WarmTierRetentionPeriodTypeDef
  8. See ResponseMetadataTypeDef

ExecuteQueryResponsePaginatorTypeDef#

# ExecuteQueryResponsePaginatorTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExecuteQueryResponsePaginatorTypeDef


def get_value() -> ExecuteQueryResponsePaginatorTypeDef:
    return {
        "columns": ...,
    }


# ExecuteQueryResponsePaginatorTypeDef definition

class ExecuteQueryResponsePaginatorTypeDef(TypedDict):
    columns: List[ColumnInfoTypeDef],  # (1)
    rows: List[RowPaginatorTypeDef],  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
    nextToken: NotRequired[str],
  1. See ColumnInfoTypeDef
  2. See RowPaginatorTypeDef
  3. See ResponseMetadataTypeDef

ExecuteQueryResponseTypeDef#

# ExecuteQueryResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExecuteQueryResponseTypeDef


def get_value() -> ExecuteQueryResponseTypeDef:
    return {
        "columns": ...,
    }


# ExecuteQueryResponseTypeDef definition

class ExecuteQueryResponseTypeDef(TypedDict):
    columns: List[ColumnInfoTypeDef],  # (1)
    rows: List[RowTypeDef],  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
    nextToken: NotRequired[str],
  1. See ColumnInfoTypeDef
  2. See RowTypeDef
  3. See ResponseMetadataTypeDef

ExecuteQueryResponseWaiterTypeDef#

# ExecuteQueryResponseWaiterTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExecuteQueryResponseWaiterTypeDef


def get_value() -> ExecuteQueryResponseWaiterTypeDef:
    return {
        "columns": ...,
    }


# ExecuteQueryResponseWaiterTypeDef definition

class ExecuteQueryResponseWaiterTypeDef(TypedDict):
    columns: List[ColumnInfoTypeDef],  # (1)
    rows: List[RowWaiterTypeDef],  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
    nextToken: NotRequired[str],
  1. See ColumnInfoTypeDef
  2. See RowWaiterTypeDef
  3. See ResponseMetadataTypeDef

AssetModelStatusTypeDef#

# AssetModelStatusTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelStatusTypeDef


def get_value() -> AssetModelStatusTypeDef:
    return {
        "state": ...,
    }


# AssetModelStatusTypeDef definition

class AssetModelStatusTypeDef(TypedDict):
    state: AssetModelStateType,  # (1)
    error: NotRequired[ErrorDetailsTypeDef],  # (2)
  1. See AssetModelStateType
  2. See ErrorDetailsTypeDef

AssetStatusTypeDef#

# AssetStatusTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetStatusTypeDef


def get_value() -> AssetStatusTypeDef:
    return {
        "state": ...,
    }


# AssetStatusTypeDef definition

class AssetStatusTypeDef(TypedDict):
    state: AssetStateType,  # (1)
    error: NotRequired[ErrorDetailsTypeDef],  # (2)
  1. See AssetStateType
  2. See ErrorDetailsTypeDef

DatasetStatusTypeDef#

# DatasetStatusTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DatasetStatusTypeDef


def get_value() -> DatasetStatusTypeDef:
    return {
        "state": ...,
    }


# DatasetStatusTypeDef definition

class DatasetStatusTypeDef(TypedDict):
    state: DatasetStateType,  # (1)
    error: NotRequired[ErrorDetailsTypeDef],  # (2)
  1. See DatasetStateType
  2. See ErrorDetailsTypeDef

MeasurementTypeDef#

# MeasurementTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MeasurementTypeDef


def get_value() -> MeasurementTypeDef:
    return {
        "processingConfig": ...,
    }


# MeasurementTypeDef definition

class MeasurementTypeDef(TypedDict):
    processingConfig: NotRequired[MeasurementProcessingConfigTypeDef],  # (1)
  1. See MeasurementProcessingConfigTypeDef

CreateGatewayRequestTypeDef#

# CreateGatewayRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateGatewayRequestTypeDef


def get_value() -> CreateGatewayRequestTypeDef:
    return {
        "gatewayName": ...,
    }


# CreateGatewayRequestTypeDef definition

class CreateGatewayRequestTypeDef(TypedDict):
    gatewayName: str,
    gatewayPlatform: GatewayPlatformTypeDef,  # (1)
    tags: NotRequired[Mapping[str, str]],
  1. See GatewayPlatformTypeDef

DescribeGatewayResponseTypeDef#

# DescribeGatewayResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeGatewayResponseTypeDef


def get_value() -> DescribeGatewayResponseTypeDef:
    return {
        "gatewayId": ...,
    }


# DescribeGatewayResponseTypeDef definition

class DescribeGatewayResponseTypeDef(TypedDict):
    gatewayId: str,
    gatewayName: str,
    gatewayArn: str,
    gatewayPlatform: GatewayPlatformTypeDef,  # (1)
    gatewayCapabilitySummaries: List[GatewayCapabilitySummaryTypeDef],  # (2)
    creationDate: datetime,
    lastUpdateDate: datetime,
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See GatewayPlatformTypeDef
  2. See GatewayCapabilitySummaryTypeDef
  3. See ResponseMetadataTypeDef

GatewaySummaryTypeDef#

# GatewaySummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GatewaySummaryTypeDef


def get_value() -> GatewaySummaryTypeDef:
    return {
        "gatewayId": ...,
    }


# GatewaySummaryTypeDef definition

class GatewaySummaryTypeDef(TypedDict):
    gatewayId: str,
    gatewayName: str,
    creationDate: datetime,
    lastUpdateDate: datetime,
    gatewayPlatform: NotRequired[GatewayPlatformTypeDef],  # (1)
    gatewayCapabilitySummaries: NotRequired[List[GatewayCapabilitySummaryTypeDef]],  # (2)
  1. See GatewayPlatformTypeDef
  2. See GatewayCapabilitySummaryTypeDef

DatasetSourceTypeDef#

# DatasetSourceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DatasetSourceTypeDef


def get_value() -> DatasetSourceTypeDef:
    return {
        "sourceType": ...,
    }


# DatasetSourceTypeDef definition

class DatasetSourceTypeDef(TypedDict):
    sourceType: DatasetSourceTypeType,  # (1)
    sourceFormat: DatasetSourceFormatType,  # (2)
    sourceDetail: NotRequired[SourceDetailTypeDef],  # (3)
  1. See DatasetSourceTypeType
  2. See DatasetSourceFormatType
  3. See SourceDetailTypeDef

DataSetReferenceTypeDef#

# DataSetReferenceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DataSetReferenceTypeDef


def get_value() -> DataSetReferenceTypeDef:
    return {
        "datasetArn": ...,
    }


# DataSetReferenceTypeDef definition

class DataSetReferenceTypeDef(TypedDict):
    datasetArn: NotRequired[str],
    source: NotRequired[SourceTypeDef],  # (1)
  1. See SourceTypeDef

CreatePortalResponseTypeDef#

# CreatePortalResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreatePortalResponseTypeDef


def get_value() -> CreatePortalResponseTypeDef:
    return {
        "portalId": ...,
    }


# CreatePortalResponseTypeDef definition

class CreatePortalResponseTypeDef(TypedDict):
    portalId: str,
    portalArn: str,
    portalStartUrl: str,
    portalStatus: PortalStatusTypeDef,  # (1)
    ssoApplicationId: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See PortalStatusTypeDef
  2. See ResponseMetadataTypeDef

DeletePortalResponseTypeDef#

# DeletePortalResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeletePortalResponseTypeDef


def get_value() -> DeletePortalResponseTypeDef:
    return {
        "portalStatus": ...,
    }


# DeletePortalResponseTypeDef definition

class DeletePortalResponseTypeDef(TypedDict):
    portalStatus: PortalStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See PortalStatusTypeDef
  2. See ResponseMetadataTypeDef

DescribePortalResponseTypeDef#

# DescribePortalResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribePortalResponseTypeDef


def get_value() -> DescribePortalResponseTypeDef:
    return {
        "portalId": ...,
    }


# DescribePortalResponseTypeDef definition

class DescribePortalResponseTypeDef(TypedDict):
    portalId: str,
    portalArn: str,
    portalName: str,
    portalDescription: str,
    portalClientId: str,
    portalStartUrl: str,
    portalContactEmail: str,
    portalStatus: PortalStatusTypeDef,  # (1)
    portalCreationDate: datetime,
    portalLastUpdateDate: datetime,
    portalLogoImageLocation: ImageLocationTypeDef,  # (2)
    roleArn: str,
    portalAuthMode: AuthModeType,  # (3)
    notificationSenderEmail: str,
    alarms: AlarmsTypeDef,  # (4)
    portalType: PortalTypeType,  # (5)
    portalTypeConfiguration: Dict[str, PortalTypeEntryOutputTypeDef],  # (6)
    ResponseMetadata: ResponseMetadataTypeDef,  # (7)
  1. See PortalStatusTypeDef
  2. See ImageLocationTypeDef
  3. See AuthModeType
  4. See AlarmsTypeDef
  5. See PortalTypeType
  6. See PortalTypeEntryOutputTypeDef
  7. See ResponseMetadataTypeDef

PortalSummaryTypeDef#

# PortalSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PortalSummaryTypeDef


def get_value() -> PortalSummaryTypeDef:
    return {
        "id": ...,
    }


# PortalSummaryTypeDef definition

class PortalSummaryTypeDef(TypedDict):
    id: str,
    name: str,
    startUrl: str,
    status: PortalStatusTypeDef,  # (1)
    description: NotRequired[str],
    creationDate: NotRequired[datetime],
    lastUpdateDate: NotRequired[datetime],
    roleArn: NotRequired[str],
    portalType: NotRequired[PortalTypeType],  # (2)
  1. See PortalStatusTypeDef
  2. See PortalTypeType

UpdatePortalResponseTypeDef#

# UpdatePortalResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdatePortalResponseTypeDef


def get_value() -> UpdatePortalResponseTypeDef:
    return {
        "portalStatus": ...,
    }


# UpdatePortalResponseTypeDef definition

class UpdatePortalResponseTypeDef(TypedDict):
    portalStatus: PortalStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See PortalStatusTypeDef
  2. See ResponseMetadataTypeDef

CreatePortalRequestTypeDef#

# CreatePortalRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreatePortalRequestTypeDef


def get_value() -> CreatePortalRequestTypeDef:
    return {
        "portalName": ...,
    }


# CreatePortalRequestTypeDef definition

class CreatePortalRequestTypeDef(TypedDict):
    portalName: str,
    portalContactEmail: str,
    roleArn: str,
    portalDescription: NotRequired[str],
    clientToken: NotRequired[str],
    portalLogoImageFile: NotRequired[ImageFileTypeDef],  # (1)
    tags: NotRequired[Mapping[str, str]],
    portalAuthMode: NotRequired[AuthModeType],  # (2)
    notificationSenderEmail: NotRequired[str],
    alarms: NotRequired[AlarmsTypeDef],  # (3)
    portalType: NotRequired[PortalTypeType],  # (4)
    portalTypeConfiguration: NotRequired[Mapping[str, PortalTypeEntryUnionTypeDef]],  # (5)
  1. See ImageFileTypeDef
  2. See AuthModeType
  3. See AlarmsTypeDef
  4. See PortalTypeType
  5. See PortalTypeEntryTypeDef PortalTypeEntryOutputTypeDef

AccessPolicySummaryTypeDef#

# AccessPolicySummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AccessPolicySummaryTypeDef


def get_value() -> AccessPolicySummaryTypeDef:
    return {
        "id": ...,
    }


# AccessPolicySummaryTypeDef definition

class AccessPolicySummaryTypeDef(TypedDict):
    id: str,
    identity: IdentityTypeDef,  # (1)
    resource: ResourceTypeDef,  # (2)
    permission: PermissionType,  # (3)
    creationDate: NotRequired[datetime],
    lastUpdateDate: NotRequired[datetime],
  1. See IdentityTypeDef
  2. See ResourceTypeDef
  3. See PermissionType

CreateAccessPolicyRequestTypeDef#

# CreateAccessPolicyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAccessPolicyRequestTypeDef


def get_value() -> CreateAccessPolicyRequestTypeDef:
    return {
        "accessPolicyIdentity": ...,
    }


# CreateAccessPolicyRequestTypeDef definition

class CreateAccessPolicyRequestTypeDef(TypedDict):
    accessPolicyIdentity: IdentityTypeDef,  # (1)
    accessPolicyResource: ResourceTypeDef,  # (2)
    accessPolicyPermission: PermissionType,  # (3)
    clientToken: NotRequired[str],
    tags: NotRequired[Mapping[str, str]],
  1. See IdentityTypeDef
  2. See ResourceTypeDef
  3. See PermissionType

DescribeAccessPolicyResponseTypeDef#

# DescribeAccessPolicyResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAccessPolicyResponseTypeDef


def get_value() -> DescribeAccessPolicyResponseTypeDef:
    return {
        "accessPolicyId": ...,
    }


# DescribeAccessPolicyResponseTypeDef definition

class DescribeAccessPolicyResponseTypeDef(TypedDict):
    accessPolicyId: str,
    accessPolicyArn: str,
    accessPolicyIdentity: IdentityTypeDef,  # (1)
    accessPolicyResource: ResourceTypeDef,  # (2)
    accessPolicyPermission: PermissionType,  # (3)
    accessPolicyCreationDate: datetime,
    accessPolicyLastUpdateDate: datetime,
    ResponseMetadata: ResponseMetadataTypeDef,  # (4)
  1. See IdentityTypeDef
  2. See ResourceTypeDef
  3. See PermissionType
  4. See ResponseMetadataTypeDef

UpdateAccessPolicyRequestTypeDef#

# UpdateAccessPolicyRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAccessPolicyRequestTypeDef


def get_value() -> UpdateAccessPolicyRequestTypeDef:
    return {
        "accessPolicyId": ...,
    }


# UpdateAccessPolicyRequestTypeDef definition

class UpdateAccessPolicyRequestTypeDef(TypedDict):
    accessPolicyId: str,
    accessPolicyIdentity: IdentityTypeDef,  # (1)
    accessPolicyResource: ResourceTypeDef,  # (2)
    accessPolicyPermission: PermissionType,  # (3)
    clientToken: NotRequired[str],
  1. See IdentityTypeDef
  2. See ResourceTypeDef
  3. See PermissionType

AssetPropertyValueTypeDef#

# AssetPropertyValueTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetPropertyValueTypeDef


def get_value() -> AssetPropertyValueTypeDef:
    return {
        "value": ...,
    }


# AssetPropertyValueTypeDef definition

class AssetPropertyValueTypeDef(TypedDict):
    value: VariantTypeDef,  # (1)
    timestamp: TimeInNanosTypeDef,  # (2)
    quality: NotRequired[QualityType],  # (3)
  1. See VariantTypeDef
  2. See TimeInNanosTypeDef
  3. See QualityType

InterpolatedAssetPropertyValueTypeDef#

# InterpolatedAssetPropertyValueTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import InterpolatedAssetPropertyValueTypeDef


def get_value() -> InterpolatedAssetPropertyValueTypeDef:
    return {
        "timestamp": ...,
    }


# InterpolatedAssetPropertyValueTypeDef definition

class InterpolatedAssetPropertyValueTypeDef(TypedDict):
    timestamp: TimeInNanosTypeDef,  # (1)
    value: VariantTypeDef,  # (2)
  1. See TimeInNanosTypeDef
  2. See VariantTypeDef

BatchGetAssetPropertyAggregatesResponseTypeDef#

# BatchGetAssetPropertyAggregatesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyAggregatesResponseTypeDef


def get_value() -> BatchGetAssetPropertyAggregatesResponseTypeDef:
    return {
        "errorEntries": ...,
    }


# BatchGetAssetPropertyAggregatesResponseTypeDef definition

class BatchGetAssetPropertyAggregatesResponseTypeDef(TypedDict):
    errorEntries: List[BatchGetAssetPropertyAggregatesErrorEntryTypeDef],  # (1)
    successEntries: List[BatchGetAssetPropertyAggregatesSuccessEntryTypeDef],  # (2)
    skippedEntries: List[BatchGetAssetPropertyAggregatesSkippedEntryTypeDef],  # (3)
    ResponseMetadata: ResponseMetadataTypeDef,  # (4)
    nextToken: NotRequired[str],
  1. See BatchGetAssetPropertyAggregatesErrorEntryTypeDef
  2. See BatchGetAssetPropertyAggregatesSuccessEntryTypeDef
  3. See BatchGetAssetPropertyAggregatesSkippedEntryTypeDef
  4. See ResponseMetadataTypeDef

MetricOutputTypeDef#

# MetricOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MetricOutputTypeDef


def get_value() -> MetricOutputTypeDef:
    return {
        "expression": ...,
    }


# MetricOutputTypeDef definition

class MetricOutputTypeDef(TypedDict):
    expression: str,
    variables: List[ExpressionVariableOutputTypeDef],  # (1)
    window: MetricWindowTypeDef,  # (2)
    processingConfig: NotRequired[MetricProcessingConfigTypeDef],  # (3)
  1. See ExpressionVariableOutputTypeDef
  2. See MetricWindowTypeDef
  3. See MetricProcessingConfigTypeDef

TransformOutputTypeDef#

# TransformOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TransformOutputTypeDef


def get_value() -> TransformOutputTypeDef:
    return {
        "expression": ...,
    }


# TransformOutputTypeDef definition

class TransformOutputTypeDef(TypedDict):
    expression: str,
    variables: List[ExpressionVariableOutputTypeDef],  # (1)
    processingConfig: NotRequired[TransformProcessingConfigTypeDef],  # (2)
  1. See ExpressionVariableOutputTypeDef
  2. See TransformProcessingConfigTypeDef

ExpressionVariableTypeDef#

# ExpressionVariableTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ExpressionVariableTypeDef


def get_value() -> ExpressionVariableTypeDef:
    return {
        "name": ...,
    }


# ExpressionVariableTypeDef definition

class ExpressionVariableTypeDef(TypedDict):
    name: str,
    value: VariableValueUnionTypeDef,  # (1)
  1. See VariableValueTypeDef VariableValueOutputTypeDef

BatchPutAssetPropertyValueResponseTypeDef#

# BatchPutAssetPropertyValueResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchPutAssetPropertyValueResponseTypeDef


def get_value() -> BatchPutAssetPropertyValueResponseTypeDef:
    return {
        "errorEntries": ...,
    }


# BatchPutAssetPropertyValueResponseTypeDef definition

class BatchPutAssetPropertyValueResponseTypeDef(TypedDict):
    errorEntries: List[BatchPutAssetPropertyErrorEntryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See BatchPutAssetPropertyErrorEntryTypeDef
  2. See ResponseMetadataTypeDef

UpdatePortalRequestTypeDef#

# UpdatePortalRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdatePortalRequestTypeDef


def get_value() -> UpdatePortalRequestTypeDef:
    return {
        "portalId": ...,
    }


# UpdatePortalRequestTypeDef definition

class UpdatePortalRequestTypeDef(TypedDict):
    portalId: str,
    portalName: str,
    portalContactEmail: str,
    roleArn: str,
    portalDescription: NotRequired[str],
    portalLogoImage: NotRequired[ImageTypeDef],  # (1)
    clientToken: NotRequired[str],
    notificationSenderEmail: NotRequired[str],
    alarms: NotRequired[AlarmsTypeDef],  # (2)
    portalType: NotRequired[PortalTypeType],  # (3)
    portalTypeConfiguration: NotRequired[Mapping[str, PortalTypeEntryUnionTypeDef]],  # (4)
  1. See ImageTypeDef
  2. See AlarmsTypeDef
  3. See PortalTypeType
  4. See PortalTypeEntryTypeDef PortalTypeEntryOutputTypeDef

DescribeBulkImportJobResponseTypeDef#

# DescribeBulkImportJobResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeBulkImportJobResponseTypeDef


def get_value() -> DescribeBulkImportJobResponseTypeDef:
    return {
        "jobId": ...,
    }


# DescribeBulkImportJobResponseTypeDef definition

class DescribeBulkImportJobResponseTypeDef(TypedDict):
    jobId: str,
    jobName: str,
    jobStatus: JobStatusType,  # (1)
    jobRoleArn: str,
    files: List[FileTypeDef],  # (2)
    errorReportLocation: ErrorReportLocationTypeDef,  # (3)
    jobConfiguration: JobConfigurationOutputTypeDef,  # (4)
    jobCreationDate: datetime,
    jobLastUpdateDate: datetime,
    adaptiveIngestion: bool,
    deleteFilesAfterImport: bool,
    ResponseMetadata: ResponseMetadataTypeDef,  # (5)
  1. See JobStatusType
  2. See FileTypeDef
  3. See ErrorReportLocationTypeDef
  4. See JobConfigurationOutputTypeDef
  5. See ResponseMetadataTypeDef

AssetModelSummaryTypeDef#

# AssetModelSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelSummaryTypeDef


def get_value() -> AssetModelSummaryTypeDef:
    return {
        "id": ...,
    }


# AssetModelSummaryTypeDef definition

class AssetModelSummaryTypeDef(TypedDict):
    id: str,
    arn: str,
    name: str,
    description: str,
    creationDate: datetime,
    lastUpdateDate: datetime,
    status: AssetModelStatusTypeDef,  # (2)
    externalId: NotRequired[str],
    assetModelType: NotRequired[AssetModelTypeType],  # (1)
    version: NotRequired[str],
  1. See AssetModelTypeType
  2. See AssetModelStatusTypeDef

CreateAssetModelCompositeModelResponseTypeDef#

# CreateAssetModelCompositeModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAssetModelCompositeModelResponseTypeDef


def get_value() -> CreateAssetModelCompositeModelResponseTypeDef:
    return {
        "assetModelCompositeModelId": ...,
    }


# CreateAssetModelCompositeModelResponseTypeDef definition

class CreateAssetModelCompositeModelResponseTypeDef(TypedDict):
    assetModelCompositeModelId: str,
    assetModelCompositeModelPath: List[AssetModelCompositeModelPathSegmentTypeDef],  # (1)
    assetModelStatus: AssetModelStatusTypeDef,  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See AssetModelCompositeModelPathSegmentTypeDef
  2. See AssetModelStatusTypeDef
  3. See ResponseMetadataTypeDef

CreateAssetModelResponseTypeDef#

# CreateAssetModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAssetModelResponseTypeDef


def get_value() -> CreateAssetModelResponseTypeDef:
    return {
        "assetModelId": ...,
    }


# CreateAssetModelResponseTypeDef definition

class CreateAssetModelResponseTypeDef(TypedDict):
    assetModelId: str,
    assetModelArn: str,
    assetModelStatus: AssetModelStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetModelStatusTypeDef
  2. See ResponseMetadataTypeDef

DeleteAssetModelCompositeModelResponseTypeDef#

# DeleteAssetModelCompositeModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteAssetModelCompositeModelResponseTypeDef


def get_value() -> DeleteAssetModelCompositeModelResponseTypeDef:
    return {
        "assetModelStatus": ...,
    }


# DeleteAssetModelCompositeModelResponseTypeDef definition

class DeleteAssetModelCompositeModelResponseTypeDef(TypedDict):
    assetModelStatus: AssetModelStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetModelStatusTypeDef
  2. See ResponseMetadataTypeDef

DeleteAssetModelResponseTypeDef#

# DeleteAssetModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteAssetModelResponseTypeDef


def get_value() -> DeleteAssetModelResponseTypeDef:
    return {
        "assetModelStatus": ...,
    }


# DeleteAssetModelResponseTypeDef definition

class DeleteAssetModelResponseTypeDef(TypedDict):
    assetModelStatus: AssetModelStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetModelStatusTypeDef
  2. See ResponseMetadataTypeDef

UpdateAssetModelCompositeModelResponseTypeDef#

# UpdateAssetModelCompositeModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAssetModelCompositeModelResponseTypeDef


def get_value() -> UpdateAssetModelCompositeModelResponseTypeDef:
    return {
        "assetModelCompositeModelPath": ...,
    }


# UpdateAssetModelCompositeModelResponseTypeDef definition

class UpdateAssetModelCompositeModelResponseTypeDef(TypedDict):
    assetModelCompositeModelPath: List[AssetModelCompositeModelPathSegmentTypeDef],  # (1)
    assetModelStatus: AssetModelStatusTypeDef,  # (2)
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See AssetModelCompositeModelPathSegmentTypeDef
  2. See AssetModelStatusTypeDef
  3. See ResponseMetadataTypeDef

UpdateAssetModelResponseTypeDef#

# UpdateAssetModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAssetModelResponseTypeDef


def get_value() -> UpdateAssetModelResponseTypeDef:
    return {
        "assetModelStatus": ...,
    }


# UpdateAssetModelResponseTypeDef definition

class UpdateAssetModelResponseTypeDef(TypedDict):
    assetModelStatus: AssetModelStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetModelStatusTypeDef
  2. See ResponseMetadataTypeDef

AssetSummaryTypeDef#

# AssetSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetSummaryTypeDef


def get_value() -> AssetSummaryTypeDef:
    return {
        "id": ...,
    }


# AssetSummaryTypeDef definition

class AssetSummaryTypeDef(TypedDict):
    id: str,
    arn: str,
    name: str,
    assetModelId: str,
    creationDate: datetime,
    lastUpdateDate: datetime,
    status: AssetStatusTypeDef,  # (1)
    hierarchies: List[AssetHierarchyTypeDef],  # (2)
    description: NotRequired[str],
    externalId: NotRequired[str],
  1. See AssetStatusTypeDef
  2. See AssetHierarchyTypeDef

AssociatedAssetsSummaryTypeDef#

# AssociatedAssetsSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssociatedAssetsSummaryTypeDef


def get_value() -> AssociatedAssetsSummaryTypeDef:
    return {
        "id": ...,
    }


# AssociatedAssetsSummaryTypeDef definition

class AssociatedAssetsSummaryTypeDef(TypedDict):
    id: str,
    arn: str,
    name: str,
    assetModelId: str,
    creationDate: datetime,
    lastUpdateDate: datetime,
    status: AssetStatusTypeDef,  # (1)
    hierarchies: List[AssetHierarchyTypeDef],  # (2)
    description: NotRequired[str],
    externalId: NotRequired[str],
  1. See AssetStatusTypeDef
  2. See AssetHierarchyTypeDef

CreateAssetResponseTypeDef#

# CreateAssetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAssetResponseTypeDef


def get_value() -> CreateAssetResponseTypeDef:
    return {
        "assetId": ...,
    }


# CreateAssetResponseTypeDef definition

class CreateAssetResponseTypeDef(TypedDict):
    assetId: str,
    assetArn: str,
    assetStatus: AssetStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetStatusTypeDef
  2. See ResponseMetadataTypeDef

DeleteAssetResponseTypeDef#

# DeleteAssetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteAssetResponseTypeDef


def get_value() -> DeleteAssetResponseTypeDef:
    return {
        "assetStatus": ...,
    }


# DeleteAssetResponseTypeDef definition

class DeleteAssetResponseTypeDef(TypedDict):
    assetStatus: AssetStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetStatusTypeDef
  2. See ResponseMetadataTypeDef

DescribeAssetResponseTypeDef#

# DescribeAssetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetResponseTypeDef


def get_value() -> DescribeAssetResponseTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetResponseTypeDef definition

class DescribeAssetResponseTypeDef(TypedDict):
    assetId: str,
    assetArn: str,
    assetName: str,
    assetModelId: str,
    assetProperties: List[AssetPropertyTypeDef],  # (1)
    assetHierarchies: List[AssetHierarchyTypeDef],  # (2)
    assetCompositeModels: List[AssetCompositeModelTypeDef],  # (3)
    assetCreationDate: datetime,
    assetLastUpdateDate: datetime,
    assetStatus: AssetStatusTypeDef,  # (4)
    assetDescription: str,
    assetCompositeModelSummaries: List[AssetCompositeModelSummaryTypeDef],  # (5)
    assetExternalId: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (6)
  1. See AssetPropertyTypeDef
  2. See AssetHierarchyTypeDef
  3. See AssetCompositeModelTypeDef
  4. See AssetStatusTypeDef
  5. See AssetCompositeModelSummaryTypeDef
  6. See ResponseMetadataTypeDef

UpdateAssetResponseTypeDef#

# UpdateAssetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAssetResponseTypeDef


def get_value() -> UpdateAssetResponseTypeDef:
    return {
        "assetStatus": ...,
    }


# UpdateAssetResponseTypeDef definition

class UpdateAssetResponseTypeDef(TypedDict):
    assetStatus: AssetStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetStatusTypeDef
  2. See ResponseMetadataTypeDef

CreateDatasetResponseTypeDef#

# CreateDatasetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateDatasetResponseTypeDef


def get_value() -> CreateDatasetResponseTypeDef:
    return {
        "datasetId": ...,
    }


# CreateDatasetResponseTypeDef definition

class CreateDatasetResponseTypeDef(TypedDict):
    datasetId: str,
    datasetArn: str,
    datasetStatus: DatasetStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See DatasetStatusTypeDef
  2. See ResponseMetadataTypeDef

DatasetSummaryTypeDef#

# DatasetSummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DatasetSummaryTypeDef


def get_value() -> DatasetSummaryTypeDef:
    return {
        "id": ...,
    }


# DatasetSummaryTypeDef definition

class DatasetSummaryTypeDef(TypedDict):
    id: str,
    arn: str,
    name: str,
    description: str,
    creationDate: datetime,
    lastUpdateDate: datetime,
    status: DatasetStatusTypeDef,  # (1)
  1. See DatasetStatusTypeDef

DeleteDatasetResponseTypeDef#

# DeleteDatasetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DeleteDatasetResponseTypeDef


def get_value() -> DeleteDatasetResponseTypeDef:
    return {
        "datasetStatus": ...,
    }


# DeleteDatasetResponseTypeDef definition

class DeleteDatasetResponseTypeDef(TypedDict):
    datasetStatus: DatasetStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See DatasetStatusTypeDef
  2. See ResponseMetadataTypeDef

UpdateDatasetResponseTypeDef#

# UpdateDatasetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateDatasetResponseTypeDef


def get_value() -> UpdateDatasetResponseTypeDef:
    return {
        "datasetId": ...,
    }


# UpdateDatasetResponseTypeDef definition

class UpdateDatasetResponseTypeDef(TypedDict):
    datasetId: str,
    datasetArn: str,
    datasetStatus: DatasetStatusTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See DatasetStatusTypeDef
  2. See ResponseMetadataTypeDef

ListGatewaysResponseTypeDef#

# ListGatewaysResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListGatewaysResponseTypeDef


def get_value() -> ListGatewaysResponseTypeDef:
    return {
        "gatewaySummaries": ...,
    }


# ListGatewaysResponseTypeDef definition

class ListGatewaysResponseTypeDef(TypedDict):
    gatewaySummaries: List[GatewaySummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See GatewaySummaryTypeDef
  2. See ResponseMetadataTypeDef

CreateDatasetRequestTypeDef#

# CreateDatasetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateDatasetRequestTypeDef


def get_value() -> CreateDatasetRequestTypeDef:
    return {
        "datasetName": ...,
    }


# CreateDatasetRequestTypeDef definition

class CreateDatasetRequestTypeDef(TypedDict):
    datasetName: str,
    datasetSource: DatasetSourceTypeDef,  # (1)
    datasetId: NotRequired[str],
    datasetDescription: NotRequired[str],
    clientToken: NotRequired[str],
    tags: NotRequired[Mapping[str, str]],
  1. See DatasetSourceTypeDef

DescribeDatasetResponseTypeDef#

# DescribeDatasetResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeDatasetResponseTypeDef


def get_value() -> DescribeDatasetResponseTypeDef:
    return {
        "datasetId": ...,
    }


# DescribeDatasetResponseTypeDef definition

class DescribeDatasetResponseTypeDef(TypedDict):
    datasetId: str,
    datasetArn: str,
    datasetName: str,
    datasetDescription: str,
    datasetSource: DatasetSourceTypeDef,  # (1)
    datasetStatus: DatasetStatusTypeDef,  # (2)
    datasetCreationDate: datetime,
    datasetLastUpdateDate: datetime,
    datasetVersion: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See DatasetSourceTypeDef
  2. See DatasetStatusTypeDef
  3. See ResponseMetadataTypeDef

UpdateDatasetRequestTypeDef#

# UpdateDatasetRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateDatasetRequestTypeDef


def get_value() -> UpdateDatasetRequestTypeDef:
    return {
        "datasetId": ...,
    }


# UpdateDatasetRequestTypeDef definition

class UpdateDatasetRequestTypeDef(TypedDict):
    datasetId: str,
    datasetName: str,
    datasetSource: DatasetSourceTypeDef,  # (1)
    datasetDescription: NotRequired[str],
    clientToken: NotRequired[str],
  1. See DatasetSourceTypeDef

ReferenceTypeDef#

# ReferenceTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ReferenceTypeDef


def get_value() -> ReferenceTypeDef:
    return {
        "dataset": ...,
    }


# ReferenceTypeDef definition

class ReferenceTypeDef(TypedDict):
    dataset: NotRequired[DataSetReferenceTypeDef],  # (1)
  1. See DataSetReferenceTypeDef

ListPortalsResponseTypeDef#

# ListPortalsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListPortalsResponseTypeDef


def get_value() -> ListPortalsResponseTypeDef:
    return {
        "portalSummaries": ...,
    }


# ListPortalsResponseTypeDef definition

class ListPortalsResponseTypeDef(TypedDict):
    portalSummaries: List[PortalSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See PortalSummaryTypeDef
  2. See ResponseMetadataTypeDef

ListAccessPoliciesResponseTypeDef#

# ListAccessPoliciesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAccessPoliciesResponseTypeDef


def get_value() -> ListAccessPoliciesResponseTypeDef:
    return {
        "accessPolicySummaries": ...,
    }


# ListAccessPoliciesResponseTypeDef definition

class ListAccessPoliciesResponseTypeDef(TypedDict):
    accessPolicySummaries: List[AccessPolicySummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AccessPolicySummaryTypeDef
  2. See ResponseMetadataTypeDef

BatchGetAssetPropertyValueHistorySuccessEntryTypeDef#

# BatchGetAssetPropertyValueHistorySuccessEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueHistorySuccessEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueHistorySuccessEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyValueHistorySuccessEntryTypeDef definition

class BatchGetAssetPropertyValueHistorySuccessEntryTypeDef(TypedDict):
    entryId: str,
    assetPropertyValueHistory: List[AssetPropertyValueTypeDef],  # (1)
  1. See AssetPropertyValueTypeDef

BatchGetAssetPropertyValueSuccessEntryTypeDef#

# BatchGetAssetPropertyValueSuccessEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueSuccessEntryTypeDef


def get_value() -> BatchGetAssetPropertyValueSuccessEntryTypeDef:
    return {
        "entryId": ...,
    }


# BatchGetAssetPropertyValueSuccessEntryTypeDef definition

class BatchGetAssetPropertyValueSuccessEntryTypeDef(TypedDict):
    entryId: str,
    assetPropertyValue: NotRequired[AssetPropertyValueTypeDef],  # (1)
  1. See AssetPropertyValueTypeDef

GetAssetPropertyValueHistoryResponseTypeDef#

# GetAssetPropertyValueHistoryResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyValueHistoryResponseTypeDef


def get_value() -> GetAssetPropertyValueHistoryResponseTypeDef:
    return {
        "assetPropertyValueHistory": ...,
    }


# GetAssetPropertyValueHistoryResponseTypeDef definition

class GetAssetPropertyValueHistoryResponseTypeDef(TypedDict):
    assetPropertyValueHistory: List[AssetPropertyValueTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssetPropertyValueTypeDef
  2. See ResponseMetadataTypeDef

GetAssetPropertyValueResponseTypeDef#

# GetAssetPropertyValueResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetAssetPropertyValueResponseTypeDef


def get_value() -> GetAssetPropertyValueResponseTypeDef:
    return {
        "propertyValue": ...,
    }


# GetAssetPropertyValueResponseTypeDef definition

class GetAssetPropertyValueResponseTypeDef(TypedDict):
    propertyValue: AssetPropertyValueTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See AssetPropertyValueTypeDef
  2. See ResponseMetadataTypeDef

PutAssetPropertyValueEntryTypeDef#

# PutAssetPropertyValueEntryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PutAssetPropertyValueEntryTypeDef


def get_value() -> PutAssetPropertyValueEntryTypeDef:
    return {
        "entryId": ...,
    }


# PutAssetPropertyValueEntryTypeDef definition

class PutAssetPropertyValueEntryTypeDef(TypedDict):
    entryId: str,
    propertyValues: Sequence[AssetPropertyValueTypeDef],  # (1)
    assetId: NotRequired[str],
    propertyId: NotRequired[str],
    propertyAlias: NotRequired[str],
  1. See AssetPropertyValueTypeDef

GetInterpolatedAssetPropertyValuesResponseTypeDef#

# GetInterpolatedAssetPropertyValuesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import GetInterpolatedAssetPropertyValuesResponseTypeDef


def get_value() -> GetInterpolatedAssetPropertyValuesResponseTypeDef:
    return {
        "interpolatedAssetPropertyValues": ...,
    }


# GetInterpolatedAssetPropertyValuesResponseTypeDef definition

class GetInterpolatedAssetPropertyValuesResponseTypeDef(TypedDict):
    interpolatedAssetPropertyValues: List[InterpolatedAssetPropertyValueTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See InterpolatedAssetPropertyValueTypeDef
  2. See ResponseMetadataTypeDef

PropertyTypeOutputTypeDef#

# PropertyTypeOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PropertyTypeOutputTypeDef


def get_value() -> PropertyTypeOutputTypeDef:
    return {
        "attribute": ...,
    }


# PropertyTypeOutputTypeDef definition

class PropertyTypeOutputTypeDef(TypedDict):
    attribute: NotRequired[AttributeTypeDef],  # (1)
    measurement: NotRequired[MeasurementTypeDef],  # (2)
    transform: NotRequired[TransformOutputTypeDef],  # (3)
    metric: NotRequired[MetricOutputTypeDef],  # (4)
  1. See AttributeTypeDef
  2. See MeasurementTypeDef
  3. See TransformOutputTypeDef
  4. See MetricOutputTypeDef

CreateBulkImportJobRequestTypeDef#

# CreateBulkImportJobRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateBulkImportJobRequestTypeDef


def get_value() -> CreateBulkImportJobRequestTypeDef:
    return {
        "jobName": ...,
    }


# CreateBulkImportJobRequestTypeDef definition

class CreateBulkImportJobRequestTypeDef(TypedDict):
    jobName: str,
    jobRoleArn: str,
    files: Sequence[FileTypeDef],  # (1)
    errorReportLocation: ErrorReportLocationTypeDef,  # (2)
    jobConfiguration: JobConfigurationUnionTypeDef,  # (3)
    adaptiveIngestion: NotRequired[bool],
    deleteFilesAfterImport: NotRequired[bool],
  1. See FileTypeDef
  2. See ErrorReportLocationTypeDef
  3. See JobConfigurationTypeDef JobConfigurationOutputTypeDef

ListAssetModelsResponseTypeDef#

# ListAssetModelsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelsResponseTypeDef


def get_value() -> ListAssetModelsResponseTypeDef:
    return {
        "assetModelSummaries": ...,
    }


# ListAssetModelsResponseTypeDef definition

class ListAssetModelsResponseTypeDef(TypedDict):
    assetModelSummaries: List[AssetModelSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssetModelSummaryTypeDef
  2. See ResponseMetadataTypeDef

ListAssetsResponseTypeDef#

# ListAssetsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetsResponseTypeDef


def get_value() -> ListAssetsResponseTypeDef:
    return {
        "assetSummaries": ...,
    }


# ListAssetsResponseTypeDef definition

class ListAssetsResponseTypeDef(TypedDict):
    assetSummaries: List[AssetSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssetSummaryTypeDef
  2. See ResponseMetadataTypeDef

ListAssociatedAssetsResponseTypeDef#

# ListAssociatedAssetsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssociatedAssetsResponseTypeDef


def get_value() -> ListAssociatedAssetsResponseTypeDef:
    return {
        "assetSummaries": ...,
    }


# ListAssociatedAssetsResponseTypeDef definition

class ListAssociatedAssetsResponseTypeDef(TypedDict):
    assetSummaries: List[AssociatedAssetsSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssociatedAssetsSummaryTypeDef
  2. See ResponseMetadataTypeDef

ListDatasetsResponseTypeDef#

# ListDatasetsResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListDatasetsResponseTypeDef


def get_value() -> ListDatasetsResponseTypeDef:
    return {
        "datasetSummaries": ...,
    }


# ListDatasetsResponseTypeDef definition

class ListDatasetsResponseTypeDef(TypedDict):
    datasetSummaries: List[DatasetSummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See DatasetSummaryTypeDef
  2. See ResponseMetadataTypeDef

CitationTypeDef#

# CitationTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CitationTypeDef


def get_value() -> CitationTypeDef:
    return {
        "reference": ...,
    }


# CitationTypeDef definition

class CitationTypeDef(TypedDict):
    reference: NotRequired[ReferenceTypeDef],  # (1)
    content: NotRequired[ContentTypeDef],  # (2)
  1. See ReferenceTypeDef
  2. See ContentTypeDef

BatchGetAssetPropertyValueHistoryResponseTypeDef#

# BatchGetAssetPropertyValueHistoryResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueHistoryResponseTypeDef


def get_value() -> BatchGetAssetPropertyValueHistoryResponseTypeDef:
    return {
        "errorEntries": ...,
    }


# BatchGetAssetPropertyValueHistoryResponseTypeDef definition

class BatchGetAssetPropertyValueHistoryResponseTypeDef(TypedDict):
    errorEntries: List[BatchGetAssetPropertyValueHistoryErrorEntryTypeDef],  # (1)
    successEntries: List[BatchGetAssetPropertyValueHistorySuccessEntryTypeDef],  # (2)
    skippedEntries: List[BatchGetAssetPropertyValueHistorySkippedEntryTypeDef],  # (3)
    ResponseMetadata: ResponseMetadataTypeDef,  # (4)
    nextToken: NotRequired[str],
  1. See BatchGetAssetPropertyValueHistoryErrorEntryTypeDef
  2. See BatchGetAssetPropertyValueHistorySuccessEntryTypeDef
  3. See BatchGetAssetPropertyValueHistorySkippedEntryTypeDef
  4. See ResponseMetadataTypeDef

BatchGetAssetPropertyValueResponseTypeDef#

# BatchGetAssetPropertyValueResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchGetAssetPropertyValueResponseTypeDef


def get_value() -> BatchGetAssetPropertyValueResponseTypeDef:
    return {
        "errorEntries": ...,
    }


# BatchGetAssetPropertyValueResponseTypeDef definition

class BatchGetAssetPropertyValueResponseTypeDef(TypedDict):
    errorEntries: List[BatchGetAssetPropertyValueErrorEntryTypeDef],  # (1)
    successEntries: List[BatchGetAssetPropertyValueSuccessEntryTypeDef],  # (2)
    skippedEntries: List[BatchGetAssetPropertyValueSkippedEntryTypeDef],  # (3)
    ResponseMetadata: ResponseMetadataTypeDef,  # (4)
    nextToken: NotRequired[str],
  1. See BatchGetAssetPropertyValueErrorEntryTypeDef
  2. See BatchGetAssetPropertyValueSuccessEntryTypeDef
  3. See BatchGetAssetPropertyValueSkippedEntryTypeDef
  4. See ResponseMetadataTypeDef

BatchPutAssetPropertyValueRequestTypeDef#

# BatchPutAssetPropertyValueRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import BatchPutAssetPropertyValueRequestTypeDef


def get_value() -> BatchPutAssetPropertyValueRequestTypeDef:
    return {
        "entries": ...,
    }


# BatchPutAssetPropertyValueRequestTypeDef definition

class BatchPutAssetPropertyValueRequestTypeDef(TypedDict):
    entries: Sequence[PutAssetPropertyValueEntryTypeDef],  # (1)
    enablePartialEntryProcessing: NotRequired[bool],
  1. See PutAssetPropertyValueEntryTypeDef

AssetModelPropertyOutputTypeDef#

# AssetModelPropertyOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelPropertyOutputTypeDef


def get_value() -> AssetModelPropertyOutputTypeDef:
    return {
        "id": ...,
    }


# AssetModelPropertyOutputTypeDef definition

class AssetModelPropertyOutputTypeDef(TypedDict):
    name: str,
    dataType: PropertyDataTypeType,  # (1)
    type: PropertyTypeOutputTypeDef,  # (2)
    id: NotRequired[str],
    externalId: NotRequired[str],
    dataTypeSpec: NotRequired[str],
    unit: NotRequired[str],
    path: NotRequired[List[AssetModelPropertyPathSegmentTypeDef]],  # (3)
  1. See PropertyDataTypeType
  2. See PropertyTypeOutputTypeDef
  3. See AssetModelPropertyPathSegmentTypeDef

AssetModelPropertySummaryTypeDef#

# AssetModelPropertySummaryTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelPropertySummaryTypeDef


def get_value() -> AssetModelPropertySummaryTypeDef:
    return {
        "id": ...,
    }


# AssetModelPropertySummaryTypeDef definition

class AssetModelPropertySummaryTypeDef(TypedDict):
    name: str,
    dataType: PropertyDataTypeType,  # (1)
    type: PropertyTypeOutputTypeDef,  # (2)
    id: NotRequired[str],
    externalId: NotRequired[str],
    dataTypeSpec: NotRequired[str],
    unit: NotRequired[str],
    assetModelCompositeModelId: NotRequired[str],
    path: NotRequired[List[AssetModelPropertyPathSegmentTypeDef]],  # (3)
  1. See PropertyDataTypeType
  2. See PropertyTypeOutputTypeDef
  3. See AssetModelPropertyPathSegmentTypeDef

PropertyTypeDef#

# PropertyTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PropertyTypeDef


def get_value() -> PropertyTypeDef:
    return {
        "id": ...,
    }


# PropertyTypeDef definition

class PropertyTypeDef(TypedDict):
    id: str,
    name: str,
    dataType: PropertyDataTypeType,  # (2)
    alias: NotRequired[str],
    notification: NotRequired[PropertyNotificationTypeDef],  # (1)
    unit: NotRequired[str],
    type: NotRequired[PropertyTypeOutputTypeDef],  # (3)
    path: NotRequired[List[AssetPropertyPathSegmentTypeDef]],  # (4)
    externalId: NotRequired[str],
  1. See PropertyNotificationTypeDef
  2. See PropertyDataTypeType
  3. See PropertyTypeOutputTypeDef
  4. See AssetPropertyPathSegmentTypeDef

MetricTypeDef#

# MetricTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import MetricTypeDef


def get_value() -> MetricTypeDef:
    return {
        "expression": ...,
    }


# MetricTypeDef definition

class MetricTypeDef(TypedDict):
    expression: str,
    variables: Sequence[ExpressionVariableUnionTypeDef],  # (1)
    window: MetricWindowTypeDef,  # (2)
    processingConfig: NotRequired[MetricProcessingConfigTypeDef],  # (3)
  1. See ExpressionVariableTypeDef ExpressionVariableOutputTypeDef
  2. See MetricWindowTypeDef
  3. See MetricProcessingConfigTypeDef

TransformTypeDef#

# TransformTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import TransformTypeDef


def get_value() -> TransformTypeDef:
    return {
        "expression": ...,
    }


# TransformTypeDef definition

class TransformTypeDef(TypedDict):
    expression: str,
    variables: Sequence[ExpressionVariableUnionTypeDef],  # (1)
    processingConfig: NotRequired[TransformProcessingConfigTypeDef],  # (2)
  1. See ExpressionVariableTypeDef ExpressionVariableOutputTypeDef
  2. See TransformProcessingConfigTypeDef

InvocationOutputTypeDef#

# InvocationOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import InvocationOutputTypeDef


def get_value() -> InvocationOutputTypeDef:
    return {
        "message": ...,
    }


# InvocationOutputTypeDef definition

class InvocationOutputTypeDef(TypedDict):
    message: NotRequired[str],
    citations: NotRequired[List[CitationTypeDef]],  # (1)
  1. See CitationTypeDef

AssetModelCompositeModelOutputTypeDef#

# AssetModelCompositeModelOutputTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelCompositeModelOutputTypeDef


def get_value() -> AssetModelCompositeModelOutputTypeDef:
    return {
        "name": ...,
    }


# AssetModelCompositeModelOutputTypeDef definition

class AssetModelCompositeModelOutputTypeDef(TypedDict):
    name: str,
    type: str,
    description: NotRequired[str],
    properties: NotRequired[List[AssetModelPropertyOutputTypeDef]],  # (1)
    id: NotRequired[str],
    externalId: NotRequired[str],
  1. See AssetModelPropertyOutputTypeDef

DescribeAssetModelCompositeModelResponseTypeDef#

# DescribeAssetModelCompositeModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetModelCompositeModelResponseTypeDef


def get_value() -> DescribeAssetModelCompositeModelResponseTypeDef:
    return {
        "assetModelId": ...,
    }


# DescribeAssetModelCompositeModelResponseTypeDef definition

class DescribeAssetModelCompositeModelResponseTypeDef(TypedDict):
    assetModelId: str,
    assetModelCompositeModelId: str,
    assetModelCompositeModelExternalId: str,
    assetModelCompositeModelPath: List[AssetModelCompositeModelPathSegmentTypeDef],  # (1)
    assetModelCompositeModelName: str,
    assetModelCompositeModelDescription: str,
    assetModelCompositeModelType: str,
    assetModelCompositeModelProperties: List[AssetModelPropertyOutputTypeDef],  # (2)
    compositionDetails: CompositionDetailsTypeDef,  # (3)
    assetModelCompositeModelSummaries: List[AssetModelCompositeModelSummaryTypeDef],  # (4)
    actionDefinitions: List[ActionDefinitionTypeDef],  # (5)
    ResponseMetadata: ResponseMetadataTypeDef,  # (6)
  1. See AssetModelCompositeModelPathSegmentTypeDef
  2. See AssetModelPropertyOutputTypeDef
  3. See CompositionDetailsTypeDef
  4. See AssetModelCompositeModelSummaryTypeDef
  5. See ActionDefinitionTypeDef
  6. See ResponseMetadataTypeDef

ListAssetModelPropertiesResponseTypeDef#

# ListAssetModelPropertiesResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ListAssetModelPropertiesResponseTypeDef


def get_value() -> ListAssetModelPropertiesResponseTypeDef:
    return {
        "assetModelPropertySummaries": ...,
    }


# ListAssetModelPropertiesResponseTypeDef definition

class ListAssetModelPropertiesResponseTypeDef(TypedDict):
    assetModelPropertySummaries: List[AssetModelPropertySummaryTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
    nextToken: NotRequired[str],
  1. See AssetModelPropertySummaryTypeDef
  2. See ResponseMetadataTypeDef

CompositeModelPropertyTypeDef#

# CompositeModelPropertyTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CompositeModelPropertyTypeDef


def get_value() -> CompositeModelPropertyTypeDef:
    return {
        "name": ...,
    }


# CompositeModelPropertyTypeDef definition

class CompositeModelPropertyTypeDef(TypedDict):
    name: str,
    type: str,
    assetProperty: PropertyTypeDef,  # (1)
    id: NotRequired[str],
    externalId: NotRequired[str],
  1. See PropertyTypeDef

ResponseStreamTypeDef#

# ResponseStreamTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import ResponseStreamTypeDef


def get_value() -> ResponseStreamTypeDef:
    return {
        "trace": ...,
    }


# ResponseStreamTypeDef definition

class ResponseStreamTypeDef(TypedDict):
    trace: NotRequired[TraceTypeDef],  # (1)
    output: NotRequired[InvocationOutputTypeDef],  # (2)
    accessDeniedException: NotRequired[AccessDeniedExceptionTypeDef],  # (3)
    conflictingOperationException: NotRequired[ConflictingOperationExceptionTypeDef],  # (4)
    internalFailureException: NotRequired[InternalFailureExceptionTypeDef],  # (5)
    invalidRequestException: NotRequired[InvalidRequestExceptionTypeDef],  # (6)
    limitExceededException: NotRequired[LimitExceededExceptionTypeDef],  # (7)
    resourceNotFoundException: NotRequired[ResourceNotFoundExceptionTypeDef],  # (8)
    throttlingException: NotRequired[ThrottlingExceptionTypeDef],  # (9)
  1. See TraceTypeDef
  2. See InvocationOutputTypeDef
  3. See AccessDeniedExceptionTypeDef
  4. See ConflictingOperationExceptionTypeDef
  5. See InternalFailureExceptionTypeDef
  6. See InvalidRequestExceptionTypeDef
  7. See LimitExceededExceptionTypeDef
  8. See ResourceNotFoundExceptionTypeDef
  9. See ThrottlingExceptionTypeDef

DescribeAssetModelResponseTypeDef#

# DescribeAssetModelResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetModelResponseTypeDef


def get_value() -> DescribeAssetModelResponseTypeDef:
    return {
        "assetModelId": ...,
    }


# DescribeAssetModelResponseTypeDef definition

class DescribeAssetModelResponseTypeDef(TypedDict):
    assetModelId: str,
    assetModelExternalId: str,
    assetModelArn: str,
    assetModelName: str,
    assetModelType: AssetModelTypeType,  # (1)
    assetModelDescription: str,
    assetModelProperties: List[AssetModelPropertyOutputTypeDef],  # (2)
    assetModelHierarchies: List[AssetModelHierarchyTypeDef],  # (3)
    assetModelCompositeModels: List[AssetModelCompositeModelOutputTypeDef],  # (4)
    assetModelCompositeModelSummaries: List[AssetModelCompositeModelSummaryTypeDef],  # (5)
    assetModelCreationDate: datetime,
    assetModelLastUpdateDate: datetime,
    assetModelStatus: AssetModelStatusTypeDef,  # (6)
    assetModelVersion: str,
    eTag: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (7)
  1. See AssetModelTypeType
  2. See AssetModelPropertyOutputTypeDef
  3. See AssetModelHierarchyTypeDef
  4. See AssetModelCompositeModelOutputTypeDef
  5. See AssetModelCompositeModelSummaryTypeDef
  6. See AssetModelStatusTypeDef
  7. See ResponseMetadataTypeDef

DescribeAssetPropertyResponseTypeDef#

# DescribeAssetPropertyResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import DescribeAssetPropertyResponseTypeDef


def get_value() -> DescribeAssetPropertyResponseTypeDef:
    return {
        "assetId": ...,
    }


# DescribeAssetPropertyResponseTypeDef definition

class DescribeAssetPropertyResponseTypeDef(TypedDict):
    assetId: str,
    assetName: str,
    assetModelId: str,
    assetProperty: PropertyTypeDef,  # (1)
    compositeModel: CompositeModelPropertyTypeDef,  # (2)
    assetExternalId: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (3)
  1. See PropertyTypeDef
  2. See CompositeModelPropertyTypeDef
  3. See ResponseMetadataTypeDef

PropertyTypeTypeDef#

# PropertyTypeTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import PropertyTypeTypeDef


def get_value() -> PropertyTypeTypeDef:
    return {
        "attribute": ...,
    }


# PropertyTypeTypeDef definition

class PropertyTypeTypeDef(TypedDict):
    attribute: NotRequired[AttributeTypeDef],  # (1)
    measurement: NotRequired[MeasurementTypeDef],  # (2)
    transform: NotRequired[TransformUnionTypeDef],  # (3)
    metric: NotRequired[MetricUnionTypeDef],  # (4)
  1. See AttributeTypeDef
  2. See MeasurementTypeDef
  3. See TransformTypeDef TransformOutputTypeDef
  4. See MetricTypeDef MetricOutputTypeDef

InvokeAssistantResponseTypeDef#

# InvokeAssistantResponseTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import InvokeAssistantResponseTypeDef


def get_value() -> InvokeAssistantResponseTypeDef:
    return {
        "body": ...,
    }


# InvokeAssistantResponseTypeDef definition

class InvokeAssistantResponseTypeDef(TypedDict):
    body: EventStream[ResponseStreamTypeDef],  # (1)
    conversationId: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ResponseStreamTypeDef
  2. See ResponseMetadataTypeDef

AssetModelPropertyDefinitionTypeDef#

# AssetModelPropertyDefinitionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelPropertyDefinitionTypeDef


def get_value() -> AssetModelPropertyDefinitionTypeDef:
    return {
        "id": ...,
    }


# AssetModelPropertyDefinitionTypeDef definition

class AssetModelPropertyDefinitionTypeDef(TypedDict):
    name: str,
    dataType: PropertyDataTypeType,  # (1)
    type: PropertyTypeUnionTypeDef,  # (2)
    id: NotRequired[str],
    externalId: NotRequired[str],
    dataTypeSpec: NotRequired[str],
    unit: NotRequired[str],
  1. See PropertyDataTypeType
  2. See PropertyTypeTypeDef PropertyTypeOutputTypeDef

AssetModelPropertyTypeDef#

# AssetModelPropertyTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelPropertyTypeDef


def get_value() -> AssetModelPropertyTypeDef:
    return {
        "id": ...,
    }


# AssetModelPropertyTypeDef definition

class AssetModelPropertyTypeDef(TypedDict):
    name: str,
    dataType: PropertyDataTypeType,  # (1)
    type: PropertyTypeUnionTypeDef,  # (2)
    id: NotRequired[str],
    externalId: NotRequired[str],
    dataTypeSpec: NotRequired[str],
    unit: NotRequired[str],
    path: NotRequired[Sequence[AssetModelPropertyPathSegmentTypeDef]],  # (3)
  1. See PropertyDataTypeType
  2. See PropertyTypeTypeDef PropertyTypeOutputTypeDef
  3. See AssetModelPropertyPathSegmentTypeDef

AssetModelCompositeModelDefinitionTypeDef#

# AssetModelCompositeModelDefinitionTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelCompositeModelDefinitionTypeDef


def get_value() -> AssetModelCompositeModelDefinitionTypeDef:
    return {
        "id": ...,
    }


# AssetModelCompositeModelDefinitionTypeDef definition

class AssetModelCompositeModelDefinitionTypeDef(TypedDict):
    name: str,
    type: str,
    id: NotRequired[str],
    externalId: NotRequired[str],
    description: NotRequired[str],
    properties: NotRequired[Sequence[AssetModelPropertyDefinitionTypeDef]],  # (1)
  1. See AssetModelPropertyDefinitionTypeDef

CreateAssetModelCompositeModelRequestTypeDef#

# CreateAssetModelCompositeModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAssetModelCompositeModelRequestTypeDef


def get_value() -> CreateAssetModelCompositeModelRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# CreateAssetModelCompositeModelRequestTypeDef definition

class CreateAssetModelCompositeModelRequestTypeDef(TypedDict):
    assetModelId: str,
    assetModelCompositeModelName: str,
    assetModelCompositeModelType: str,
    assetModelCompositeModelExternalId: NotRequired[str],
    parentAssetModelCompositeModelId: NotRequired[str],
    assetModelCompositeModelId: NotRequired[str],
    assetModelCompositeModelDescription: NotRequired[str],
    clientToken: NotRequired[str],
    composedAssetModelId: NotRequired[str],
    assetModelCompositeModelProperties: NotRequired[Sequence[AssetModelPropertyDefinitionTypeDef]],  # (1)
    ifMatch: NotRequired[str],
    ifNoneMatch: NotRequired[str],
    matchForVersionType: NotRequired[AssetModelVersionTypeType],  # (2)
  1. See AssetModelPropertyDefinitionTypeDef
  2. See AssetModelVersionTypeType

CreateAssetModelRequestTypeDef#

# CreateAssetModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import CreateAssetModelRequestTypeDef


def get_value() -> CreateAssetModelRequestTypeDef:
    return {
        "assetModelName": ...,
    }


# CreateAssetModelRequestTypeDef definition

class CreateAssetModelRequestTypeDef(TypedDict):
    assetModelName: str,
    assetModelType: NotRequired[AssetModelTypeType],  # (1)
    assetModelId: NotRequired[str],
    assetModelExternalId: NotRequired[str],
    assetModelDescription: NotRequired[str],
    assetModelProperties: NotRequired[Sequence[AssetModelPropertyDefinitionTypeDef]],  # (2)
    assetModelHierarchies: NotRequired[Sequence[AssetModelHierarchyDefinitionTypeDef]],  # (3)
    assetModelCompositeModels: NotRequired[Sequence[AssetModelCompositeModelDefinitionTypeDef]],  # (4)
    clientToken: NotRequired[str],
    tags: NotRequired[Mapping[str, str]],
  1. See AssetModelTypeType
  2. See AssetModelPropertyDefinitionTypeDef
  3. See AssetModelHierarchyDefinitionTypeDef
  4. See AssetModelCompositeModelDefinitionTypeDef

AssetModelCompositeModelTypeDef#

# AssetModelCompositeModelTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import AssetModelCompositeModelTypeDef


def get_value() -> AssetModelCompositeModelTypeDef:
    return {
        "name": ...,
    }


# AssetModelCompositeModelTypeDef definition

class AssetModelCompositeModelTypeDef(TypedDict):
    name: str,
    type: str,
    description: NotRequired[str],
    properties: NotRequired[Sequence[AssetModelPropertyUnionTypeDef]],  # (1)
    id: NotRequired[str],
    externalId: NotRequired[str],
  1. See AssetModelPropertyTypeDef AssetModelPropertyOutputTypeDef

UpdateAssetModelCompositeModelRequestTypeDef#

# UpdateAssetModelCompositeModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAssetModelCompositeModelRequestTypeDef


def get_value() -> UpdateAssetModelCompositeModelRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# UpdateAssetModelCompositeModelRequestTypeDef definition

class UpdateAssetModelCompositeModelRequestTypeDef(TypedDict):
    assetModelId: str,
    assetModelCompositeModelId: str,
    assetModelCompositeModelName: str,
    assetModelCompositeModelExternalId: NotRequired[str],
    assetModelCompositeModelDescription: NotRequired[str],
    clientToken: NotRequired[str],
    assetModelCompositeModelProperties: NotRequired[Sequence[AssetModelPropertyUnionTypeDef]],  # (1)
    ifMatch: NotRequired[str],
    ifNoneMatch: NotRequired[str],
    matchForVersionType: NotRequired[AssetModelVersionTypeType],  # (2)
  1. See AssetModelPropertyTypeDef AssetModelPropertyOutputTypeDef
  2. See AssetModelVersionTypeType

UpdateAssetModelRequestTypeDef#

# UpdateAssetModelRequestTypeDef TypedDict usage example

from types_boto3_iotsitewise.type_defs import UpdateAssetModelRequestTypeDef


def get_value() -> UpdateAssetModelRequestTypeDef:
    return {
        "assetModelId": ...,
    }


# UpdateAssetModelRequestTypeDef definition

class UpdateAssetModelRequestTypeDef(TypedDict):
    assetModelId: str,
    assetModelName: str,
    assetModelExternalId: NotRequired[str],
    assetModelDescription: NotRequired[str],
    assetModelProperties: NotRequired[Sequence[AssetModelPropertyUnionTypeDef]],  # (1)
    assetModelHierarchies: NotRequired[Sequence[AssetModelHierarchyTypeDef]],  # (2)
    assetModelCompositeModels: NotRequired[Sequence[AssetModelCompositeModelUnionTypeDef]],  # (3)
    clientToken: NotRequired[str],
    ifMatch: NotRequired[str],
    ifNoneMatch: NotRequired[str],
    matchForVersionType: NotRequired[AssetModelVersionTypeType],  # (4)
  1. See AssetModelPropertyTypeDef AssetModelPropertyOutputTypeDef
  2. See AssetModelHierarchyTypeDef
  3. See AssetModelCompositeModelTypeDef AssetModelCompositeModelOutputTypeDef
  4. See AssetModelVersionTypeType