/** Pure parsers for resource identifiers used during failure diagnosis. */ /** * Parse an ECS service physical resource ID into cluster and service identifiers. * * The cluster portion is a name (not an ARN) — `describeServices`/`describeTasks` * accept either form for their `cluster` parameter, so this is fine downstream. * * Recognized formats: * - Long ARN: `arn:aws:ecs:region:account:service/cluster-name/service-name` (current default) * - Path: `cluster-name/service-name` * - Bare service name (uses the default cluster) */ export declare function parseEcsServiceIdentifier(physicalId: string): { cluster?: string; serviceName?: string; }; /** * If a ServiceToken is an `Fn::GetAtt` or `Ref` intrinsic, return the referenced logical ID. */ export declare function serviceTokenReferencedLogicalId(serviceToken: any): string | undefined; /** * Extract a Lambda function name from a function ARN or a bare name. * * Returns `undefined` for non-Lambda ARNs (e.g. an SNS-topic ServiceToken). */ export declare function functionNameFromArnOrName(arnOrName: string): string | undefined; /** * Extract the log stream name out of a cfn-response failure reason * ("See the details in CloudWatch Log Stream: "). */ export declare function extractLogStreamName(message: string | undefined): string | undefined; /** * cfn-response defaults the physical ID to the log stream name. Use it only when it looks * like a Lambda log stream (`YYYY/MM/DD/...`), so a user-provided physical ID isn't mistaken * for one. */ export declare function logStreamNameFromPhysicalId(physicalId: string | undefined): string | undefined; export declare function ecsStoppedTasksConsoleUrl(region: string, cluster: string, serviceName: string): string; //# sourceMappingURL=resource-identifiers.d.ts.map