interface OrganizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ComputeOptimizer.CfnAutomationRule.OrganizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscomputeoptimizer#CfnAutomationRule_OrganizationConfigurationProperty |
Java | software.amazon.awscdk.services.computeoptimizer.CfnAutomationRule.OrganizationConfigurationProperty |
Python | aws_cdk.aws_computeoptimizer.CfnAutomationRule.OrganizationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_computeoptimizer » CfnAutomationRule » 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-lib';
const organizationConfigurationProperty: computeoptimizer.CfnAutomationRule.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