The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Paws::Quicksight::CreateAccountCustomization - Arguments for method CreateAccountCustomization on Paws::Quicksight

DESCRIPTION

This class represents the parameters used for calling the method CreateAccountCustomization on the Amazon QuickSight service. Use the attributes of this class as arguments to method CreateAccountCustomization.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateAccountCustomization.

SYNOPSIS

    my $quicksight = Paws->service('Quicksight');
    my $CreateAccountCustomizationResponse =
      $quicksight->CreateAccountCustomization(
      AccountCustomization => {
        DefaultTheme => 'MyArn',    # OPTIONAL
      },
      AwsAccountId => 'MyAwsAccountId',
      Namespace    => 'MyNamespace',      # OPTIONAL
      Tags         => [
        {
          Key   => 'MyTagKey',      # min: 1, max: 128
          Value => 'MyTagValue',    # min: 1, max: 256

        },
        ...
      ],    # OPTIONAL
      );

    # Results:
    my $AccountCustomization =
      $CreateAccountCustomizationResponse->AccountCustomization;
    my $Arn          = $CreateAccountCustomizationResponse->Arn;
    my $AwsAccountId = $CreateAccountCustomizationResponse->AwsAccountId;
    my $Namespace    = $CreateAccountCustomizationResponse->Namespace;
    my $RequestId    = $CreateAccountCustomizationResponse->RequestId;
    my $Status       = $CreateAccountCustomizationResponse->Status;

    # Returns a L<Paws::Quicksight::CreateAccountCustomizationResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/quicksight/CreateAccountCustomization

ATTRIBUTES

REQUIRED AccountCustomization => Paws::Quicksight::AccountCustomization

The QuickSight customizations you're adding in the current AWS Region. You can add these to an AWS account and a QuickSight namespace.

For example, you can add a default theme by setting AccountCustomization to the midnight theme: "AccountCustomization": { "DefaultTheme": "arn:aws:quicksight::aws:theme/MIDNIGHT" }. Or, you can add a custom theme by specifying "AccountCustomization": { "DefaultTheme": "arn:aws:quicksight:us-west-2:111122223333:theme/bdb844d0-0fe9-4d9d-b520-0fe602d93639" }.

REQUIRED AwsAccountId => Str

The ID for the AWS account that you want to customize QuickSight for.

Namespace => Str

The QuickSight namespace that you want to add customizations to.

Tags => ArrayRef[Paws::Quicksight::Tag]

A list of the tags that you want to attach to this resource.

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateAccountCustomization in Paws::Quicksight

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues