You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »


REST API Credentials configuration guidelines can be found here.

Amazon S3 Connector's Credentials type must always be specified as "s3".

Properties specific to the Amazon S3 Connector's Credentials are described below.


Amazon S3 Credentials Properties


FieldRequiredDefaultMultipleNotesExample
propertiesYes-NoConfiguration object
useCredentialsProviderChainYes-NoIf set to true, it uses the the AWS Credentials Provider Chain. If set to true, accessKey and a secretKey must be specified.true/false
accessKeyYes-NoThe key used to access the Amazon Web Services."AKIAQYO33D7WIS4M55NN"
secretKeyYes-NoThe secret key for the specified access key."mySecretKey"

Create example


POST /aspire/_api/credentials
{
	"type": "s3",
	"description": "S3 Credentials Test",
	"properties": {
		"useCredentialsProviderChain": false,
		"accessKey": "AKIAQYO33D7WIS4M55NN",
		"secretKey": "mySecretKey"
	}
}



  • No labels