interface IEMapProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.FMS.CfnPolicy.IEMapProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfms#CfnPolicy_IEMapProperty |
Java | software.amazon.awscdk.services.fms.CfnPolicy.IEMapProperty |
Python | aws_cdk.aws_fms.CfnPolicy.IEMapProperty |
TypeScript | aws-cdk-lib » aws_fms » CfnPolicy » IEMapProperty |
Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to include in or exclude from the policy.
Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time.
This is used for the policy's IncludeMap
and ExcludeMap
.
You can specify account IDs, OUs, or a combination:
- Specify account IDs by setting the key to
ACCOUNT
. For example, the following is a valid map:{“ACCOUNT” : [“accountID1”, “accountID2”]}
. - Specify OUs by setting the key to
ORGUNIT
. For example, the following is a valid map:{“ORGUNIT” : [“ouid111”, “ouid112”]}
. - Specify accounts and OUs together in a single map, separated with a comma. For example, the following is a valid map:
{“ACCOUNT” : [“accountID1”, “accountID2”], “ORGUNIT” : [“ouid111”, “ouid112”]}
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fms-policy-iemap.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fms as fms } from 'aws-cdk-lib';
const iEMapProperty: fms.CfnPolicy.IEMapProperty = {
account: ['account'],
orgunit: ['orgunit'],
};
Properties
Name | Type | Description |
---|---|---|
account? | string[] | The account list for the map. |
orgunit? | string[] | The organizational unit list for the map. |
account?
Type:
string[]
(optional)
The account list for the map.
orgunit?
Type:
string[]
(optional)
The organizational unit list for the map.