CreateConfigurationProfile
Creates a configuration profile, which is information that enables AWS AppConfig to access the configuration source. Valid configuration sources include the AWS AppConfig hosted configuration store, AWS Systems Manager (SSM) documents, SSM Parameter Store parameters, Amazon S3 objects, or any integration source action supported by AWS CodePipeline. A configuration profile includes the following information:
-
The URI location of the configuration data.
-
The AWS Identity and Access Management (IAM) role that provides access to the configuration data.
-
A validator for the configuration data. Available validators include either a JSON Schema or an AWS Lambda function.
For more information, see Create a Configuration and a Configuration Profile in the AWS AppConfig User Guide.
Request Syntax
POST /applications/ApplicationId
/configurationprofiles HTTP/1.1
Content-type: application/json
{
"Description": "string
",
"LocationUri": "string
",
"Name": "string
",
"RetrievalRoleArn": "string
",
"Tags": {
"string
" : "string
"
},
"Type": "string
",
"Validators": [
{
"Content": "string
",
"Type": "string
"
}
]
}
URI Request Parameters
The request uses the following URI parameters.
- ApplicationId
-
The application ID.
Pattern:
[a-z0-9]{4,7}
Required: Yes
Request Body
The request accepts the following data in JSON format.
- Description
-
A description of the configuration profile.
Type: String
Length Constraints: Minimum length of 0. Maximum length of 1024.
Required: No
- LocationUri
-
A URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store and for feature flags, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the Amazon Resource Name (ARN). For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. Here is an example:s3://my-bucket/my-app/us-east-1/my-config.json
Type: String
Length Constraints: Minimum length of 1. Maximum length of 2048.
Required: Yes
- Name
-
A name for the configuration profile.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 128.
Required: Yes
- RetrievalRoleArn
-
The ARN of an IAM role with permission to access the configuration at the specified
LocationUri
.Important A retrieval role ARN is not required for configurations stored in the AWS AppConfig hosted configuration store. It is required for all other sources that store your configuration.
Type: String
Length Constraints: Minimum length of 20. Maximum length of 2048.
Pattern:
^((arn):(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):(iam)::\d{12}:role[/].*)$
Required: No
- Tags
-
Metadata to assign to the configuration profile. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
Type: String to string map
Map Entries: Minimum number of 0 items. Maximum number of 50 items.
Key Length Constraints: Minimum length of 1. Maximum length of 128.
Value Length Constraints: Maximum length of 256.
Required: No
- Type
-
The type of configurations contained in the profile. AWS AppConfig supports
feature flags
andfreeform
configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType
:AWS.AppConfig.FeatureFlags
AWS.Freeform
Type: String
Pattern:
^[a-zA-Z\.]+
Required: No
- Validators
-
A list of methods for validating the configuration.
Type: Array of Validator objects
Array Members: Minimum number of 0 items. Maximum number of 2 items.
Required: No
Response Syntax
HTTP/1.1 201
Content-type: application/json
{
"ApplicationId": "string",
"Description": "string",
"Id": "string",
"LocationUri": "string",
"Name": "string",
"RetrievalRoleArn": "string",
"Type": "string",
"Validators": [
{
"Content": "string",
"Type": "string"
}
]
}
Response Elements
If the action is successful, the service sends back an HTTP 201 response.
The following data is returned in JSON format by the service.
- ApplicationId
-
The application ID.
Type: String
Pattern:
[a-z0-9]{4,7}
- Description
-
The configuration profile description.
Type: String
Length Constraints: Minimum length of 0. Maximum length of 1024.
- Id
-
The configuration profile ID.
Type: String
Pattern:
[a-z0-9]{4,7}
- LocationUri
-
The URI location of the configuration.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 2048.
- Name
-
The name of the configuration profile.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 128.
- RetrievalRoleArn
-
The ARN of an IAM role with permission to access the configuration at the specified
LocationUri
.Type: String
Length Constraints: Minimum length of 20. Maximum length of 2048.
Pattern:
^((arn):(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):(iam)::\d{12}:role[/].*)$
- Type
-
The type of configurations contained in the profile. AWS AppConfig supports
feature flags
andfreeform
configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType
:AWS.AppConfig.FeatureFlags
AWS.Freeform
Type: String
Pattern:
^[a-zA-Z\.]+
- Validators
-
A list of methods for validating the configuration.
Type: Array of Validator objects
Array Members: Minimum number of 0 items. Maximum number of 2 items.
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 CreateConfigurationProfile.
Sample Request
POST /applications/abc1234/configurationprofiles HTTP/1.1
Host: appconfig.us-east-1.amazonaws.com
Accept-Encoding: identity
User-Agent: aws-cli/2.2.4 Python/3.8.8 Linux/5.4.134-73.228.amzn2int.x86_64 exe/x86_64.amzn.2 prompt/off command/appconfig.create-configuration-profile
X-Amz-Date: 20210916T190059Z
Authorization: AWS4-HMAC-SHA256 Credential=AKIAIOSFODNN7EXAMPLE/20210916/us-east-1/appconfig/aws4_request, SignedHeaders=host;x-amz-date, Signature=39c3b3042cd2aEXAMPLE
Content-Length: 171
{
"Name": "Example-Configuration-Profile",
"LocationUri": "ssm-parameter://Example-Parameter",
"RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role"
}
Sample Response
{
"ApplicationId": "abc1234",
"Description": null,
"Id": "ur8hx2f",
"LocationUri": "ssm-parameter://Example-Parameter",
"Name": "Example-Configuration-Profile",
"RetrievalRoleArn": "arn:aws:iam::111122223333:role/Example-App-Config-Role",
"Type": null,
"Validators": null
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: