interface IntegerRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.IntegerRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_IntegerRangeProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.IntegerRangeProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.IntegerRangeProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » IntegerRangeProperty |
An integer range that has a minimum and maximum value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as groundstation } from 'aws-cdk-lib';
const integerRangeProperty: groundstation.CfnDataflowEndpointGroupV2.IntegerRangeProperty = {
maximum: 123,
minimum: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum | number | A maximum value. |
| minimum | number | A minimum value. |
maximum
Type:
number
A maximum value.
minimum
Type:
number
A minimum value.

.NET
Go
Java
Python
TypeScript