Skip to content

Update Brand

quicksight_update_brand R Documentation

Updates a brand

Description

Updates a brand.

Usage

quicksight_update_brand(AwsAccountId, BrandId, BrandDefinition)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that owns the brand.

BrandId

[required] The ID of the Amazon QuickSight brand.

BrandDefinition

The definition of the brand.

Value

A list with the following syntax:

list(
  RequestId = "string",
  BrandDetail = list(
    BrandId = "string",
    Arn = "string",
    BrandStatus = "CREATE_IN_PROGRESS"|"CREATE_SUCCEEDED"|"CREATE_FAILED"|"DELETE_IN_PROGRESS"|"DELETE_FAILED",
    CreatedTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdatedTime = as.POSIXct(
      "2015-01-01"
    ),
    VersionId = "string",
    VersionStatus = "CREATE_IN_PROGRESS"|"CREATE_SUCCEEDED"|"CREATE_FAILED",
    Errors = list(
      "string"
    ),
    Logo = list(
      AltText = "string",
      LogoSet = list(
        Primary = list(
          Original = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            ),
            GeneratedImageUrl = "string"
          ),
          Height64 = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            ),
            GeneratedImageUrl = "string"
          ),
          Height32 = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            ),
            GeneratedImageUrl = "string"
          )
        ),
        Favicon = list(
          Original = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            ),
            GeneratedImageUrl = "string"
          ),
          Height64 = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            ),
            GeneratedImageUrl = "string"
          ),
          Height32 = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            ),
            GeneratedImageUrl = "string"
          )
        )
      )
    )
  ),
  BrandDefinition = list(
    BrandName = "string",
    Description = "string",
    ApplicationTheme = list(
      BrandColorPalette = list(
        Primary = list(
          Foreground = "string",
          Background = "string"
        ),
        Secondary = list(
          Foreground = "string",
          Background = "string"
        ),
        Accent = list(
          Foreground = "string",
          Background = "string"
        ),
        Measure = list(
          Foreground = "string",
          Background = "string"
        ),
        Dimension = list(
          Foreground = "string",
          Background = "string"
        ),
        Success = list(
          Foreground = "string",
          Background = "string"
        ),
        Info = list(
          Foreground = "string",
          Background = "string"
        ),
        Warning = list(
          Foreground = "string",
          Background = "string"
        ),
        Danger = list(
          Foreground = "string",
          Background = "string"
        )
      ),
      BrandElementStyle = list(
        NavbarStyle = list(
          GlobalNavbar = list(
            Foreground = "string",
            Background = "string"
          ),
          ContextualNavbar = list(
            Foreground = "string",
            Background = "string"
          )
        )
      )
    ),
    LogoConfiguration = list(
      AltText = "string",
      LogoSet = list(
        Primary = list(
          Original = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            )
          )
        ),
        Favicon = list(
          Original = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            )
          )
        )
      )
    )
  )
)

Request syntax

svc$update_brand(
  AwsAccountId = "string",
  BrandId = "string",
  BrandDefinition = list(
    BrandName = "string",
    Description = "string",
    ApplicationTheme = list(
      BrandColorPalette = list(
        Primary = list(
          Foreground = "string",
          Background = "string"
        ),
        Secondary = list(
          Foreground = "string",
          Background = "string"
        ),
        Accent = list(
          Foreground = "string",
          Background = "string"
        ),
        Measure = list(
          Foreground = "string",
          Background = "string"
        ),
        Dimension = list(
          Foreground = "string",
          Background = "string"
        ),
        Success = list(
          Foreground = "string",
          Background = "string"
        ),
        Info = list(
          Foreground = "string",
          Background = "string"
        ),
        Warning = list(
          Foreground = "string",
          Background = "string"
        ),
        Danger = list(
          Foreground = "string",
          Background = "string"
        )
      ),
      BrandElementStyle = list(
        NavbarStyle = list(
          GlobalNavbar = list(
            Foreground = "string",
            Background = "string"
          ),
          ContextualNavbar = list(
            Foreground = "string",
            Background = "string"
          )
        )
      )
    ),
    LogoConfiguration = list(
      AltText = "string",
      LogoSet = list(
        Primary = list(
          Original = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            )
          )
        ),
        Favicon = list(
          Original = list(
            Source = list(
              PublicUrl = "string",
              S3Uri = "string"
            )
          )
        )
      )
    )
  )
)