interface IntegerRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupV2PropsMixin_IntegerRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupV2PropsMixin » 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/cfn-property-mixins';
const integerRangeProperty: groundstation.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty = {
maximum: 123,
minimum: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum? | number | A maximum value. |
| minimum? | number | A minimum value. |
maximum?
Type:
number
(optional)
A maximum value.
minimum?
Type:
number
(optional)
A minimum value.

.NET
Go
Java
Python
TypeScript