HostedConfigurationVersionReference
- class aws_cdk.aws_appconfig.HostedConfigurationVersionReference(*, application_id, configuration_profile_id, version_number)
Bases:
object
A reference to a HostedConfigurationVersion resource.
- Parameters:
application_id (
str
) – The ApplicationId of the HostedConfigurationVersion resource.configuration_profile_id (
str
) – The ConfigurationProfileId of the HostedConfigurationVersion resource.version_number (
str
) – The VersionNumber of the HostedConfigurationVersion 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 hosted_configuration_version_reference = appconfig.HostedConfigurationVersionReference( application_id="applicationId", configuration_profile_id="configurationProfileId", version_number="versionNumber" )
Attributes
- application_id
The ApplicationId of the HostedConfigurationVersion resource.
- configuration_profile_id
The ConfigurationProfileId of the HostedConfigurationVersion resource.
- version_number
The VersionNumber of the HostedConfigurationVersion resource.