GetExtensionAssociation
Returns information about an AWS AppConfig extension association. For more information about extensions and associations, see Extending workflows in the AWS AppConfig User Guide.
Request Syntax
GET /extensionassociations/ExtensionAssociationId
HTTP/1.1
URI Request Parameters
The request uses the following URI parameters.
- ExtensionAssociationId
-
The extension association ID to get.
Pattern:
[a-z0-9]{4,7}
Required: Yes
Request Body
The request does not have a request body.
Response Syntax
HTTP/1.1 200
Content-type: application/json
{
"Arn": "string",
"ExtensionArn": "string",
"ExtensionVersionNumber": number,
"Id": "string",
"Parameters": {
"string" : "string"
},
"ResourceArn": "string"
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- Arn
-
The system-generated Amazon Resource Name (ARN) for the extension.
Type: String
Length Constraints: Minimum length of 20. Maximum length of 2048.
Pattern:
arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:[a-zA-Z0-9-_/:.]+
- ExtensionArn
-
The ARN of the extension defined in the association.
Type: String
Length Constraints: Minimum length of 20. Maximum length of 2048.
Pattern:
arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:[a-zA-Z0-9-_/:.]+
- ExtensionVersionNumber
-
The version number for the extension defined in the association.
Type: Integer
- Id
-
The system-generated ID for the association.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 2048.
- Parameters
-
The parameter names and values defined in the association.
Type: String to string map
Map Entries: Minimum number of 0 items. Maximum number of 10 items.
Key Pattern:
^[^\/#:\n]{1,64}$
Value Length Constraints: Minimum length of 1. Maximum length of 2048.
- ResourceArn
-
The ARNs of applications, configuration profiles, or environments defined in the association.
Type: String
Length Constraints: Minimum length of 20. Maximum length of 2048.
Pattern:
arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:[a-zA-Z0-9-_/:.]+
Errors
For information about the errors that are common to all actions, see Common Errors.
- BadRequestException
-
The input fails to satisfy the constraints specified by an AWS service.
HTTP Status Code: 400
- InternalServerException
-
There was an internal failure in the AWS AppConfig service.
HTTP Status Code: 500
- ResourceNotFoundException
-
The requested resource could not be found.
HTTP Status Code: 404
Examples
Example
This example illustrates one usage of GetExtensionAssociation.
Sample Request
GET /extensionassociations/rnekru4 HTTP/1.1
Host: appconfig.us-west-2.amazonaws.com
Accept-Encoding: identity
User-Agent: aws-cli/2.7.19 Python/3.9.11 Windows/10 exe/AMD64 prompt/off command/appconfig.get-extension-association
X-Amz-Date: 20220803T221553Z
Authorization: AWS4-HMAC-SHA256 Credential=AKIAIOSFODNN7EXAMPLE/20220803/us-west-2/appconfig/aws4_request, SignedHeaders=host;x-amz-date, Signature=39c3b3042cd2aEXAMPLE
Sample Response
{
"Arn": null,
"ExtensionArn": "arn:aws:appconfig:us-west-2:111122223333:extension/6czExample/1",
"ExtensionVersionNumber": 1,
"Id": "rnekru4",
"Parameters": {
"MyParamKey": "MyParamValue"
},
"ResourceArn": "arn:aws:appconfig:us-west-2:111122223333:application/xlmExample"
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: