interface IntegerRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupPropsMixin.IntegerRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupPropsMixin_IntegerRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupPropsMixin.IntegerRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupPropsMixin.IntegerRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupPropsMixin » 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.CfnDataflowEndpointGroupPropsMixin.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