package arn

Import Path
	github.com/aws/aws-sdk-go-v2/aws/arn (on go.dev)

Dependency Relation
	imports 2 packages, and imported by 3 packages

Involved Source Files Package arn provides a parser for interacting with Amazon Resource Names.
Package-Level Type Names (only one, which is exported)
/* sort exporteds by: | */
ARN captures the individual fields of an Amazon Resource Name. See http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html for more information. The ID of the AWS account that owns the resource, without the hyphens. For example, 123456789012. Note that the ARNs for some resources don't require an account number, so this component might be omitted. The partition that the resource is in. For standard AWS regions, the partition is "aws". If you have resources in other partitions, the partition is "aws-partitionname". For example, the partition for resources in the China (Beijing) region is "aws-cn". The region the resource resides in. Note that the ARNs for some resources do not require a region, so this component might be omitted. The content of this part of the ARN varies by service. It often includes an indicator of the type of resource — for example, an IAM user or Amazon RDS database - followed by a slash (/) or a colon (:), followed by the resource name itself. Some services allows paths for resource names, as described in http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arns-paths. The service namespace that identifies the AWS product (for example, Amazon S3, IAM, or Amazon RDS). For a list of namespaces, see http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces. String returns the canonical representation of the ARN ARN : expvar.Var ARN : fmt.Stringer func Parse(arn string) (ARN, error) func github.com/aws/aws-sdk-go-v2/service/internal/s3shared.GetARNResourceFromContext(ctx context.Context) (ARN, bool) func github.com/aws/aws-sdk-go-v2/service/internal/s3shared.ResourceRequest.ARN() ARN func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.AccessPointARN.GetARN() ARN func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.OutpostARN.GetARN() ARN func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.OutpostBucketARN.GetARN() ARN func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.Resource.GetARN() ARN func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.S3ObjectLambdaARN.GetARN() ARN func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.ParseAccessPointResource(a ARN, resParts []string) (arn.AccessPointARN, error) func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.ParseOutpostARNResource(a ARN, resParts []string) (arn.OutpostARN, error) func github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn.ParseResource(a ARN, resParser arn.ResourceParser) (resARN arn.Resource, err error) func github.com/aws/aws-sdk-go-v2/service/s3/internal/arn.ParseEndpointARN(v ARN) (arn.Resource, error)
Package-Level Functions (total 2, both are exported)
IsARN returns whether the given string is an arn by looking for whether the string starts with arn:
Parse parses an ARN into its constituent parts. Some example ARNs: arn:aws:elasticbeanstalk:us-east-1:123456789012:environment/My App/MyEnvironment arn:aws:iam::123456789012:user/David arn:aws:rds:eu-west-1:123456789012:db:mysql-db arn:aws:s3:::my_corporate_bucket/exampleobject.png
Package-Level Constants (total 10, none are exported)