DocumentationPartReference

class aws_cdk.aws_apigateway.DocumentationPartReference(*, documentation_part_id, rest_api_id)

Bases: object

A reference to a DocumentationPart resource.

Parameters:
  • documentation_part_id (str) – The DocumentationPartId of the DocumentationPart resource.

  • rest_api_id (str) – The RestApiId of the DocumentationPart 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_apigateway as apigateway

documentation_part_reference = apigateway.DocumentationPartReference(
    documentation_part_id="documentationPartId",
    rest_api_id="restApiId"
)

Attributes

documentation_part_id

The DocumentationPartId of the DocumentationPart resource.

rest_api_id

The RestApiId of the DocumentationPart resource.