Struct aws_sdk_xray::operation::create_group::CreateGroupInput
source · #[non_exhaustive]pub struct CreateGroupInput {
pub group_name: Option<String>,
pub filter_expression: Option<String>,
pub insights_configuration: Option<InsightsConfiguration>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.group_name: Option<String>
The case-sensitive name of the new group. Default is a reserved name and names must be unique.
filter_expression: Option<String>
The filter expression defining criteria by which to group traces.
insights_configuration: Option<InsightsConfiguration>
The structure containing configurations related to insights.
-
The InsightsEnabled boolean can be set to true to enable insights for the new group or false to disable insights for the new group.
-
The NotificationsEnabled boolean can be set to true to enable insights notifications for the new group. Notifications may only be enabled on a group with InsightsEnabled set to true.
A map that contains one or more tag keys and tag values to attach to an X-Ray group. For more information about ways to use tags, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference.
The following restrictions apply to tags:
-
Maximum number of user-applied tags per resource: 50
-
Maximum tag key length: 128 Unicode characters
-
Maximum tag value length: 256 Unicode characters
-
Valid values for key and value: a-z, A-Z, 0-9, space, and the following characters: _ . : / = + - and @
-
Tag keys and values are case sensitive.
-
Don't use
aws:
as a prefix for keys; it's reserved for Amazon Web Services use.
Implementations§
source§impl CreateGroupInput
impl CreateGroupInput
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
The case-sensitive name of the new group. Default is a reserved name and names must be unique.
sourcepub fn filter_expression(&self) -> Option<&str>
pub fn filter_expression(&self) -> Option<&str>
The filter expression defining criteria by which to group traces.
sourcepub fn insights_configuration(&self) -> Option<&InsightsConfiguration>
pub fn insights_configuration(&self) -> Option<&InsightsConfiguration>
The structure containing configurations related to insights.
-
The InsightsEnabled boolean can be set to true to enable insights for the new group or false to disable insights for the new group.
-
The NotificationsEnabled boolean can be set to true to enable insights notifications for the new group. Notifications may only be enabled on a group with InsightsEnabled set to true.
A map that contains one or more tag keys and tag values to attach to an X-Ray group. For more information about ways to use tags, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference.
The following restrictions apply to tags:
-
Maximum number of user-applied tags per resource: 50
-
Maximum tag key length: 128 Unicode characters
-
Maximum tag value length: 256 Unicode characters
-
Valid values for key and value: a-z, A-Z, 0-9, space, and the following characters: _ . : / = + - and @
-
Tag keys and values are case sensitive.
-
Don't use
aws:
as a prefix for keys; it's reserved for Amazon Web Services use.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateGroupInput
impl CreateGroupInput
sourcepub fn builder() -> CreateGroupInputBuilder
pub fn builder() -> CreateGroupInputBuilder
Creates a new builder-style object to manufacture CreateGroupInput
.
Trait Implementations§
source§impl Clone for CreateGroupInput
impl Clone for CreateGroupInput
source§fn clone(&self) -> CreateGroupInput
fn clone(&self) -> CreateGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateGroupInput
impl Debug for CreateGroupInput
source§impl PartialEq for CreateGroupInput
impl PartialEq for CreateGroupInput
source§fn eq(&self, other: &CreateGroupInput) -> bool
fn eq(&self, other: &CreateGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.