Class: AWSCDK::Interfaces::AWSCloudfront::RealtimeLogConfigReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSCloudfront::RealtimeLogConfigReference
- Defined in:
- interfaces/aws_cloudfront/realtime_log_config_reference.rb
Overview
A reference to a RealtimeLogConfig resource.
Instance Attribute Summary collapse
-
#realtime_log_config_arn ⇒ String
readonly
The Arn of the RealtimeLogConfig resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(realtime_log_config_arn:) ⇒ RealtimeLogConfigReference
constructor
A new instance of RealtimeLogConfigReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(realtime_log_config_arn:) ⇒ RealtimeLogConfigReference
Returns a new instance of RealtimeLogConfigReference.
8 9 10 11 |
# File 'interfaces/aws_cloudfront/realtime_log_config_reference.rb', line 8 def initialize(realtime_log_config_arn:) @realtime_log_config_arn = realtime_log_config_arn Jsii::Type.check_type(@realtime_log_config_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "realtimeLogConfigArn") end |
Instance Attribute Details
#realtime_log_config_arn ⇒ String (readonly)
The Arn of the RealtimeLogConfig resource.
16 17 18 |
# File 'interfaces/aws_cloudfront/realtime_log_config_reference.rb', line 16 def realtime_log_config_arn @realtime_log_config_arn end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_cloudfront/realtime_log_config_reference.rb', line 18 def self.jsii_properties { :realtime_log_config_arn => "realtimeLogConfigArn", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_cloudfront/realtime_log_config_reference.rb', line 24 def to_jsii result = {} result.merge!({ "realtimeLogConfigArn" => @realtime_log_config_arn, }) result.compact end |