interface FleetProxyRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeBuild.CfnFleetPropsMixin.FleetProxyRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodebuild#CfnFleetPropsMixin_FleetProxyRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.codebuild.CfnFleetPropsMixin.FleetProxyRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_codebuild.CfnFleetPropsMixin.FleetProxyRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codebuild » CfnFleetPropsMixin » FleetProxyRuleProperty |
Information about the proxy rule for your reserved capacity instances.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codebuild as codebuild } from '@aws-cdk/cfn-property-mixins';
const fleetProxyRuleProperty: codebuild.CfnFleetPropsMixin.FleetProxyRuleProperty = {
effect: 'effect',
entities: ['entities'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| effect? | string | The behavior of the proxy rule. |
| entities? | string[] | The destination of the proxy rule. |
| type? | string | The type of proxy rule. |
effect?
Type:
string
(optional)
The behavior of the proxy rule.
entities?
Type:
string[]
(optional)
The destination of the proxy rule.
type?
Type:
string
(optional)
The type of proxy rule.

.NET
Go
Java
Python
TypeScript