Class: Aws::XRay::Types::UpdateGroupRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

Note:

When making an API call, you may pass UpdateGroupRequest data as a hash:

{
  group_name: "GroupName",
  group_arn: "GroupARN",
  filter_expression: "FilterExpression",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filter_expressionString

The updated filter expression defining criteria by which to group traces.

Returns:

  • (String)


2167
2168
2169
2170
2171
2172
# File 'lib/aws-sdk-xray/types.rb', line 2167

class UpdateGroupRequest < Struct.new(
  :group_name,
  :group_arn,
  :filter_expression)
  include Aws::Structure
end

#group_arnString

The ARN that was generated upon creation.

Returns:

  • (String)


2167
2168
2169
2170
2171
2172
# File 'lib/aws-sdk-xray/types.rb', line 2167

class UpdateGroupRequest < Struct.new(
  :group_name,
  :group_arn,
  :filter_expression)
  include Aws::Structure
end

#group_nameString

The case-sensitive name of the group.

Returns:

  • (String)


2167
2168
2169
2170
2171
2172
# File 'lib/aws-sdk-xray/types.rb', line 2167

class UpdateGroupRequest < Struct.new(
  :group_name,
  :group_arn,
  :filter_expression)
  include Aws::Structure
end