@@ -427,13 +427,13 @@ private static void SetRemoteResourceTypeAndIdentifier(Activity span, ActivityTa
427427 else if ( IsKeyPresent ( span , AttributeAWSSecretsManagerSecretArn ) )
428428 {
429429 remoteResourceType = NormalizedSecretsManagerServiceName + "::Secret" ;
430- remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSSecretsManagerSecretArn ) ) . Split ( ":" ) . Last ( ) ;
430+ remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSSecretsManagerSecretArn ) ) . Split ( ':' ) . Last ( ) ;
431431 cloudformationPrimaryIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSSecretsManagerSecretArn ) ) ;
432432 }
433433 else if ( IsKeyPresent ( span , AttributeAWSSNSTopicArn ) )
434434 {
435435 remoteResourceType = NormalizedSNSServiceName + "::Topic" ;
436- remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSSNSTopicArn ) ) . Split ( ":" ) . Last ( ) ;
436+ remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSSNSTopicArn ) ) . Split ( ':' ) . Last ( ) ;
437437 cloudformationPrimaryIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSSNSTopicArn ) ) ;
438438 }
439439 else if ( IsKeyPresent ( span , AttributeAWSSQSQueueName ) )
@@ -451,13 +451,13 @@ private static void SetRemoteResourceTypeAndIdentifier(Activity span, ActivityTa
451451 else if ( IsKeyPresent ( span , AttributeAWSStepFunctionsActivityArn ) )
452452 {
453453 remoteResourceType = NormalizedStepFunctionsName + "::Activity" ;
454- remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSStepFunctionsActivityArn ) ) . Split ( ":" ) . Last ( ) ;
454+ remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSStepFunctionsActivityArn ) ) . Split ( ':' ) . Last ( ) ;
455455 cloudformationPrimaryIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSStepFunctionsActivityArn ) ) ;
456456 }
457457 else if ( IsKeyPresent ( span , AttributeAWSStepFunctionsStateMachineArn ) )
458458 {
459459 remoteResourceType = NormalizedStepFunctionsName + "::StateMachine" ;
460- remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSStepFunctionsStateMachineArn ) ) . Split ( ":" ) . Last ( ) ;
460+ remoteResourceIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSStepFunctionsStateMachineArn ) ) . Split ( ':' ) . Last ( ) ;
461461 cloudformationPrimaryIdentifier = EscapeDelimiters ( ( string ? ) span . GetTagItem ( AttributeAWSStepFunctionsStateMachineArn ) ) ;
462462 }
463463 else if ( IsKeyPresent ( span , AttributeAWSBedrockGuardrailId ) )
0 commit comments