interface CfnAccountCustomizationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.UXC.CfnAccountCustomizationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsuxc#CfnAccountCustomizationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.uxc.CfnAccountCustomizationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_uxc.CfnAccountCustomizationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_uxc » CfnAccountCustomizationMixinProps |
Properties for CfnAccountCustomizationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_uxc as uxc } from '@aws-cdk/cfn-property-mixins';
const cfnAccountCustomizationMixinProps: uxc.CfnAccountCustomizationMixinProps = {
accountColor: 'accountColor',
visibleRegions: ['visibleRegions'],
visibleServices: ['visibleServices'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The color theme assigned to the account for visual identification in the AWS Console. |
| visible | string[] | A list of AWS region identifiers visible to the account in the AWS Console. |
| visible | string[] | A list of AWS service identifiers visible to the account in the AWS Console. |
accountColor?
Type:
string
(optional)
The color theme assigned to the account for visual identification in the AWS Console.
visibleRegions?
Type:
string[]
(optional)
A list of AWS region identifiers visible to the account in the AWS Console.
visibleServices?
Type:
string[]
(optional)
A list of AWS service identifiers visible to the account in the AWS Console.

.NET
Go
Java
Python
TypeScript