create_configuration_profile
(**kwargs)¶Creates a configuration profile, which is information that enables AppConfig to access the configuration source. Valid configuration sources include the following:
A configuration profile includes the following information:
For more information, see Create a Configuration and a Configuration Profile in the AppConfig User Guide .
See also: AWS API Documentation
Request Syntax
response = client.create_configuration_profile(
ApplicationId='string',
Name='string',
Description='string',
LocationUri='string',
RetrievalRoleArn='string',
Validators=[
{
'Type': 'JSON_SCHEMA'|'LAMBDA',
'Content': 'string'
},
],
Tags={
'string': 'string'
},
Type='string'
)
[REQUIRED]
The application ID.
[REQUIRED]
A name for the configuration profile.
[REQUIRED]
A URI to locate the configuration. You can specify the following:
hosted
.ssm-parameter://<parameter name>
or the ARN.secrets-manager
://<secret name>.s3://<bucket>/<objectKey>
. Here is an example: s3://my-bucket/my-app/us-east-1/my-config.json
ssm-document://<document name>
or the Amazon Resource Name (ARN).The ARN of an IAM role with permission to access the configuration at the specified LocationUri
.
Warning
A retrieval role ARN is not required for configurations stored in the AppConfig hosted configuration store. It is required for all other sources that store your configuration.
A list of methods for validating the configuration.
A validator provides a syntactic or semantic check to ensure the configuration that you want to deploy functions as intended. To validate your application configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.
AppConfig supports validators of type JSON_SCHEMA
and LAMBDA
Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
Metadata to assign to the configuration profile. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
The type of configurations contained in the profile. AppConfig supports feature flags
and freeform
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 for Type
:
AWS.AppConfig.FeatureFlags
AWS.Freeform
dict
Response Syntax
{
'ApplicationId': 'string',
'Id': 'string',
'Name': 'string',
'Description': 'string',
'LocationUri': 'string',
'RetrievalRoleArn': 'string',
'Validators': [
{
'Type': 'JSON_SCHEMA'|'LAMBDA',
'Content': 'string'
},
],
'Type': 'string'
}
Response Structure
(dict) --
ApplicationId (string) --
The application ID.
Id (string) --
The configuration profile ID.
Name (string) --
The name of the configuration profile.
Description (string) --
The configuration profile description.
LocationUri (string) --
The URI location of the configuration.
RetrievalRoleArn (string) --
The ARN of an IAM role with permission to access the configuration at the specified LocationUri
.
Validators (list) --
A list of methods for validating the configuration.
(dict) --
A validator provides a syntactic or semantic check to ensure the configuration that you want to deploy functions as intended. To validate your application configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.
Type (string) --
AppConfig supports validators of type JSON_SCHEMA
and LAMBDA
Content (string) --
Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
Type (string) --
The type of configurations contained in the profile. AppConfig supports feature flags
and freeform
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 for Type
:
AWS.AppConfig.FeatureFlags
AWS.Freeform
Exceptions
AppConfig.Client.exceptions.BadRequestException
AppConfig.Client.exceptions.ResourceNotFoundException
AppConfig.Client.exceptions.InternalServerException
Examples
The following create-configuration-profile example creates a configuration profile using a configuration stored in Parameter Store, a capability of Systems Manager.
response = client.create_configuration_profile(
ApplicationId='339ohji',
LocationUri='ssm-parameter://Example-Parameter',
Name='Example-Configuration-Profile',
RetrievalRoleArn='arn:aws:iam::111122223333:role/Example-App-Config-Role',
)
print(response)
Expected Output:
{
'ApplicationId': '339ohji',
'Id': 'ur8hx2f',
'LocationUri': 'ssm-parameter://Example-Parameter',
'Name': 'Example-Configuration-Profile',
'RetrievalRoleArn': 'arn:aws:iam::111122223333:role/Example-App-Config-Role',
'ResponseMetadata': {
'...': '...',
},
}