ConfigurationProfileReference
- class aws_cdk.aws_appconfig.ConfigurationProfileReference(*, application_id, configuration_profile_id)
Bases:
object
A reference to a ConfigurationProfile resource.
- Parameters:
application_id (
str
) – The ApplicationId of the ConfigurationProfile resource.configuration_profile_id (
str
) – The ConfigurationProfileId of the ConfigurationProfile resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_appconfig as appconfig configuration_profile_reference = appconfig.ConfigurationProfileReference( application_id="applicationId", configuration_profile_id="configurationProfileId" )
Attributes
- application_id
The ApplicationId of the ConfigurationProfile resource.
- configuration_profile_id
The ConfigurationProfileId of the ConfigurationProfile resource.