ConfigurationProfileReference
- class aws_cdk.interfaces.aws_appconfig.ConfigurationProfileReference(*, application_id, configuration_profile_id)
Bases:
objectA 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.interfaces import aws_appconfig as interfaces_aws_appconfig configuration_profile_reference = interfaces_aws_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.