AWS Service Catalog App Registry 2020-06-24
- Client: Aws\AppRegistry\AppRegistryClient
- Service ID: servicecatalog-appregistry
- Version: 2020-06-24
This page describes the parameters and results for the operations of the AWS Service Catalog App Registry (2020-06-24), and shows how to use the Aws\AppRegistry\AppRegistryClient object to call the described operations. This documentation is specific to the 2020-06-24 API version of the service.
Operation Summary
Each of the following operations can be created from a client using
$client->getCommand('CommandName')
, where "CommandName" is the
name of one of the following operations. Note: a command is a value that
encapsulates an operation and the parameters used to create an HTTP request.
You can also create and send a command immediately using the magic methods
available on a client object: $client->commandName(/* parameters */)
.
You can send the command asynchronously (returning a promise) by appending the
word "Async" to the operation name: $client->commandNameAsync(/* parameters */)
.
- AssociateAttributeGroup ( array $params = [] )
Associates an attribute group with an application to augment the application's metadata with the group's attributes.
- AssociateResource ( array $params = [] )
Associates a resource with an application.
- CreateApplication ( array $params = [] )
Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.
- CreateAttributeGroup ( array $params = [] )
Creates a new attribute group as a container for user-defined attributes.
- DeleteApplication ( array $params = [] )
Deletes an application that is specified either by its application ID or name.
- DeleteAttributeGroup ( array $params = [] )
Deletes an attribute group, specified either by its attribute group ID or name.
- DisassociateAttributeGroup ( array $params = [] )
Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata.
- DisassociateResource ( array $params = [] )
Disassociates a resource from application.
- GetApplication ( array $params = [] )
Retrieves metadata information about one of your applications.
- GetAttributeGroup ( array $params = [] )
Retrieves an attribute group, either by its name or its ID.
- ListApplications ( array $params = [] )
Retrieves a list of all of your applications.
- ListAssociatedAttributeGroups ( array $params = [] )
Lists all attribute groups that are associated with specified application.
- ListAssociatedResources ( array $params = [] )
Lists all resources that are associated with specified application.
- ListAttributeGroups ( array $params = [] )
Lists all attribute groups which you have access to.
- ListTagsForResource ( array $params = [] )
Lists all of the tags on the resource.
- SyncResource ( array $params = [] )
Syncs the resource with what is currently recorded in App registry.
- TagResource ( array $params = [] )
Assigns one or more tags (key-value pairs) to the specified resource.
- UntagResource ( array $params = [] )
Removes tags from a resource.
- UpdateApplication ( array $params = [] )
Updates an existing application with new attributes.
- UpdateAttributeGroup ( array $params = [] )
Updates an existing attribute group with new details.
Paginators
Paginators handle automatically iterating over paginated API results. Paginators are associated with specific API operations, and they accept the parameters that the corresponding API operation accepts. You can get a paginator from a client class using getPaginator($paginatorName, $operationParameters). This client supports the following paginators:
Operations
AssociateAttributeGroup
$result = $client->associateAttributeGroup
([/* ... */]); $promise = $client->associateAttributeGroupAsync
([/* ... */]);
Associates an attribute group with an application to augment the application's metadata with the group's attributes. This feature enables applications to be described with user-defined details that are machine-readable, such as third-party integrations.
Parameter Syntax
$result = $client->associateAttributeGroup([ 'application' => '<string>', // REQUIRED 'attributeGroup' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'applicationArn' => '<string>', 'attributeGroupArn' => '<string>', ]
Result Details
Members
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
-
ServiceQuotaExceededException:
The maximum number of resources per account has been reached.
AssociateResource
$result = $client->associateResource
([/* ... */]); $promise = $client->associateResourceAsync
([/* ... */]);
Associates a resource with an application. Both the resource and the application can be specified either by ID or name.
Parameter Syntax
$result = $client->associateResource([ 'application' => '<string>', // REQUIRED 'resource' => '<string>', // REQUIRED 'resourceType' => 'CFN_STACK', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'applicationArn' => '<string>', 'resourceArn' => '<string>', ]
Result Details
Members
Errors
-
The specified resource does not exist.
-
The service is experiencing internal problems.
-
ServiceQuotaExceededException:
The maximum number of resources per account has been reached.
-
There was a conflict when processing the request (for example, a resource with the given name already exists within the account).
CreateApplication
$result = $client->createApplication
([/* ... */]); $promise = $client->createApplicationAsync
([/* ... */]);
Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.
Parameter Syntax
$result = $client->createApplication([ 'clientToken' => '<string>', // REQUIRED 'description' => '<string>', 'name' => '<string>', // REQUIRED 'tags' => ['<string>', ...], ]);
Parameter Details
Members
- clientToken
-
- Required: Yes
- Type: string
A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.
- description
-
- Type: string
The description of the application.
- name
-
- Required: Yes
- Type: string
The name of the application. The name must be unique in the region in which you are creating the application.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Key-value pairs you can use to associate with the application.
Result Syntax
[ 'application' => [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- application
-
- Type: Application structure
Information about the application.
Errors
-
ServiceQuotaExceededException:
The maximum number of resources per account has been reached.
-
There was a conflict when processing the request (for example, a resource with the given name already exists within the account).
-
The service is experiencing internal problems.
CreateAttributeGroup
$result = $client->createAttributeGroup
([/* ... */]); $promise = $client->createAttributeGroupAsync
([/* ... */]);
Creates a new attribute group as a container for user-defined attributes. This feature enables users to have full control over their cloud application's metadata in a rich machine-readable format to facilitate integration with automated workflows and third-party tools.
Parameter Syntax
$result = $client->createAttributeGroup([ 'attributes' => '<string>', // REQUIRED 'clientToken' => '<string>', // REQUIRED 'description' => '<string>', 'name' => '<string>', // REQUIRED 'tags' => ['<string>', ...], ]);
Parameter Details
Members
- attributes
-
- Required: Yes
- Type: string
A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.
- clientToken
-
- Required: Yes
- Type: string
A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.
- description
-
- Type: string
The description of the attribute group that the user provides.
- name
-
- Required: Yes
- Type: string
The name of the attribute group.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Key-value pairs you can use to associate with the attribute group.
Result Syntax
[ 'attributeGroup' => [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- attributeGroup
-
- Type: AttributeGroup structure
Information about the attribute group.
Errors
-
ServiceQuotaExceededException:
The maximum number of resources per account has been reached.
-
There was a conflict when processing the request (for example, a resource with the given name already exists within the account).
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
DeleteApplication
$result = $client->deleteApplication
([/* ... */]); $promise = $client->deleteApplicationAsync
([/* ... */]);
Deletes an application that is specified either by its application ID or name. All associated attribute groups and resources must be disassociated from it before deleting an application.
Parameter Syntax
$result = $client->deleteApplication([ 'application' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[ 'application' => [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', ], ]
Result Details
Members
- application
-
- Type: ApplicationSummary structure
Information about the deleted application.
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
DeleteAttributeGroup
$result = $client->deleteAttributeGroup
([/* ... */]); $promise = $client->deleteAttributeGroupAsync
([/* ... */]);
Deletes an attribute group, specified either by its attribute group ID or name.
Parameter Syntax
$result = $client->deleteAttributeGroup([ 'attributeGroup' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'attributeGroup' => [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', ], ]
Result Details
Members
- attributeGroup
-
- Type: AttributeGroupSummary structure
Information about the deleted attribute group.
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
DisassociateAttributeGroup
$result = $client->disassociateAttributeGroup
([/* ... */]); $promise = $client->disassociateAttributeGroupAsync
([/* ... */]);
Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts AssociateAttributeGroup
.
Parameter Syntax
$result = $client->disassociateAttributeGroup([ 'application' => '<string>', // REQUIRED 'attributeGroup' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'applicationArn' => '<string>', 'attributeGroupArn' => '<string>', ]
Result Details
Members
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
DisassociateResource
$result = $client->disassociateResource
([/* ... */]); $promise = $client->disassociateResourceAsync
([/* ... */]);
Disassociates a resource from application. Both the resource and the application can be specified either by ID or name.
Parameter Syntax
$result = $client->disassociateResource([ 'application' => '<string>', // REQUIRED 'resource' => '<string>', // REQUIRED 'resourceType' => 'CFN_STACK', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'applicationArn' => '<string>', 'resourceArn' => '<string>', ]
Result Details
Members
Errors
-
The specified resource does not exist.
-
The service is experiencing internal problems.
GetApplication
$result = $client->getApplication
([/* ... */]); $promise = $client->getApplicationAsync
([/* ... */]);
Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a ResourceNotFoundException
is thrown, avoiding the ABA addressing problem.
Parameter Syntax
$result = $client->getApplication([ 'application' => '<string>', // REQUIRED ]);
Parameter Details
Result Syntax
[ 'arn' => '<string>', 'associatedResourceCount' => <integer>, 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', 'tags' => ['<string>', ...], ]
Result Details
Members
- arn
-
- Type: string
The Amazon resource name (ARN) that specifies the application across services.
- associatedResourceCount
-
- Type: int
The number of top-level resources that were registered as part of this application.
- creationTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment when the application was created.
- description
-
- Type: string
The description of the application.
- id
-
- Type: string
The identifier of the application.
- lastUpdateTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment when the application was last updated.
- name
-
- Type: string
The name of the application. The name must be unique in the region in which you are creating the application.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Key-value pairs associated with the application.
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
GetAttributeGroup
$result = $client->getAttributeGroup
([/* ... */]); $promise = $client->getAttributeGroupAsync
([/* ... */]);
Retrieves an attribute group, either by its name or its ID. The attribute group can be specified either by its unique ID or by its name.
Parameter Syntax
$result = $client->getAttributeGroup([ 'attributeGroup' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'arn' => '<string>', 'attributes' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', 'tags' => ['<string>', ...], ]
Result Details
Members
- arn
-
- Type: string
The Amazon resource name (ARN) that specifies the attribute group across services.
- attributes
-
- Type: string
A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.
- creationTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment the attribute group was created.
- description
-
- Type: string
The description of the attribute group that the user provides.
- id
-
- Type: string
The identifier of the attribute group.
- lastUpdateTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.
- name
-
- Type: string
The name of the attribute group.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Key-value pairs associated with the attribute group.
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
ListApplications
$result = $client->listApplications
([/* ... */]); $promise = $client->listApplicationsAsync
([/* ... */]);
Retrieves a list of all of your applications. Results are paginated.
Parameter Syntax
$result = $client->listApplications([ 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
Result Syntax
[ 'applications' => [ [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', ], // ... ], 'nextToken' => '<string>', ]
Result Details
Members
- applications
-
- Type: Array of ApplicationSummary structures
This list of applications.
- nextToken
-
- Type: string
The token to use to get the next page of results after a previous API call.
Errors
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
ListAssociatedAttributeGroups
$result = $client->listAssociatedAttributeGroups
([/* ... */]); $promise = $client->listAssociatedAttributeGroupsAsync
([/* ... */]);
Lists all attribute groups that are associated with specified application. Results are paginated.
Parameter Syntax
$result = $client->listAssociatedAttributeGroups([ 'application' => '<string>', // REQUIRED 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- application
-
- Required: Yes
- Type: string
The name or ID of the application.
- maxResults
-
- Type: int
The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.
- nextToken
-
- Type: string
The token to use to get the next page of results after a previous API call.
Result Syntax
[ 'attributeGroups' => ['<string>', ...], 'nextToken' => '<string>', ]
Result Details
Members
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
ListAssociatedResources
$result = $client->listAssociatedResources
([/* ... */]); $promise = $client->listAssociatedResourcesAsync
([/* ... */]);
Lists all resources that are associated with specified application. Results are paginated.
Parameter Syntax
$result = $client->listAssociatedResources([ 'application' => '<string>', // REQUIRED 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- application
-
- Required: Yes
- Type: string
The name or ID of the application.
- maxResults
-
- Type: int
The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.
- nextToken
-
- Type: string
The token to use to get the next page of results after a previous API call.
Result Syntax
[ 'nextToken' => '<string>', 'resources' => [ [ 'arn' => '<string>', 'name' => '<string>', ], // ... ], ]
Result Details
Members
- nextToken
-
- Type: string
The token to use to get the next page of results after a previous API call.
- resources
-
- Type: Array of ResourceInfo structures
Information about the resources.
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
ListAttributeGroups
$result = $client->listAttributeGroups
([/* ... */]); $promise = $client->listAttributeGroupsAsync
([/* ... */]);
Lists all attribute groups which you have access to. Results are paginated.
Parameter Syntax
$result = $client->listAttributeGroups([ 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
Result Syntax
[ 'attributeGroups' => [ [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', ], // ... ], 'nextToken' => '<string>', ]
Result Details
Members
- attributeGroups
-
- Type: Array of AttributeGroupSummary structures
This list of attribute groups.
- nextToken
-
- Type: string
The token to use to get the next page of results after a previous API call.
Errors
-
The request has invalid or missing parameters.
-
The service is experiencing internal problems.
ListTagsForResource
$result = $client->listTagsForResource
([/* ... */]); $promise = $client->listTagsForResourceAsync
([/* ... */]);
Lists all of the tags on the resource.
Parameter Syntax
$result = $client->listTagsForResource([ 'resourceArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'tags' => ['<string>', ...], ]
Result Details
Members
Errors
-
The request has invalid or missing parameters.
-
The specified resource does not exist.
-
The service is experiencing internal problems.
SyncResource
$result = $client->syncResource
([/* ... */]); $promise = $client->syncResourceAsync
([/* ... */]);
Syncs the resource with what is currently recorded in App registry. Specifically, the resource’s App registry system tags are synced with its associated application. The resource is removed if it is not associated with the application. The caller must have permissions to read and update the resource.
Parameter Syntax
$result = $client->syncResource([ 'resource' => '<string>', // REQUIRED 'resourceType' => 'CFN_STACK', // REQUIRED ]);
Parameter Details
Members
Result Syntax
[ 'actionTaken' => 'START_SYNC|NO_ACTION', 'applicationArn' => '<string>', 'resourceArn' => '<string>', ]
Result Details
Members
- actionTaken
-
- Type: string
The results of the output if an application is associated with an ARN value, which could be
syncStarted
or None. - applicationArn
-
- Type: string
The Amazon resource name (ARN) that specifies the application.
- resourceArn
-
- Type: string
The Amazon resource name (ARN) that specifies the resource.
Errors
-
The specified resource does not exist.
-
The service is experiencing internal problems.
-
There was a conflict when processing the request (for example, a resource with the given name already exists within the account).
TagResource
$result = $client->tagResource
([/* ... */]); $promise = $client->tagResourceAsync
([/* ... */]);
Assigns one or more tags (key-value pairs) to the specified resource.
Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.
This operation returns an empty response if the call was successful.
Parameter Syntax
$result = $client->tagResource([ 'resourceArn' => '<string>', // REQUIRED 'tags' => ['<string>', ...], // REQUIRED ]);
Parameter Details
Members
Result Syntax
[]
Result Details
Errors
-
The request has invalid or missing parameters.
-
The specified resource does not exist.
-
The service is experiencing internal problems.
UntagResource
$result = $client->untagResource
([/* ... */]); $promise = $client->untagResourceAsync
([/* ... */]);
Removes tags from a resource.
This operation returns an empty response if the call was successful.
Parameter Syntax
$result = $client->untagResource([ 'resourceArn' => '<string>', // REQUIRED 'tagKeys' => ['<string>', ...], // REQUIRED ]);
Parameter Details
Members
Result Syntax
[]
Result Details
Errors
-
The request has invalid or missing parameters.
-
The specified resource does not exist.
-
The service is experiencing internal problems.
UpdateApplication
$result = $client->updateApplication
([/* ... */]); $promise = $client->updateApplicationAsync
([/* ... */]);
Updates an existing application with new attributes.
Parameter Syntax
$result = $client->updateApplication([ 'application' => '<string>', // REQUIRED 'description' => '<string>', 'name' => '<string>', ]);
Parameter Details
Members
Result Syntax
[ 'application' => [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- application
-
- Type: Application structure
The updated information of the application.
Errors
-
The specified resource does not exist.
-
There was a conflict when processing the request (for example, a resource with the given name already exists within the account).
-
The service is experiencing internal problems.
UpdateAttributeGroup
$result = $client->updateAttributeGroup
([/* ... */]); $promise = $client->updateAttributeGroupAsync
([/* ... */]);
Updates an existing attribute group with new details.
Parameter Syntax
$result = $client->updateAttributeGroup([ 'attributeGroup' => '<string>', // REQUIRED 'attributes' => '<string>', 'description' => '<string>', 'name' => '<string>', ]);
Parameter Details
Members
- attributeGroup
-
- Required: Yes
- Type: string
The name or ID of the attribute group that holds the attributes to describe the application.
- attributes
-
- Type: string
A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.
- description
-
- Type: string
The description of the attribute group that the user provides.
- name
-
- Type: string
The new name of the attribute group. The name must be unique in the region in which you are updating the attribute group.
Result Syntax
[ 'attributeGroup' => [ 'arn' => '<string>', 'creationTime' => <DateTime>, 'description' => '<string>', 'id' => '<string>', 'lastUpdateTime' => <DateTime>, 'name' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- attributeGroup
-
- Type: AttributeGroup structure
The updated information of the attribute group.
Errors
-
The specified resource does not exist.
-
The request has invalid or missing parameters.
-
There was a conflict when processing the request (for example, a resource with the given name already exists within the account).
-
The service is experiencing internal problems.
Shapes
Application
Description
Represents a Service Catalog AppRegistry application that is the top-level node in a hierarchy of related cloud resource abstractions.
Members
- arn
-
- Type: string
The Amazon resource name (ARN) that specifies the application across services.
- creationTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment when the application was created.
- description
-
- Type: string
The description of the application.
- id
-
- Type: string
The identifier of the application.
- lastUpdateTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment when the application was last updated.
- name
-
- Type: string
The name of the application. The name must be unique in the region in which you are creating the application.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Key-value pairs you can use to associate with the application.
ApplicationSummary
Description
Summary of a Service Catalog AppRegistry application.
Members
- arn
-
- Type: string
The Amazon resource name (ARN) that specifies the application across services.
- creationTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment when the application was created.
- description
-
- Type: string
The description of the application.
- id
-
- Type: string
The identifier of the application.
- lastUpdateTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment when the application was last updated.
- name
-
- Type: string
The name of the application. The name must be unique in the region in which you are creating the application.
AttributeGroup
Description
Represents a Service Catalog AppRegistry attribute group that is rich metadata which describes an application and its components.
Members
- arn
-
- Type: string
The Amazon resource name (ARN) that specifies the attribute group across services.
- creationTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment the attribute group was created.
- description
-
- Type: string
The description of the attribute group that the user provides.
- id
-
- Type: string
The globally unique attribute group identifier of the attribute group.
- lastUpdateTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.
- name
-
- Type: string
The name of the attribute group.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Key-value pairs you can use to associate with the attribute group.
AttributeGroupSummary
Description
Summary of a Service Catalog AppRegistry attribute group.
Members
- arn
-
- Type: string
The Amazon resource name (ARN) that specifies the attribute group across services.
- creationTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment the attribute group was created.
- description
-
- Type: string
The description of the attribute group that the user provides.
- id
-
- Type: string
The globally unique attribute group identifier of the attribute group.
- lastUpdateTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.
- name
-
- Type: string
The name of the attribute group.
ConflictException
Description
There was a conflict when processing the request (for example, a resource with the given name already exists within the account).
Members
InternalServerException
ResourceInfo
Description
Information about the resource.
Members
ResourceNotFoundException
ServiceQuotaExceededException
Description
The maximum number of resources per account has been reached.