Sha256: 5c64e1f12b3a66bd0353b8061ea3c052957ec64d5ea59b04860c27c46b9652e6
Contents?: true
Size: 611 Bytes
Versions: 26
Compression:
Stored size: 611 Bytes
Contents
module Awspec::Type class Cloudtrail < Base aws_resource Aws::CloudTrail def resource_via_client @resource_via_client ||= find_trail(@display_name) end def id @id ||= resource_via_client.name if resource_via_client end def has_global_service_events_included? resource_via_client.include_global_service_events end def multi_region_trail? resource_via_client.is_multi_region_trail end def has_log_file_validation_enabled? resource_via_client.log_file_validation_enabled end def logging? is_logging?(id) end end end
Version data entries
26 entries across 26 versions & 1 rubygems