|
48 | 48 | # create-cluster options help text |
49 | 49 |
|
50 | 50 | CREATE_CLUSTER_DESCRIPTION = ( |
51 | | - '<p>Creates an Amazon EMR cluster with the specified configurations.</p>' |
52 | | - '<p>Quick start:</p>' |
53 | | - '<p><code>aws emr create-cluster --release-label <release-label>' |
54 | | - ' --instance-type <instance-type> --instance-count <instance-count></code></p>' |
55 | | - '<p>Values for the following can be set in the AWS CLI' |
56 | | - ' config file using the <code>aws configure set</code> command: <code>--service-role, --log-uri,' |
57 | | - ' and InstanceProfile and KeyName arguments under --ec2-attributes</code>.</p>') |
| 51 | + 'Creates an Amazon EMR cluster with the specified configurations. ' |
| 52 | + 'Quick start: ' |
| 53 | + 'aws emr create-cluster --release-label <release-label> ' |
| 54 | + '--instance-type <instance-type> --instance-count <instance-count>' |
| 55 | + 'Values for the following can be set in the AWS CLI. ' |
| 56 | + 'config file using the <code>aws configure set</code> command: <code>--service-role, --log-uri, ' |
| 57 | + 'and InstanceProfile and KeyName arguments under --ec2-attributes.') |
58 | 58 |
|
59 | 59 | DESCRIBE_CLUSTER_DESCRIPTION = ( |
60 | | - '<p>Provides cluster-level details including status, hardware' |
61 | | - ' and software configuration, VPC settings, bootstrap' |
62 | | - ' actions, instance groups and so on.</p>' |
63 | | - '<p>Permissions needed for describe-cluster include:' |
64 | | - '<ul><li><code>elasticmapreduce:ListBootstrapActions</code></li>' |
65 | | - '<li><code>elasticmapreduce:ListInstanceFleets</code></li>' |
66 | | - '<li><code>elasticmapreduce:DescribeCluster</code></li>' |
67 | | - '<li><code>elasticmapreduce:ListInstanceGroups</code></li></ul>' |
68 | | - 'For information about the cluster' |
69 | | - ' steps, see <code>list-steps</code>.</p>') |
| 60 | + 'Provides cluster-level details including status, hardware ' |
| 61 | + 'and software configuration, VPC settings, bootstrap ' |
| 62 | + 'actions, instance groups and so on. ' |
| 63 | + 'Permissions needed for describe-cluster include ' |
| 64 | + 'elasticmapreduce:ListBootstrapActions, ' |
| 65 | + 'elasticmapreduce:ListInstanceFleets, ' |
| 66 | + 'elasticmapreduce:DescribeCluster, ' |
| 67 | + 'and elasticmapreduce:ListInstanceGroups.') |
70 | 68 |
|
71 | 69 | CLUSTER_NAME = ( |
72 | 70 | '<p>The name of the cluster. If not provided, the default is "Development Cluster".</p>') |
|
0 commit comments