NAME
Paws::ApiGateway::PutMethod - Arguments for method PutMethod on Paws::ApiGateway
DESCRIPTION
This class represents the parameters used for calling the method PutMethod on the Amazon API Gateway service. Use the attributes of this class as arguments to method PutMethod.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PutMethod.
As an example:
$service_obj->PutMethod(Att1 => $value1, Att2 => $value2, ...);
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
ATTRIBUTES
ApiKeyRequired => Bool
Specifies whether the method required a valid ApiKey.
REQUIRED AuthorizationType => Str
The method's authorization type. Valid values are NONE
for open access, AWS_IAM
for using AWS IAM permissions, CUSTOM
for using a custom authorizer, or COGNITO_USER_POOLS
for using a Cognito user pool.
AuthorizerId => Str
Specifies the identifier of an Authorizer to use on this Method, if the type is CUSTOM.
REQUIRED HttpMethod => Str
Specifies the method request's HTTP method type.
OperationName => Str
A human-friendly operation identifier for the method. For example, you can assign the operationName
of ListPets
for the GET /pets
method in PetStore example.
RequestModels => Paws::ApiGateway::MapOfStringToString
Specifies the Model resources used for the request's content type. Request models are represented as a key/value map, with a content type as the key and a Model name as the value.
RequestParameters => Paws::ApiGateway::MapOfStringToBoolean
A key-value map defining required or optional method request parameters that can be accepted by Amazon API Gateway. A key defines a method request parameter name matching the pattern of method.request.{location}.{name}
, where location
is querystring
, path
, or header
and name
is a valid and unique parameter name. The value associated with the key is a Boolean flag indicating whether the parameter is required (true
) or optional (false
). The method request parameter names defined here are available in Integration to be mapped to integration request parameters or body-mapping templates.
RequestValidatorId => Str
The identifier of a RequestValidator for validating the method request.
REQUIRED ResourceId => Str
The Resource identifier for the new Method resource.
REQUIRED RestApiId => Str
The string identifier of the associated RestApi.
SEE ALSO
This class forms part of Paws, documenting arguments for method PutMethod in Paws::ApiGateway
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues