Method¶
-
class
aws_cdk.aws_apigateway.
Method
(scope, id, *, http_method, resource, integration=None, options=None)¶ Bases:
aws_cdk.core.Resource
- Parameters
scope (
Construct
) –id (
str
) –http_method (
str
) – The HTTP method (“GET”, “POST”, “PUT”, …) that clients use to call this method.resource (
IResource
) – The resource this method is associated with. For root resource methods, specify theRestApi
object.integration (
Optional
[Integration
]) – The backend system that the method calls when it receives a request. Default: - a newMockIntegration
.options (
Optional
[MethodOptions
]) – Method options. Default: - No options.
Methods
-
apply_removal_policy
(policy)¶ Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DELETE
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).- Parameters
policy (
RemovalPolicy
) –- Return type
None
-
to_string
()¶ Returns a string representation of this construct.
- Return type
str
Attributes
-
env
¶ The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
- Return type
-
http_method
¶ - Return type
str
-
method_arn
¶ .
arn:aws:execute-api:{region}:{account}:{restApiId}/{stage}/{method}/{path}
NOTE: {stage} will refer to the
restApi.deploymentStage
, which will automatically set if auto-deploy is enabled, or can be explicitly assigned. When not configured, {stage} will be set to ‘*’, as a shorthand for ‘all stages’.- Attribute
true
- Type
Returns an execute-api ARN for this method
- Return type
str
-
method_id
¶ true
- Type
attribute
- Return type
str
-
node
¶ The construct tree node associated with this construct.
- Return type
-
rest_api
¶ (deprecated) The RestApi associated with this Method.
- Deprecated
Throws an error if this Resource is not associated with an instance of
RestApi
. Useapi
instead.
- Stability
deprecated
- Return type
-
test_method_arn
¶ Returns an execute-api ARN for this method’s “test-invoke-stage” stage.
This stage is used by the AWS Console UI when testing the method.
- Return type
str
Static Methods
-
classmethod
is_construct
(x)¶ Return whether the given object is a Construct.
- Parameters
x (
Any
) –- Return type
bool
-
classmethod
is_resource
(construct)¶ Check whether the given construct is a Resource.
- Parameters
construct (
IConstruct
) –- Return type
bool