AwsCredsAuthenticationDetailsProperties type

AWS cloud account connector based credentials, the credentials is composed of access key ID and secret key, for more details, refer to Creating an IAM User in Your AWS Account (write only)

type AwsCredsAuthenticationDetailsProperties =
  AuthenticationDetailsProperties & {
    accountId?: string
    authenticationType: "awsCreds"
    awsAccessKeyId: string
    awsSecretAccessKey: string
  }