Sitecore provides three layouts to create SPEAK applications. You can find these layouts in core database at this location /sitecore/client/Speak/Layouts/Layouts
NOTE: All examples and screenshots are taken from Sitecore 9.3 initial release
NOTE: All examples and screenshots are taken from Sitecore 9.3 initial release
1 2 | string awsSecretAccessKey = ConfigurationManager.AppSettings["awsSecretAccessKey"]; string awsAccessKey = ConfigurationManager.AppSettings["awsAccessKey"]; |
1 | var client = AWSClientFactory.CreateAmazonElasticLoadBalancingClient(awsAccessKey, awsSecretAccessKey, RegionEndpoint.USWest2);
|