FunctionUrlOptions¶
-
class
aws_cdk.aws_lambda.
FunctionUrlOptions
(*, auth_type=None, cors=None)¶ Bases:
object
Options to add a url to a Lambda function.
- Parameters
auth_type (
Optional
[FunctionUrlAuthType
]) – The type of authentication that your function URL uses. Default: FunctionUrlAuthType.AWS_IAMcors (
Optional
[FunctionUrlCorsOptions
]) – The cross-origin resource sharing (CORS) settings for your function URL. Default: - No CORS configuration.
- ExampleMetadata
infused
Example:
# Can be a Function or an Alias # fn: lambda.Function fn_url = fn.add_function_url( auth_type=lambda_.FunctionUrlAuthType.NONE ) CfnOutput(self, "TheUrl", value=fn_url.url )
Attributes
-
auth_type
¶ The type of authentication that your function URL uses.
- Default
FunctionUrlAuthType.AWS_IAM
- Return type
Optional
[FunctionUrlAuthType
]
-
cors
¶ The cross-origin resource sharing (CORS) settings for your function URL.
- Default
No CORS configuration.
- Return type
Optional
[FunctionUrlCorsOptions
]