UNPKG

@aws-cdk/core

Version:

AWS Cloud Development Kit Core Library

242 lines (241 loc) 11.5 kB
import { ICfnConditionExpression } from './cfn-condition'; import { IResolvable } from './resolvable'; /** * CloudFormation intrinsic functions. * * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference.html */ export declare class Fn { /** * The ``Ref`` intrinsic function returns the value of the specified parameter or resource. * * Note that it doesn't validate the logicalName, it mainly serves paremeter/resource reference defined in a ``CfnInclude`` template. * * @param logicalName The logical name of a parameter/resource for which you want to retrieve its value. */ static ref(logicalName: string): string; /** * The ``Fn::GetAtt`` intrinsic function returns the value of an attribute from a resource in the template. * * @param logicalNameOfResource The logical name (also called logical ID) of the resource that contains the attribute that you want. * @param attributeName The name of the resource-specific attribute whose value you want. * @returns an IResolvable object */ static getAtt(logicalNameOfResource: string, attributeName: string): IResolvable; /** * The intrinsic function ``Fn::Join`` appends a set of values into a single value, separated by the specified delimiter. * * If a delimiter is the empty * string, the set of values are concatenated with no delimiter. * * @param delimiter The value you want to occur between fragments. * @param listOfValues The list of values you want combined. * @returns a token represented as a string */ static join(delimiter: string, listOfValues: string[]): string; /** * To split a string into a list of string values so that you can select an element from the resulting string list, use the ``Fn::Split`` intrinsic function. * * Specify the location of splits * with a delimiter, such as , (a comma). After you split a string, use the ``Fn::Select`` function * to pick a specific element. * * @param delimiter A string value that determines where the source string is divided. * @param source The string value that you want to split. * @returns a token represented as a string array */ static split(delimiter: string, source: string): string[]; /** * The intrinsic function ``Fn::Select`` returns a single object from a list of objects by index. * * @param index The index of the object to retrieve. * @param array The list of objects to select from. * @returns a token represented as a string */ static select(index: number, array: string[]): string; /** * The intrinsic function ``Fn::Sub`` substitutes variables in an input string with values that you specify. * * In your templates, you can use this function * to construct commands or outputs that include values that aren't available * until you create or update a stack. * * @param body A string with variables that AWS CloudFormation substitutes with their associated values at runtime. * @param variables The name of a variable that you included in the String parameter. * @returns a token represented as a string */ static sub(body: string, variables?: { [key: string]: string; }): string; /** * The intrinsic function ``Fn::Base64`` returns the Base64 representation of the input string. * * This function is typically used to pass encoded data to * Amazon EC2 instances by way of the UserData property. * * @param data The string value you want to convert to Base64. * @returns a token represented as a string */ static base64(data: string): string; /** * The intrinsic function ``Fn::Cidr`` returns the specified Cidr address block. * * @param ipBlock The user-specified default Cidr address block. * @param count The number of subnets' Cidr block wanted. * @param sizeMask The digit covered in the subnet. * @returns a token represented as a string */ static cidr(ipBlock: string, count: number, sizeMask?: string): string[]; /** * Given an url, parse the domain name. * * @param url the url to parse. */ static parseDomainName(url: string): string; /** * The intrinsic function ``Fn::GetAZs`` returns an array that lists Availability Zones for a specified region. * * Because customers have access to * different Availability Zones, the intrinsic function ``Fn::GetAZs`` enables * template authors to write templates that adapt to the calling user's * access. That way you don't have to hard-code a full list of Availability * Zones for a specified region. * * @param region The name of the region for which you want to get the Availability Zones. * @returns a token represented as a string array */ static getAzs(region?: string): string[]; /** * The intrinsic function ``Fn::ImportValue`` returns the value of an output exported by another stack. * * You typically use this function to create * cross-stack references. In the following example template snippets, Stack A * exports VPC security group values and Stack B imports them. * * @param sharedValueToImport The stack output value that you want to import. * @returns a token represented as a string */ static importValue(sharedValueToImport: string): string; /** * The intrinsic function ``Fn::FindInMap`` returns the value corresponding to keys in a two-level map that is declared in the Mappings section. * * @returns a token represented as a string */ static findInMap(mapName: string, topLevelKey: string, secondLevelKey: string): string; /** * Creates a token representing the ``Fn::Transform`` expression. * * @param macroName The name of the macro to perform the processing. * @param parameters The parameters to be passed to the macro. * @returns a token representing the transform expression * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-transform.html */ static transform(macroName: string, parameters: { [name: string]: any; }): IResolvable; /** * Returns true if all the specified conditions evaluate to true, or returns false if any one of the conditions evaluates to false. * * ``Fn::And`` acts as * an AND operator. The minimum number of conditions that you can include is * 1. * * @param conditions conditions to AND. * @returns an FnCondition token */ static conditionAnd(...conditions: ICfnConditionExpression[]): ICfnConditionExpression; /** * Compares if two values are equal. * * Returns true if the two values are equal * or false if they aren't. * * @param lhs A value of any type that you want to compare. * @param rhs A value of any type that you want to compare. * @returns an FnCondition token */ static conditionEquals(lhs: any, rhs: any): ICfnConditionExpression; /** * Returns one value if the specified condition evaluates to true and another value if the specified condition evaluates to false. * * Currently, AWS * CloudFormation supports the ``Fn::If`` intrinsic function in the metadata * attribute, update policy attribute, and property values in the Resources * section and Outputs sections of a template. You can use the AWS::NoValue * pseudo parameter as a return value to remove the corresponding property. * * @param conditionId A reference to a condition in the Conditions section. * @param valueIfTrue A value to be returned if the specified condition evaluates to true. * @param valueIfFalse A value to be returned if the specified condition evaluates to false. * @returns an FnCondition token */ static conditionIf(conditionId: string, valueIfTrue: any, valueIfFalse: any): ICfnConditionExpression; /** * Returns true for a condition that evaluates to false or returns false for a condition that evaluates to true. * * ``Fn::Not`` acts as a NOT operator. * * @param condition A condition such as ``Fn::Equals`` that evaluates to true or false. * @returns an FnCondition token */ static conditionNot(condition: ICfnConditionExpression): ICfnConditionExpression; /** * Returns true if any one of the specified conditions evaluate to true, or returns false if all of the conditions evaluates to false. * * ``Fn::Or`` acts * as an OR operator. The minimum number of conditions that you can include is * 1. * * @param conditions conditions that evaluates to true or false. * @returns an FnCondition token */ static conditionOr(...conditions: ICfnConditionExpression[]): ICfnConditionExpression; /** * Returns true if a specified string matches at least one value in a list of strings. * * @param listOfStrings A list of strings, such as "A", "B", "C". * @param value A string, such as "A", that you want to compare against a list of strings. * @returns an FnCondition token */ static conditionContains(listOfStrings: string[], value: string): ICfnConditionExpression; /** * Returns true if a specified string matches all values in a list. * * @param listOfStrings A list of strings, such as "A", "B", "C". * @param value A string, such as "A", that you want to compare against a list of strings. * @returns an FnCondition token */ static conditionEachMemberEquals(listOfStrings: string[], value: string): ICfnConditionExpression; /** * Returns true if each member in a list of strings matches at least one value in a second list of strings. * * @param stringsToCheck A list of strings, such as "A", "B", "C". * @param stringsToMatch A list of strings, such as "A", "B", "C". * @returns an FnCondition token */ static conditionEachMemberIn(stringsToCheck: string[], stringsToMatch: string[]): ICfnConditionExpression; /** * Returns all values for a specified parameter type. * * @param parameterType An AWS-specific parameter type, such as AWS::EC2::SecurityGroup::Id or AWS::EC2::VPC::Id. * @returns a token represented as a string array */ static refAll(parameterType: string): string[]; /** * Returns an attribute value or list of values for a specific parameter and attribute. * * @param parameterOrLogicalId The name of a parameter for which you want to retrieve attribute values. * @param attribute The name of an attribute from which you want to retrieve a value. * @returns a token represented as a string */ static valueOf(parameterOrLogicalId: string, attribute: string): string; /** * Returns a list of all attribute values for a given parameter type and attribute. * * @param parameterType An AWS-specific parameter type, such as AWS::EC2::SecurityGroup::Id or AWS::EC2::VPC::Id. * @param attribute The name of an attribute from which you want to retrieve a value. * @returns a token represented as a string array */ static valueOfAll(parameterType: string, attribute: string): string[]; private constructor(); }