CfnResourceMixinProps

class aws_cdk.cfn_property_mixins.aws_apigateway.CfnResourceMixinProps(*, parent_id=None, path_part=None, rest_api_id=None)

Bases: object

Properties for CfnResourcePropsMixin.

Parameters:
  • parent_id (Union[str, IResourceRef, None]) – The parent resource’s identifier.

  • path_part (Optional[str]) – The last path segment for this resource.

  • rest_api_id (Union[str, IRestApiRef, None]) – The string identifier of the associated RestApi.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html

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.cfn_property_mixins import aws_apigateway as apigateway

cfn_resource_mixin_props = apigateway.CfnResourceMixinProps(
    parent_id="parentId",
    path_part="pathPart",
    rest_api_id="restApiId"
)

Attributes

parent_id

The parent resource’s identifier.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid

path_part

The last path segment for this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart

rest_api_id

The string identifier of the associated RestApi.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid