Module aws_lambda_powertools.metrics.provider.cloudwatch_emf.types
Classes
class CloudWatchEMFMetric (*args, **kwargs)
-
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)
Expand source code
class CloudWatchEMFMetric(TypedDict): Name: str Unit: str StorageResolution: NotRequired[int]
Ancestors
- builtins.dict
Class variables
var Name : str
var StorageResolution : int
var Unit : str
class CloudWatchEMFMetrics (*args, **kwargs)
-
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)
Expand source code
class CloudWatchEMFMetrics(TypedDict): Namespace: str Dimensions: List[List[str]] # [ [ 'test_dimension' ] ] Metrics: List[CloudWatchEMFMetric]
Ancestors
- builtins.dict
Class variables
var Dimensions : List[List[str]]
var Metrics : List[CloudWatchEMFMetric]
var Namespace : str
class CloudWatchEMFOutput (*args, **kwargs)
-
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)
Expand source code
class CloudWatchEMFOutput(TypedDict): _aws: CloudWatchEMFRoot
Ancestors
- builtins.dict
class CloudWatchEMFRoot (*args, **kwargs)
-
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)
Expand source code
class CloudWatchEMFRoot(TypedDict): Timestamp: int CloudWatchMetrics: List[CloudWatchEMFMetrics]
Ancestors
- builtins.dict
Class variables
var CloudWatchMetrics : List[CloudWatchEMFMetrics]
var Timestamp : int