Get Method
apigateway_get_method | R Documentation |
Describe an existing Method resource¶
Description¶
Describe an existing Method resource.
Usage¶
Arguments¶
restApiId
[required] The string identifier of the associated RestApi.
resourceId
[required] The Resource identifier for the Method resource.
httpMethod
[required] Specifies the method request's HTTP method type.
Value¶
A list with the following syntax:
list(
httpMethod = "string",
authorizationType = "string",
authorizerId = "string",
apiKeyRequired = TRUE|FALSE,
requestValidatorId = "string",
operationName = "string",
requestParameters = list(
TRUE|FALSE
),
requestModels = list(
"string"
),
methodResponses = list(
list(
statusCode = "string",
responseParameters = list(
TRUE|FALSE
),
responseModels = list(
"string"
)
)
),
methodIntegration = list(
type = "HTTP"|"AWS"|"MOCK"|"HTTP_PROXY"|"AWS_PROXY",
httpMethod = "string",
uri = "string",
connectionType = "INTERNET"|"VPC_LINK",
connectionId = "string",
credentials = "string",
requestParameters = list(
"string"
),
requestTemplates = list(
"string"
),
passthroughBehavior = "string",
contentHandling = "CONVERT_TO_BINARY"|"CONVERT_TO_TEXT",
timeoutInMillis = 123,
cacheNamespace = "string",
cacheKeyParameters = list(
"string"
),
integrationResponses = list(
list(
statusCode = "string",
selectionPattern = "string",
responseParameters = list(
"string"
),
responseTemplates = list(
"string"
),
contentHandling = "CONVERT_TO_BINARY"|"CONVERT_TO_TEXT"
)
),
tlsConfig = list(
insecureSkipVerification = TRUE|FALSE
)
),
authorizationScopes = list(
"string"
)
)