FunctionUrlArgs constructor

const FunctionUrlArgs({
  1. required Input<String> authorizationType,
  2. Input<FunctionUrlCors?>? cors,
  3. required Input<String> functionName,
  4. Input<String?>? invokeMode,
  5. Input<String?>? qualifier,
  6. Input<String?>? region,
})

Creates a new FunctionUrlArgs. authorizationType Type of authentication that the function URL uses. Valid values are AWS_IAM and NONE. cors Cross-origin resource sharing (CORS) settings for the function URL. See below. functionName Name or ARN of the Lambda function. invokeMode How the Lambda function responds to an invocation. Valid values are BUFFERED (default) and RESPONSE_STREAM. qualifier Alias name or $LATEST. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const FunctionUrlArgs({
  required this.authorizationType,
  this.cors,
  required this.functionName,
  this.invokeMode,
  this.qualifier,
  this.region,
});