CfnDocumentationPartMixinProps
- class aws_cdk.mixins_preview.aws_apigateway.mixins.CfnDocumentationPartMixinProps(*, location=None, properties=None, rest_api_id=None)
Bases:
objectProperties for CfnDocumentationPartPropsMixin.
- Parameters:
location (
Union[IResolvable,LocationProperty,Dict[str,Any],None]) – The location of the targeted API entity of the to-be-created documentation part.properties (
Optional[str]) – The new documentation content map of the targeted API entity. Enclosed key-value pairs are API-specific, but only OpenAPI-compliant key-value pairs can be exported and, hence, published.rest_api_id (
Optional[str]) – The string identifier of the associated RestApi.
- See:
- 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.mixins_preview.aws_apigateway import mixins as apigateway_mixins cfn_documentation_part_mixin_props = apigateway_mixins.CfnDocumentationPartMixinProps( location=apigateway_mixins.CfnDocumentationPartPropsMixin.LocationProperty( method="method", name="name", path="path", status_code="statusCode", type="type" ), properties="properties", rest_api_id="restApiId" )
Attributes
- location
The location of the targeted API entity of the to-be-created documentation part.
- properties
The new documentation content map of the targeted API entity.
Enclosed key-value pairs are API-specific, but only OpenAPI-compliant key-value pairs can be exported and, hence, published.
- rest_api_id
The string identifier of the associated RestApi.