Class CfnResource
A CloudFormation AWS::ApiGateway::Resource.
Inherited Members
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.AWS.APIGateway.dll
Syntax (csharp)
public class CfnResource : CfnResource, IConstruct, IDependable, IInspectable
  Syntax (vb)
Public Class CfnResource
    Inherits CfnResource
    Implements IConstruct, IDependable, IInspectable
  Remarks
The AWS::ApiGateway::Resource resource creates a resource in an API.
CloudformationResource: AWS::ApiGateway::Resource
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.APIGateway;
var cfnResource = new CfnResource(this, "MyCfnResource", new CfnResourceProps {
    ParentId = "parentId",
    PathPart = "pathPart",
    RestApiId = "restApiId"
});
  Synopsis
Constructors
| CfnResource(Construct, String, ICfnResourceProps) | Create a new   | 
    
| CfnResource(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference  | 
    
| CfnResource(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps  | 
    
Properties
| AttrResourceId | The ID for the resource.  | 
    
| CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class.  | 
    
| CfnProperties | |
| ParentId | The parent resource's identifier.  | 
    
| PathPart | The last path segment for this resource.  | 
    
| RestApiId | The string identifier of the associated RestApi.  | 
    
Methods
| Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes.  | 
    
| RenderProperties(IDictionary<String, Object>) | 
Constructors
CfnResource(Construct, String, ICfnResourceProps)
Create a new AWS::ApiGateway::Resource.
public CfnResource(Construct scope, string id, ICfnResourceProps props)
  Parameters
- scope Construct
 - scope in which this resource is defined.
 
- id System.String
 - scoped id of the resource.
 
- props ICfnResourceProps
 - resource properties.
 
CfnResource(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnResource(ByRefValue reference)
  Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
 The Javascript-owned object reference
CfnResource(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnResource(DeputyBase.DeputyProps props)
  Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
 The deputy props
Properties
AttrResourceId
The ID for the resource.
public virtual string AttrResourceId { get; }
  Property Value
System.String
Remarks
For example: abc123 .
CloudformationAttribute: ResourceId
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
  Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
  Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
ParentId
The parent resource's identifier.
public virtual string ParentId { get; set; }
  Property Value
System.String
Remarks
PathPart
The last path segment for this resource.
public virtual string PathPart { get; set; }
  Property Value
System.String
Remarks
RestApiId
The string identifier of the associated RestApi.
public virtual string RestApiId { get; set; }
  Property Value
System.String
Remarks
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
  Parameters
- inspector TreeInspector
 - tree inspector to collect and process attributes.
 
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
  Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
 
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>