Literals#
Auto-generated documentation for EBS type annotations stubs module mypy-boto3-ebs.
ChecksumAggregationMethodType#
# ChecksumAggregationMethodType usage example
from mypy_boto3_ebs.literals import ChecksumAggregationMethodType
def get_value() -> ChecksumAggregationMethodType:
return "LINEAR"
# ChecksumAggregationMethodType definition
ChecksumAggregationMethodType = Literal[
"LINEAR",
]
ChecksumAlgorithmType#
# ChecksumAlgorithmType usage example
from mypy_boto3_ebs.literals import ChecksumAlgorithmType
def get_value() -> ChecksumAlgorithmType:
return "SHA256"
# ChecksumAlgorithmType definition
ChecksumAlgorithmType = Literal[
"SHA256",
]
SSETypeType#
# SSETypeType usage example
from mypy_boto3_ebs.literals import SSETypeType
def get_value() -> SSETypeType:
return "none"
# SSETypeType definition
SSETypeType = Literal[
"none",
"sse-ebs",
"sse-kms",
]