List Types
cloudformation_list_types | R Documentation |
Returns summary information about extension that have been registered with CloudFormation¶
Description¶
Returns summary information about extension that have been registered with CloudFormation.
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 |
If the previous paginated request didn't return all the remaining
results, the response object's |
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"
)