interface SourceResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnIPAMPoolPropsMixin.SourceResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnIPAMPoolPropsMixin_SourceResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnIPAMPoolPropsMixin.SourceResourceProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMPoolPropsMixin.SourceResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const sourceResourceProperty: ec2_mixins.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