![]() |
![]()
| ![]() |
![]()
NAMEPaws::AppSync::UpdateApiCache - Arguments for method UpdateApiCache on Paws::AppSync DESCRIPTIONThis class represents the parameters used for calling the method UpdateApiCache on the AWS AppSync service. Use the attributes of this class as arguments to method UpdateApiCache. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateApiCache. SYNOPSISmy $appsync = Paws->service('AppSync'); my $UpdateApiCacheResponse = $appsync->UpdateApiCache( ApiCachingBehavior => 'FULL_REQUEST_CACHING', ApiId => 'MyString', Ttl => 1, Type => 'T2_SMALL', ); # Results: my $ApiCache = $UpdateApiCacheResponse->ApiCache; # Returns a L<Paws::AppSync::UpdateApiCacheResponse> object. 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. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/appsync/UpdateApiCache> ATTRIBUTESREQUIRED ApiCachingBehavior => StrCaching behavior.
Valid values are: "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING" REQUIRED ApiId => StrThe GraphQL API Id. REQUIRED Ttl => IntTTL in seconds for cache entries. Valid values are between 1 and 3600 seconds. REQUIRED Type => StrThe cache instance type. Valid values are
Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used. The following legacy instance types are available, but their use is discouraged:
Valid values are: "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE", "SMALL", "MEDIUM", "LARGE", "XLARGE", "LARGE_2X", "LARGE_4X", "LARGE_8X", "LARGE_12X" SEE ALSOThis class forms part of Paws, documenting arguments for method UpdateApiCache in Paws::AppSync BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|