interface IPSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GuardDuty.IPSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsguardduty#IPSetReference |
Java | software.amazon.awscdk.interfaces.guardduty.IPSetReference |
Python | aws_cdk.interfaces.aws_guardduty.IPSetReference |
TypeScript | aws-cdk-lib » interfaces » aws_guardduty » IPSetReference |
A reference to a IPSet resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_guardduty as interfaces_aws_guardduty } from 'aws-cdk-lib/interfaces';
const iPSetReference: interfaces_aws_guardduty.IPSetReference = {
detectorId: 'detectorId',
ipSetId: 'ipSetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| detector | string | The DetectorId of the IPSet resource. |
| ip | string | The Id of the IPSet resource. |
detectorId
Type:
string
The DetectorId of the IPSet resource.
ipSetId
Type:
string
The Id of the IPSet resource.

.NET
Go
Java
Python
TypeScript