GetFunctionUrlResult constructor

const GetFunctionUrlResult({
  1. String? authorizationType,
  2. List<GetFunctionUrlCor>? cors,
  3. String? creationTime,
  4. String? functionArn,
  5. String? functionName,
  6. String? functionUrl,
  7. String? id,
  8. String? invokeMode,
  9. String? lastModifiedTime,
  10. String? qualifier,
  11. String? region,
  12. String? urlId,
})

Creates a new GetFunctionUrlResult. authorizationType Type of authentication that the function URL uses. cors Cross-origin resource sharing (CORS) settings for the function URL. See below. creationTime When the function URL was created, in ISO-8601 format. functionArn ARN of the function. functionName Optional. functionUrl HTTP URL endpoint for the function in the format https://&lt;url_id&gt;.lambda-url.&lt;region&gt;.on.aws/. id The provider-assigned unique ID for this managed resource. invokeMode Whether the Lambda function responds in BUFFERED or RESPONSE_STREAM mode. lastModifiedTime When the function URL configuration was last updated, in ISO-8601 format. qualifier Optional. region Optional. urlId Generated ID for the endpoint.

Implementation

const GetFunctionUrlResult({
  this.authorizationType,
  this.cors,
  this.creationTime,
  this.functionArn,
  this.functionName,
  this.functionUrl,
  this.id,
  this.invokeMode,
  this.lastModifiedTime,
  this.qualifier,
  this.region,
  this.urlId,
});