Api Fc Service Config Args
data class ApiFcServiceConfigArgs(val arnRole: Output<String>, val functionBaseUrl: Output<String>? = null, val functionName: Output<String>? = null, val functionType: Output<String>? = null, val method: Output<String>? = null, val onlyBusinessPath: Output<Boolean>? = null, val path: Output<String>? = null, val qualifier: Output<String>? = null, val region: Output<String>, val serviceName: Output<String>? = null, val timeout: Output<Int>) : ConvertibleToJava<ApiFcServiceConfigArgs>
Constructors
Link copied to clipboard
constructor(arnRole: Output<String>, functionBaseUrl: Output<String>? = null, functionName: Output<String>? = null, functionType: Output<String>? = null, method: Output<String>? = null, onlyBusinessPath: Output<Boolean>? = null, path: Output<String>? = null, qualifier: Output<String>? = null, region: Output<String>, serviceName: Output<String>? = null, timeout: Output<Int>)
Properties
Link copied to clipboard
RAM role arn attached to the Function Compute service. This governs both who / what can invoke your Function, as well as what resources our Function has access to. See User Permissions for more details.
Link copied to clipboard
The base url of function compute service. Required if function_type
is HttpTrigger
.
Link copied to clipboard
The function name of function compute service. Required if function_type
is FCEvent
.
Link copied to clipboard
The type of function compute service. Supports values of FCEvent
,HttpTrigger
. Default value: FCEvent
.
Link copied to clipboard
Whether to filter path in function_base_url
. Optional if function_type
is HttpTrigger
.
Link copied to clipboard
The service name of function compute service. Required if function_type
is FCEvent
.