This is a list of controls that can be placed into an IAM policy document. All content comes from AWS documentation.
Something wrong? Try looking here.
Table of Contents generated with DocToc
| import React, {useState, useEffect} from 'react'; | |
| let Web3 = require('web3'); | |
| function Index() { | |
| const [web3, setWeb3] = useState(null) | |
| const [address, setAddress] = useState(null) | |
| const [contract, setContract] = useState(null) | |
| const [totalSupply, setTotalSupply] = useState(0) |
| version: "3.8" | |
| services: | |
| database: | |
| image: mysql:latest | |
| volumes: | |
| - db-data:/var/lib/mysql/data | |
| command: --default-authentication-plugin=mysql_native_password # run this command in the container | |
| networks: | |
| - database-api | |
| restart: always # the container must be always on |
| import React from "react" | |
| import { Linking } from "react-native" | |
| import { cleanup, fireEvent } from "react-native-testing-library" | |
| import { renderWithTheme } from "testHelpers/componentWrappers" | |
| import ExternalLink from "./" | |
| const externalLinkTestId = "external-link" |
| /** | |
| * Hypertext Transfer Protocol (HTTP) response status codes. | |
| * | |
| * @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes} | |
| */ | |
| export enum HttpStatusCode { | |
| /** | |
| * The server has received the request headers and the client should proceed to send the request body | |
| * (in the case of a request for which a body needs to be sent; for example, a POST request). |
relates to moby/moby#32507, moby/buildkit#442
Doing some silly experimenting with RUN --mount:
# syntax=docker/dockerfile:1
FROM alpine AS stage1| a4b.amazonaws.com | |
| access-analyzer.amazonaws.com | |
| account.amazonaws.com | |
| acm-pca.amazonaws.com | |
| acm.amazonaws.com | |
| airflow-env.amazonaws.com | |
| airflow.amazonaws.com | |
| alexa-appkit.amazon.com | |
| alexa-connectedhome.amazon.com | |
| amazonmq.amazonaws.com |
| package enum_example | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| ) | |
| // TaskState represents the state of task, moving through Created, Running then Finished or Errorred | |
| type TaskState int |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "reflect" | |
| ) | |
| type Something interface{} |
| // check version | |
| node -v || node --version | |
| // list locally installed versions of node | |
| nvm ls | |
| // list remove available versions of node | |
| nvm ls-remote | |
| // install specific version of node |