Bases: ResourceOptions
default_cors_preflight_options (Union
[CorsOptions
, Dict
[str
, Any
], None
]) â Adds a CORS preflight OPTIONS method to this resource and all child resources. You can add CORS at the resource-level using addCorsPreflight
. Default: - CORS is disabled
default_integration (Optional
[Integration
]) â An integration to use as a default for all methods created within this API unless an integration is specified. Default: - Inherited from parent.
default_method_options (Union
[MethodOptions
, Dict
[str
, Any
], None
]) â Method options to use as a default for all methods created within this API unless custom options are specified. Default: - Inherited from parent.
parent (IResource
) â The parent resource of this resource. You can either pass another Resource
object or a RestApi
object here.
path_part (str
) â A path name for the resource.
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_apigateway as apigateway import aws_cdk.core as cdk # authorizer: apigateway.Authorizer # integration: apigateway.Integration # model: apigateway.Model # request_validator: apigateway.RequestValidator # resource: apigateway.Resource resource_props = apigateway.ResourceProps( parent=resource, path_part="pathPart", # the properties below are optional default_cors_preflight_options=apigateway.CorsOptions( allow_origins=["allowOrigins"], # the properties below are optional allow_credentials=False, allow_headers=["allowHeaders"], allow_methods=["allowMethods"], disable_cache=False, expose_headers=["exposeHeaders"], max_age=cdk.Duration.minutes(30), status_code=123 ), default_integration=integration, default_method_options=apigateway.MethodOptions( api_key_required=False, authorization_scopes=["authorizationScopes"], authorization_type=apigateway.AuthorizationType.NONE, authorizer=authorizer, method_responses=[apigateway.MethodResponse( status_code="statusCode", # the properties below are optional response_models={ "response_models_key": model }, response_parameters={ "response_parameters_key": False } )], operation_name="operationName", request_models={ "request_models_key": model }, request_parameters={ "request_parameters_key": False }, request_validator=request_validator, request_validator_options=apigateway.RequestValidatorOptions( request_validator_name="requestValidatorName", validate_request_body=False, validate_request_parameters=False ) ) )
Attributes
Adds a CORS preflight OPTIONS method to this resource and all child resources.
You can add CORS at the resource-level using addCorsPreflight
.
CORS is disabled
An integration to use as a default for all methods created within this API unless an integration is specified.
Inherited from parent.
Method options to use as a default for all methods created within this API unless custom options are specified.
Inherited from parent.
The parent resource of this resource.
You can either pass another Resource
object or a RestApi
object here.
A path name for the resource.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4