Skip to content

Commit 05104ff

Browse files
committed
regenerate src/semconv.ts again (re-ordering and comments)
1 parent 943ef18 commit 05104ff

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/instrumentation-aws-sdk/src/semconv.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@
2020
* @see https://github.com/open-telemetry/opentelemetry-js/tree/main/semantic-conventions#unstable-semconv
2121
*/
2222

23+
/**
24+
* The ARN of the Secret stored in the Secrets Mangger
25+
*
26+
* @example arn:aws:secretsmanager:us-east-1:123456789012:secret:SecretName-6RandomCharacters
27+
*
28+
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
29+
*/
30+
export const ATTR_AWS_SECRETSMANAGER_SECRET_ARN =
31+
'aws.secretsmanager.secret.arn' as const;
32+
2333
/**
2434
* The ARN of the AWS SNS Topic. An Amazon SNS [topic](https://docs.aws.amazon.com/sns/latest/dg/sns-create-topic.html) is a logical access point that acts as a communication channel.
2535
*
@@ -229,13 +239,3 @@ export const GEN_AI_TOKEN_TYPE_VALUE_INPUT = 'input' as const;
229239
* @experimental This enum value is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
230240
*/
231241
export const GEN_AI_TOKEN_TYPE_VALUE_OUTPUT = 'output' as const;
232-
233-
/**
234-
* Originally from '@opentelemetry/semantic-conventions/incubating'
235-
* https://github.com/open-telemetry/semantic-conventions/blob/main/docs/registry/attributes/aws.md#amazon-secrets-manager-attributes
236-
* The ARN of the Secret stored in the Secrets Mangger
237-
* @example arn:aws:secretsmanager:us-east-1:123456789012:secret:SecretName-6RandomCharacters
238-
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
239-
*/
240-
export const ATTR_AWS_SECRETSMANAGER_SECRET_ARN =
241-
'aws.secretsmanager.secret.arn' as const;

0 commit comments

Comments
 (0)