List Type Registrations
cloudformation_list_type_registrations | R Documentation |
Returns a list of registration tokens for the specified extension(s)¶
Description¶
Returns a list of registration tokens for the specified extension(s).
Usage¶
cloudformation_list_type_registrations(Type, TypeName, TypeArn,
RegistrationStatusFilter, MaxResults, NextToken)
Arguments¶
Type |
The kind of extension. Conditional: You must specify either |
TypeName |
The name of the extension. Conditional: You must specify either |
TypeArn |
The Amazon Resource Name (ARN) of the extension. Conditional: You must specify either |
RegistrationStatusFilter |
The current status of the extension registration request. The default is |
MaxResults |
The maximum number of results to be returned with a single call.
If the number of available results exceeds this maximum, the response
includes a |
NextToken |
If the previous paginated request didn't return all the remaining
results, the response object's |
Value¶
A list with the following syntax:
list(
RegistrationTokenList = list(
"string"
),
NextToken = "string"
)
Request syntax¶
svc$list_type_registrations(
Type = "RESOURCE"|"MODULE"|"HOOK",
TypeName = "string",
TypeArn = "string",
RegistrationStatusFilter = "COMPLETE"|"IN_PROGRESS"|"FAILED",
MaxResults = 123,
NextToken = "string"
)