次の方法で共有


AwsCredsAuthenticationDetailsProperties type

AWS クラウドアカウントコネクタベースの認証情報、認証情報はアクセスキー ID と秘密鍵で構成されます。詳細については、「AWS アカウントでの IAM ユーザーの作成 (書き込みのみ)」を参照

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