interface CfnAccountCustomizationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.UXC.CfnAccountCustomizationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsuxc#CfnAccountCustomizationProps |
Java | software.amazon.awscdk.services.uxc.CfnAccountCustomizationProps |
Python | aws_cdk.aws_uxc.CfnAccountCustomizationProps |
TypeScript | aws-cdk-lib » aws_uxc » CfnAccountCustomizationProps |
Properties for defining a CfnAccountCustomization.
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-lib';
const cfnAccountCustomizationProps: uxc.CfnAccountCustomizationProps = {
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