interface SourceResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnIPAMPoolPropsMixin.SourceResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnIPAMPoolPropsMixin_SourceResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnIPAMPoolPropsMixin.SourceResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnIPAMPoolPropsMixin.SourceResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnIPAMPoolPropsMixin » SourceResourceProperty |
The resource used to provision CIDRs to a resource planning pool.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const sourceResourceProperty: ec2.CfnIPAMPoolPropsMixin.SourceResourceProperty = {
resourceId: 'resourceId',
resourceOwner: 'resourceOwner',
resourceRegion: 'resourceRegion',
resourceType: 'resourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The source resource ID. |
| resource | string | The source resource owner. |
| resource | string | The source resource Region. |
| resource | string | The source resource type. |
resourceId?
Type:
string
(optional)
The source resource ID.
resourceOwner?
Type:
string
(optional)
The source resource owner.
resourceRegion?
Type:
string
(optional)
The source resource Region.
resourceType?
Type:
string
(optional)
The source resource type.

.NET
Go
Java
Python
TypeScript