【Salesforce】データローダバッチ(インポート編)

【Salesforce】データローダバッチ(インポート編)

データローダとは データローダは、データを一括でインポートまたはエクスポートするためのクライアントアプリケーションです。Salesforce レ...

<span title='2022-05-30 19:05:22 +0900 +0900'>2022年5月30日</span>&nbsp;·&nbsp;4 分&nbsp;·&nbsp;1573 文字&nbsp;·&nbsp;Seiri
【Salesforce】LWCでのPath共通コンポーネント

【Salesforce】LWCでのPath共通コンポーネント

目的 LWC での Path 共通コンポーネントを共有します。 実装例 path path.html <template> <div class="slds-path"> <div class="slds-grid slds-path__track"> <div class="slds-grid slds-path__scroller-container"> <div class="slds-path__scroller"> <div class="slds-path__scroller_inner"> <ul class="slds-path__nav" role="listbox" aria-orientation="horizontal" > <template for:each="{pathItemList}" for:item="pathItem" for:index="index" > {getIndex} <template if:true="{pathIndexGeCurrentIndex}"> <li key="{pathItem}" if:true="{pathIndexEqCurrentIndex}" class="slds-path__item slds-is-current slds-is-active" role="presentation" > <a aria-selected="true" class="slds-path__link" href="javasctipt:void();" role="option" tabindex="-1" > <span class="slds-path__stage">...

<span title='2022-05-16 14:11:39 +0900 +0900'>2022年5月16日</span>&nbsp;·&nbsp;1 分&nbsp;·&nbsp;426 文字&nbsp;·&nbsp;Seiri
【Salesforce】LWC CSV出力方法

【Salesforce】LWC CSV出力方法

LWC で CSV 出力方法説明 LWC で CSV ファイルを出力する考え方は主に下記の流れとなります。 1.LWC のコンポーネントにデータを持たせます。 2.CSV を作成するため、各行の...

<span title='2022-03-29 16:38:42 +0900 +0900'>2022年3月29日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;688 文字&nbsp;·&nbsp;Seiri
Amplify + Reactでアプリケーション作成

Amplify + Reactでアプリケーション作成

準備 下記コマンドを順番に実行し、Amplify-React での環境を構築する 1.AmplifyCLI をインストール npm install -g @aws-amplify/cli 2.Amplify を設定する amplify configure Specify the AWS Region ? region: # Your preferred region Specify the...

<span title='2022-01-24 18:11:28 +0900 +0900'>2022年1月24日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;821 文字&nbsp;·&nbsp;Seiri
AmplifyでS3と連携する方法

AmplifyでS3と連携する方法

準備 1.amplify add storageコマンドで、S3 を追加する amplify add storage ? Please select from one of the below mentioned services (Use arrow keys) ❯ Content (Images, audio, video, etc.) NoSQL Database 2.amplify pushコマンドで作成した S3 を AWS にデプロイ...

<span title='2022-01-21 12:15:55 +0900 +0900'>2022年1月21日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;533 文字&nbsp;·&nbsp;Seiri
AmplifyでGraphQLを呼出す方法

AmplifyでGraphQLを呼出す方法

準備 1.amplify add apiコマンドで、GraphQL API を追加する amplify add api ? Please select from one of the below mentioned services: > GraphQL ? Here is the GraphQL API that we will create. Select a setting to edit or continue: > Continue ? Choose a schema template: > Single object with fields...

<span title='2022-01-20 19:58:17 +0900 +0900'>2022年1月20日</span>&nbsp;·&nbsp;1 分&nbsp;·&nbsp;433 文字&nbsp;·&nbsp;Seiri
AmplifyでAPI Gatewayを呼出す方法

AmplifyでAPI Gatewayを呼出す方法

準備 1.amplify add apiコマンドで、Rest API を追加する amplify add api ? Please select from one of the below mentioned services GraphQL ❯ REST 2.amplify pushコマンドで作成した Rest API を AWS にデプロイし、 AWS のAPI G...

<span title='2022-01-20 19:05:44 +0900 +0900'>2022年1月20日</span>&nbsp;·&nbsp;1 分&nbsp;·&nbsp;497 文字&nbsp;·&nbsp;Seiri
AmplifyでのAuthUtilを作成する

AmplifyでのAuthUtilを作成する

前提 1.amplify add authコマンドで認証サービスを作成する amplify add auth ? Do you want to use the default authentication and security configuration? Default configuration ? How do you want users to be able to sign in? Username ? Do you want to configure advanced settings? No, I am done. 2.amplify pus...

<span title='2022-01-20 16:31:14 +0900 +0900'>2022年1月20日</span>&nbsp;·&nbsp;3 分&nbsp;·&nbsp;1082 文字&nbsp;·&nbsp;Seiri
Pythonで日本の新型コロナ患者情報取得

Pythonで日本の新型コロナ患者情報取得

環境 Win10 python 3.8.10 ・requests==2.25.1 ・pandas==1.3.1 実装 import requests as rq import pandas as pd url = 'https://covid19-japan-web-api.vercel.app/api/v1/positives?prefecture={0}' prefectures = ['北海道','...

<span title='2022-01-18 19:21:37 +0900 +0900'>2022年1月18日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;758 文字&nbsp;·&nbsp;Seiri
PythonでのAWS Lambda環境変数の取得

PythonでのAWS Lambda環境変数の取得

準備 環境変数の設定 環境変数は、関数の未公開バージョンで定義します。バージョンを公開するとき、他のバージョン固有の設定とともに、そのバージョン...

<span title='2021-12-27 17:53:32 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;634 文字&nbsp;·&nbsp;Seiri
PythonでのAWS Lambda共通DynamoDB操作Util

PythonでのAWS Lambda共通DynamoDB操作Util

python での DBUtil の作成方法 以下に、Python で AWS Lambda 内で共通的に使用される DynamoDB 操作のためのユーティリティクラスの例を示します。このクラスを使用すると、...

<span title='2021-12-27 17:33:59 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;3 分&nbsp;·&nbsp;1418 文字&nbsp;·&nbsp;Seiri

AWS Lambda クォータ

コンピューティングとストレージ Lambda では、関数の実行と保存に使用できるコンピューティングおよびストレージリソースの量に対してクォータを設定します...

<span title='2021-12-27 16:29:51 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;3 分&nbsp;·&nbsp;1307 文字&nbsp;·&nbsp;Seiri
【AWS】LambdaでS3ファイルをtmpディレクトリに保存

【AWS】LambdaでS3ファイルをtmpディレクトリに保存

tmp ディレクトリ説明 各実行環境は、/tmp ディレクトリ内の 512 MB~ 10240 MB のディスク領域を提供します。ディレクトリのコンテンツは、実行環境が停止された...

<span title='2021-12-27 16:14:46 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;870 文字&nbsp;·&nbsp;Seiri
PythonでのAWS Lambda共通ユーザ操作Util

PythonでのAWS Lambda共通ユーザ操作Util

目的 boto3 ラブライブを利用して、AWS Coginit での操作 Utitl 作成方法を共有します。 実装 # -*- coding: utf-8 -*- import secrets import string import boto3 USERPOOL_ID = 'USERPOOL_ID' client = boto3.client('cognito-idp') def show_user_list(): """...

<span title='2021-12-27 12:38:54 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;3 分&nbsp;·&nbsp;1367 文字&nbsp;·&nbsp;Seiri
PythonでStepFunctionを実行する方法(boto3)

PythonでStepFunctionを実行する方法(boto3)

実装方法 Python の boto3 ライブラリを使用して AWS Step Functions を実行するには、以下の手順に従います。 boto3 モジュールをインポートします。 import boto3 Step Functions クライアントを作成しま...

<span title='2021-12-27 12:18:23 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;556 文字&nbsp;·&nbsp;Seiri
PythonでのAWS Lambdaキュー送信

PythonでのAWS Lambdaキュー送信

実装方法 Python で AWS Lambda からキューにメッセージを送信するには、以下の手順に従います。 boto3モジュールをインポートします。 import boto3 SQS (Simple Queue Service) クライアント...

<span title='2021-12-27 12:15:01 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;692 文字&nbsp;·&nbsp;Seiri

PythonでのAWS Lambda共通ログ出力Util

実装方法 以下に、Python で AWS Lambda 内で共通的に使用されるログ出力のためのユーティリティクラスの例を示します。このクラスを使用すると、Lamb...

<span title='2021-12-27 12:06:59 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;1001 文字&nbsp;·&nbsp;Seiri
PythonでのAWS Lambda 共通認証Util

PythonでのAWS Lambda 共通認証Util

実装方法 Cognito User Pool を使用するためのユーティリティクラスの例を示します。このクラスは、AWS SDK の boto3 を使用して Cognito User Pool とのインタラクションを簡素化しま...

<span title='2021-12-27 11:54:25 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;508 文字&nbsp;·&nbsp;Seiri
PythonでのAWS Lambda共通レスポンスUtil

PythonでのAWS Lambda共通レスポンスUtil

共通レスポンス Util 以下に、Python で AWS Lambda 内で共通的に使用されるレスポンスのためのユーティリティクラスの例を示します。このクラスを使用すると...

<span title='2021-12-27 11:22:36 +0900 +0900'>2021年12月27日</span>&nbsp;·&nbsp;3 分&nbsp;·&nbsp;1152 文字&nbsp;·&nbsp;Seiri
JavaScript日付フォーマット

JavaScript日付フォーマット

JavaScript日付フォーマット方法 JavaScript 日付フォーマット方法を紹介します。 方法 1 JavaScript での日付フォーマットは正規表現と Date 型のgetFullYe...

<span title='2021-12-24 15:08:50 +0900 +0900'>2021年12月24日</span>&nbsp;·&nbsp;2 分&nbsp;·&nbsp;968 文字&nbsp;·&nbsp;Seiri