@@ -6,12 +6,12 @@ namespace OpenTelemetry.Instrumentation.AWS.Implementation;
66internal class AWSServiceType
77{
88 internal const string DynamoDbService = "DynamoDB" ;
9- internal const string SecretsManagerService = "Secrets Manager" ;
10- internal const string StepFunctionsService = "SFN" ;
119 internal const string SQSService = "SQS" ;
1210 internal const string SNSService = "SNS" ;
1311 internal const string S3Service = "S3" ;
1412 internal const string KinesisService = "Kinesis" ;
13+ internal const string SecretsManagerService = "Secrets Manager" ;
14+ internal const string StepFunctionsService = "SFN" ;
1515 internal const string BedrockService = "Bedrock" ;
1616 internal const string BedrockRuntimeService = "Bedrock Runtime" ;
1717 internal const string BedrockAgentService = "Bedrock Agent" ;
@@ -32,6 +32,12 @@ internal static bool IsS3Service(string service)
3232 internal static bool IsKinesisService ( string service )
3333 => KinesisService . Equals ( service , StringComparison . OrdinalIgnoreCase ) ;
3434
35+ internal static bool IsSecretsManagerService ( string service )
36+ => SecretsManagerService . Equals ( service , StringComparison . OrdinalIgnoreCase ) ;
37+
38+ internal static bool IsStepFunctionsService ( string service )
39+ => StepFunctionsService . Equals ( service , StringComparison . OrdinalIgnoreCase ) ;
40+
3541 internal static bool IsBedrockService ( string service )
3642 => BedrockService . Equals ( service , StringComparison . OrdinalIgnoreCase ) ;
3743
0 commit comments