FunctionUrlAuthType
- class aws_cdk.aws_lambda.FunctionUrlAuthType(value)
Bases:
Enum
The auth types for a function url.
- ExampleMetadata:
infused
Example:
# fn: lambda.Function fn.add_function_url( auth_type=lambda_.FunctionUrlAuthType.NONE, invoke_mode=lambda_.InvokeMode.RESPONSE_STREAM )
Attributes
- AWS_IAM
Restrict access to authenticated IAM users only.
- NONE
Bypass IAM authentication to create a public endpoint.