List Types
| cloudformation_list_types | R Documentation |
Returns summary information about all extensions, including your private resource types, modules, and Hooks as well as all public extensions from Amazon Web Services and third-party publishers¶
Description¶
Returns summary information about all extensions, including your private resource types, modules, and Hooks as well as all public extensions from Amazon Web Services and third-party publishers.
Usage¶
cloudformation_list_types(Visibility, ProvisioningType,
DeprecatedStatus, Type, Filters, MaxResults, NextToken)
Arguments¶
Visibility |
The scope at which the extensions are visible and usable in CloudFormation operations. Valid values include:
The default is |
ProvisioningType |
For resource types, the provisioning behavior of the resource type. CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted. Valid values include:
The default is |
DeprecatedStatus |
The deprecation status of the extension that you want to get summary information about. Valid values include:
|
Type |
The type of extension. |
Filters |
Filter criteria to use in determining which extensions to return. Filters must be compatible with |
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 |
The token for the next set of items to return. (You received this token from a previous call.) |
Value¶
A list with the following syntax:
list(
TypeSummaries = list(
list(
Type = "RESOURCE"|"MODULE"|"HOOK",
TypeName = "string",
DefaultVersionId = "string",
TypeArn = "string",
LastUpdated = as.POSIXct(
"2015-01-01"
),
Description = "string",
PublisherId = "string",
OriginalTypeName = "string",
PublicVersionNumber = "string",
LatestPublicVersion = "string",
PublisherIdentity = "AWS_Marketplace"|"GitHub"|"Bitbucket",
PublisherName = "string",
IsActivated = TRUE|FALSE
)
),
NextToken = "string"
)
Request syntax¶
svc$list_types(
Visibility = "PUBLIC"|"PRIVATE",
ProvisioningType = "NON_PROVISIONABLE"|"IMMUTABLE"|"FULLY_MUTABLE",
DeprecatedStatus = "LIVE"|"DEPRECATED",
Type = "RESOURCE"|"MODULE"|"HOOK",
Filters = list(
Category = "REGISTERED"|"ACTIVATED"|"THIRD_PARTY"|"AWS_TYPES",
PublisherId = "string",
TypeNamePrefix = "string"
),
MaxResults = 123,
NextToken = "string"
)