interface OrganizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ComputeOptimizer.CfnAutomationRulePropsMixin.OrganizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscomputeoptimizer#CfnAutomationRulePropsMixin_OrganizationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.computeoptimizer.CfnAutomationRulePropsMixin.OrganizationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_computeoptimizer.CfnAutomationRulePropsMixin.OrganizationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_computeoptimizer » CfnAutomationRulePropsMixin » OrganizationConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_computeoptimizer as computeoptimizer } from '@aws-cdk/cfn-property-mixins';
const organizationConfigurationProperty: computeoptimizer.CfnAutomationRulePropsMixin.OrganizationConfigurationProperty = {
accountIds: ['accountIds'],
ruleApplyOrder: 'ruleApplyOrder',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | List of account IDs where the organization rule applies. |
| rule | string | When the rule should be applied relative to account rules. |
accountIds?
Type:
string[]
(optional)
List of account IDs where the organization rule applies.
ruleApplyOrder?
Type:
string
(optional)
When the rule should be applied relative to account rules.

.NET
Go
Java
Python
TypeScript