pub struct CreateQueryLoggingConfigRequest {
pub cloud_watch_logs_log_group_arn: String,
pub hosted_zone_id: String,
}Fields§
§cloud_watch_logs_log_group_arn: StringThe Amazon Resource Name (ARN) for the log group that you want to Amazon Route 53 to send query logs to. This is the format of the ARN:
arn:aws:logs:region:account-id:log-group:log_group_name
To get the ARN for a log group, you can use the CloudWatch console, the DescribeLogGroups API action, the describe-log-groups command, or the applicable command in one of the AWS SDKs.
hosted_zone_id: StringThe ID of the hosted zone that you want to log queries for. You can log queries only for public hosted zones.
Trait Implementations§
Source§impl Clone for CreateQueryLoggingConfigRequest
impl Clone for CreateQueryLoggingConfigRequest
Source§fn clone(&self) -> CreateQueryLoggingConfigRequest
fn clone(&self) -> CreateQueryLoggingConfigRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CreateQueryLoggingConfigRequest
impl Default for CreateQueryLoggingConfigRequest
Source§fn default() -> CreateQueryLoggingConfigRequest
fn default() -> CreateQueryLoggingConfigRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateQueryLoggingConfigRequest
impl PartialEq for CreateQueryLoggingConfigRequest
Source§fn eq(&self, other: &CreateQueryLoggingConfigRequest) -> bool
fn eq(&self, other: &CreateQueryLoggingConfigRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateQueryLoggingConfigRequest
Auto Trait Implementations§
impl Freeze for CreateQueryLoggingConfigRequest
impl RefUnwindSafe for CreateQueryLoggingConfigRequest
impl Send for CreateQueryLoggingConfigRequest
impl Sync for CreateQueryLoggingConfigRequest
impl Unpin for CreateQueryLoggingConfigRequest
impl UnwindSafe for CreateQueryLoggingConfigRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more