Class: AWSCDK::Route53::CfnHostedZone::QueryLoggingConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Route53::CfnHostedZone::QueryLoggingConfigProperty
- Defined in:
- route53/cfn_hosted_zone.rb
Overview
A complex type that contains information about a configuration for DNS query logging.
Instance Attribute Summary collapse
-
#cloud_watch_logs_log_group_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(cloud_watch_logs_log_group_arn:) ⇒ QueryLoggingConfigProperty
constructor
A new instance of QueryLoggingConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(cloud_watch_logs_log_group_arn:) ⇒ QueryLoggingConfigProperty
Returns a new instance of QueryLoggingConfigProperty.
737 738 739 740 |
# File 'route53/cfn_hosted_zone.rb', line 737 def initialize(cloud_watch_logs_log_group_arn:) @cloud_watch_logs_log_group_arn = cloud_watch_logs_log_group_arn Jsii::Type.check_type(@cloud_watch_logs_log_group_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "cloudWatchLogsLogGroupArn") end |
Instance Attribute Details
#cloud_watch_logs_log_group_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
746 747 748 |
# File 'route53/cfn_hosted_zone.rb', line 746 def cloud_watch_logs_log_group_arn @cloud_watch_logs_log_group_arn end |
Class Method Details
.jsii_properties ⇒ Object
748 749 750 751 752 |
# File 'route53/cfn_hosted_zone.rb', line 748 def self.jsii_properties { :cloud_watch_logs_log_group_arn => "cloudWatchLogsLogGroupArn", } end |
Instance Method Details
#to_jsii ⇒ Object
754 755 756 757 758 759 760 |
# File 'route53/cfn_hosted_zone.rb', line 754 def to_jsii result = {} result.merge!({ "cloudWatchLogsLogGroupArn" => @cloud_watch_logs_log_group_arn, }) result.compact end |