Cloud Keys 2020 Python Edition

Questions / Feedback?

include_key_details Property

Whether to attempt to retrieve full details when listing CMKs.

Syntax

def get_include_key_details() -> bool: ...
def set_include_key_details(value: bool) -> None: ...

include_key_details = property(get_include_key_details, set_include_key_details)

Default Value

FALSE

Remarks

This property specifies whether the class should make additional requests when list_keys is called in order to retrieve full information for each CMK. By default, Amazon will only return the key_arn and key_id of each CMK.

If this property is enabled, then after the initial listing is returned, the class will call get_key_info internally for each CMK returned. For all CMKs for which this call is successful, the additional information will be used to populate the Key* properties. Any CMKs for which the get_key_info call fails will only have their key_arn and key_id properties populated, as usual.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Keys 2020 Python Edition - Version 20.0 [Build 8157]