Parameter

class aws_cdk.aws_appconfig_alpha.Parameter(*args: Any, **kwargs)

Bases: object

(deprecated) Defines a parameter for an extension.

Stability:

deprecated

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_appconfig_alpha as appconfig_alpha

parameter = appconfig_alpha.Parameter.not_required("name", "value", "description")

Attributes

description

(deprecated) The description of the parameter.

Stability:

deprecated

is_required

(deprecated) A boolean that indicates if the parameter is required or optional.

Stability:

deprecated

name

(deprecated) The name of the parameter.

Stability:

deprecated

value

(deprecated) The value of the parameter.

Stability:

deprecated

Static Methods

classmethod not_required(name, value=None, description=None)

(deprecated) An optional parameter for an extension.

Parameters:
  • name (str) – The name of the parameter.

  • value (Optional[str]) – The value of the parameter.

  • description (Optional[str]) – A description for the parameter.

Stability:

deprecated

Return type:

Parameter

classmethod required(name, value, description=None)

(deprecated) A required parameter for an extension.

Parameters:
  • name (str) – The name of the parameter.

  • value (str) – The value of the parameter.

  • description (Optional[str]) – A description for the parameter.

Stability:

deprecated

Return type:

Parameter